Update web-platform-tests to revision be5419e845d39089ba6dc338c1bd0fa279108317

This commit is contained in:
Josh Matthews 2018-01-04 13:44:24 -05:00
parent aa199307c8
commit 2b6f573eb5
3440 changed files with 109438 additions and 41750 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>