mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 18:47:15 +02:00
A few are skipped for now: - A few ref tests fail - Crash tests are not supported by our runner and time out - top-level-is-scope.html crashes and needs further investigation
28 lines
636 B
HTML
28 lines
636 B
HTML
<!DOCTYPE html>
|
|
<title>Implicit nesting</title>
|
|
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
|
|
<link rel="help" href="https://drafts.csswg.org/css-nesting-1/">
|
|
<style>
|
|
.test {
|
|
background-color: green;
|
|
width: 30px;
|
|
height: 30px;
|
|
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>
|
|
<div class="test"></div>
|
|
<div class="test"></div>
|
|
<div class="test"></div>
|
|
<div class="test"></div>
|
|
<div class="test"></div>
|
|
<div class="test"></div>
|
|
</body>
|