Update web-platform-tests to revision 9ca57e052ba1b19fa3dd46c6aa656e8d529469a8

This commit is contained in:
WPT Sync Bot 2020-09-12 08:20:19 +00:00
parent 68cb8f3d59
commit 75d6484415
1377 changed files with 31062 additions and 16983 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>HTML LI element: explicit scope</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<style>
#a::before { content: "1"; }
#b::before { content: "2"; }
#c::before { content: "2.1"; }
#d::before { content: "2.2"; }
</style>
</head>
<body>
<ol>
<li value="1" id="a"></li>
<li value="2" id="b"></li>
<ol><li value="1" id="c"></li></ol>
<li value="2" id="d"></li>
</ol>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>HTML LI element: explicit scope</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<link rel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element">
<link rel="help" href="https://drafts.csswg.org/css-lists/#list-item-counter">
<link rel="match" href="counter-list-item-2-ref.html">
<style>
li::before { content: counters(list-item,'.'); }
</style>
</head>
<body>
<ol>
<li></li>
<li></li>
<ol><li></li></ol>
<li></li>
</ol>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>HTML LI element: explicit scope</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<style>
#a::before { content: "1"; }
#b::before { content: "2"; }
#c::before { content: "2.1"; }
#d::before { content: "3"; }
</style>
</head>
<body>
<ol>
<li value="1" id="a"></li>
<li value="2" id="b"></li>
<ol><li value="1" id="c"></li></ol>
<li value="3" id="d"></li>
</ol>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>HTML LI element: explicit scope</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<link rel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element">
<link rel="help" href="https://drafts.csswg.org/css-lists/#list-item-counter">
<link rel="match" href="counter-list-item-3-ref.html">
<style>
li::before { content: counters(list-item,'.'); }
</style>
</head>
<body>
<ol>
<li></li>
<li></li>
<div><ol><li></li></ol></div>
<li></li>
</ol>
</body>
</html>