mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317
This commit is contained in:
parent
aa199307c8
commit
2b6f573eb5
3440 changed files with 109438 additions and 41750 deletions
|
@ -0,0 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test Reference</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<p>You should see the number 7 below.</p>
|
||||
<div>7</div>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: counter-increment on child of display:contents</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists/#counters-without-boxes">
|
||||
<link rel="match" href="counter-7-ref.html">
|
||||
<style>
|
||||
.inc { counter-increment: x }
|
||||
.reset-6 { counter-reset: x 6 }
|
||||
.contents { display: contents }
|
||||
.result::before { content: counter(x) }
|
||||
</style>
|
||||
<p>You should see the number 7 below.</p>
|
||||
<div>
|
||||
<span class="reset-6"></span>
|
||||
<span class="contents">
|
||||
<span class="inc"></span>
|
||||
</span>
|
||||
<span class="result"></span>
|
||||
</div>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: counter-reset and counter-increment on display:contents</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists/#counters-without-boxes">
|
||||
<link rel="match" href="counter-7-ref.html">
|
||||
<style>
|
||||
.inc { counter-increment: x }
|
||||
.reset-6 { counter-reset: x 6 }
|
||||
.reset-666 { counter-reset: x 666 }
|
||||
.contents { display: contents }
|
||||
.result::before { content: counter(x) }
|
||||
</style>
|
||||
<p>You should see the number 7 below.</p>
|
||||
<div>
|
||||
<span class="reset-6"></span>
|
||||
<span class="contents reset-666 inc"></span>
|
||||
<span class="inc result"></span>
|
||||
</div>
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: counter-reset and counter-increment on display:none</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists/#counters-without-boxes">
|
||||
<link rel="match" href="counter-7-ref.html">
|
||||
<style>
|
||||
.inc { counter-increment: x }
|
||||
.reset-6 { counter-reset: x 6 }
|
||||
.reset-666 { counter-reset: x 666 }
|
||||
.none { display: none }
|
||||
.result::before { content: counter(x) }
|
||||
</style>
|
||||
<p>You should see the number 7 below.</p>
|
||||
<div>
|
||||
<span class="reset-6"></span>
|
||||
<span class="none reset-666 inc"></span>
|
||||
<span class="inc result"></span>
|
||||
</div>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Lists: counter-reset on child of display:contents</title>
|
||||
<link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists/#counters-without-boxes">
|
||||
<link rel="match" href="counter-7-ref.html">
|
||||
<style>
|
||||
.inc { counter-increment: x }
|
||||
.reset-6 { counter-reset: x 6 }
|
||||
.reset-666 { counter-reset: x 6 }
|
||||
.contents { display: contents }
|
||||
.result::before { content: counter(x) }
|
||||
</style>
|
||||
<p>You should see the number 7 below.</p>
|
||||
<div>
|
||||
<span class="reset-6"></span>
|
||||
<span class="contents">
|
||||
<span class="reset-666"></span>
|
||||
</span>
|
||||
<span class="inc result"></span>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue