fune/testing/web-platform/tests/css/css-nesting/nest-containing-forgiving-ref.html
Matthieu Dubet 53f60ad052 Bug 1848174 [wpt PR 41409] - WebKit export of https://bugs.webkit.org/show_bug.cgi?id=258688, a=testonly
Automatic update from web-platform-tests
WebKit export of https://bugs.webkit.org/show_bug.cgi?id=258688 (#41409)

--

wpt-commits: 31d321811dde846b439afb62ae1fc7d5a3654b0b
wpt-pr: 41409
2023-08-25 09:13:15 +00:00

19 lines
349 B
HTML

<!DOCTYPE html>
<title>Nest-containing in forgiving parsing</title>
<style>
.test {
background-color: green;
width: 100px;
height: 100px;
display: grid;
}
body * + * {
margin-top: 8px;
}
</style>
<body>
<p>Tests pass if <strong>block is green</strong></p>
<div class="test"></div>
<div class="test"></div>
</body>