Tests: Import a couple of CSS nesting tests from WPT

This is partly to check that importing ref tests works, and that I
didn't break the text-test import.
This commit is contained in:
Sam Atkins 2024-11-05 16:27:08 +00:00 committed by Tim Ledbetter
commit f5d67cefc1
Notes: github-actions[bot] 2024-11-05 17:59:20 +00:00
4 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,30 @@
<!DOCTYPE html>
<title>Basic nesting</title>
<link rel="author" title="Adam Argyle" href="mailto:argyle@google.com">
<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>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
</body>