forked from mirrors/gecko-dev
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
19 lines
349 B
HTML
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>
|