fune/testing/web-platform/tests/css/css-overflow/overflow-body-propagation-008-ref.html
Scott Violet a9bcc6139f Bug 1669229 [wpt PR 25985] - blink: update reference expectations for overflow-clip test, a=testonly
Automatic update from web-platform-tests
blink: update reference expectations for overflow-clip test

As the test html has a border-right-width, so should the
reference.

BUG=1134184
TEST=test only change

Change-Id: I7dc96193feae66b743160af33c572a24bd1c45e9
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2447090
Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org>
Commit-Queue: Scott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#814454}

--

wpt-commits: 77793232410c19455a68eabf74082389d90ff0fb
wpt-pr: 25985
2020-10-09 12:43:12 +00:00

29 lines
649 B
HTML

<!doctype html>
<html><head>
<meta charset="utf-8">
<title>CSS Reference: overflow-y:clip propagated from BODY</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1635473">
<style>
html { overflow: auto hidden; }
body {
width: 30px;
height: 30px;
padding: 10px;
margin-left: 100px;
margin-top: 100px;
}
div {
position: relative;
top: -20px;
left: -40px;
background: blue;
height: 10000px;
width: 10000px;
border-right-width: 20px;
border-right-style: solid;
border-right-color: red;
}
</style></head>
<body><div></div></body>
</html>