mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 936827a6527f1c53051d3bc5bc79304c88c0737f
This commit is contained in:
parent
c585f4fff5
commit
02a68a38f0
338 changed files with 14862 additions and 2933 deletions
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: inline flow-root list-item with ::marker</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { border: 1px solid; display: list-item; }
|
||||
li::marker { content: counters(list-item, ".") " "; }
|
||||
|
||||
.wrap { width: 22ch; }
|
||||
.m { width: -webkit-min-content; width: min-content; }
|
||||
ib { display:inline-block; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li class=m>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<ib><li class=m>B</li></ib>
|
||||
<ib><li class=m>C</li></ib>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<ib><li>A A A A A A A A A A A A A A A A A A A A </li></ib>
|
||||
<ib><li class=m>B</li></ib>
|
||||
<ib><li class=m>C</li></ib>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li class=m>b</li>
|
||||
</ol></li>
|
||||
<li class=m>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li class=m>b</li>
|
||||
</ol></li>
|
||||
<li class=m>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,63 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: inline flow-root list-item with ::marker</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-pseudo">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-display/#propdef-display">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1105868">
|
||||
<link rel="match" href="inline-block-list-marker-ref.html">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { display: inline flow-root list-item; border: 1px solid; }
|
||||
li::marker { content: counters(list-item, ".") " "; }
|
||||
.wrap { width: 22ch; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,61 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: inline flow-root list-item</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { border: 1px solid; display: list-item; }
|
||||
|
||||
.wrap { width: 22ch; }
|
||||
.m { width: -webkit-min-content; width: min-content; }
|
||||
ib { display:inline-block; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li class=m>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<ib><li class=m>B</li></ib>
|
||||
<ib><li class=m>C</li></ib>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<ib><li>A A A A A A A A A A A A A A A A A A A A </li></ib>
|
||||
<ib><li class=m>B</li></ib>
|
||||
<ib><li class=m>C</li></ib>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li class=m>b</li>
|
||||
</ol></li>
|
||||
<li class=m>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li class=m>b</li>
|
||||
</ol></li>
|
||||
<li class=m>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: inline flow-root list-item</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#declaring-a-list-item">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-display/#propdef-display">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1105868">
|
||||
<link rel="match" href="inline-block-list-ref.html">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { border: 1px solid; display: inline flow-root list-item; }
|
||||
.wrap { width: 22ch; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: inline list-item with ::marker</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
span { border: 1px solid; }
|
||||
.wrap { width: 22ch; }
|
||||
ib { display:inline-block; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<span>1 A A A A A A A A A A A A A A A A A A A A </span><span>2 B</span>
|
||||
|
||||
<ol>
|
||||
<span>1 A A A A A A A A A A A A A A A A A A A A </span><span>2 B</span>
|
||||
<span>3 C</span>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<span>1 A A A A A A A A A A A A A A A A A A A A </span><span>2 B</span>
|
||||
<span>3 C</span>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<span>1 A A A A A A A A A A A A A A A A A A A A </span><span>2 B<ol>
|
||||
<span>2.1 a a a a a a a a a a a a a a a a a a a a </span><span>2.2 b</span>
|
||||
</ol></span>
|
||||
<span>3 C</span>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<span>1 A A A A A A A A A A A A A A A A A A A A </span><span>2 B
|
||||
<ol style="display:inline"><span>2.1 a a a a a a a a a a a a a a a a a a a a </span><span>2.2 b</span>
|
||||
</ol></span><span>3 C</span>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,63 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: inline list-item with ::marker</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#marker-pseudo">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-display/#propdef-display">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1105868">
|
||||
<link rel="match" href="inline-list-marker-ref.html">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { display: inline list-item; border: 1px solid; }
|
||||
li::marker { content: counters(list-item, ".") " "; }
|
||||
.wrap { width: 22ch; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: inline list-item</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
span { border: 1px solid; }
|
||||
li { display: list-item; list-style-position: inside; }
|
||||
|
||||
.wrap { width: 22ch; }
|
||||
ib { display:inline-block; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<span><ib><li>A</li></ib> A A A A A A A A A A A A A A A A A A A </span><span><ib><li value=2></li></ib>B</span>
|
||||
|
||||
<ol>
|
||||
<span><ib><li>A</li></ib> A A A A A A A A A A A A A A A A A A A </span><span><ib><li>B</li></ib></span>
|
||||
<span><ib><li>C</li></ib></span>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<span><ib><li>A</li></ib> A A A A A A A A A A A A A A A A A A A </span><span><ib><li>B</li></ib></span>
|
||||
<span><ib><li>C</li></ib></span></ol><ol style="display:inline">
|
||||
<span><ib><li>A</li></ib> A A A A A A A A A A A A A A A A A A A </span><span><ib><li></li></ib>B<ol>
|
||||
<span><ib><li>a</li></ib> a a a a a a a a a a a a a a a a a a a </span><span><ib><li>b</li></ib></span>
|
||||
</ol></li></ib></span>
|
||||
<span><ib><li>C</li></ib></span>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<span><ib><li>A</li></ib> A A A A A A A A A A A A A A A A A A A </span><span><ib><li></li></ib><br>B <ol style="display:inline"><span><ib><li>a</li></ib> a a a a a a a a a a a a a a a a a a a </span><span><ib><li>b</li></ib></span>
|
||||
</ol></span><span><ib><li>C</li></ib></span>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,40 @@
|
|||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Reference: table boxes inside inline list-items</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:16px/1 monospace;
|
||||
}
|
||||
|
||||
.l1 { display: inline list-item; }
|
||||
.l2 { display: inline flow-root list-item; }
|
||||
|
||||
span {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
div { background: blue; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
A<span class="l1">B<div style="display:inline-table">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:inline-table">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:inline-table">T</div>C</span>
|
||||
A<span class="l1">B<x><div style="display:inline-table">T</div></x>C</span>
|
||||
A<span class="l1">B<x style="display:block"><div style="display:inline-table">T</div></x>C</span>
|
||||
|
||||
A<span class="l2">B<div style="display:table">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:table">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:table">T</div>C</span>
|
||||
A<span class="l2">B<x><div style="display:inline-table">T</div></x>C</span>
|
||||
A<span class="l2">B<x style="display:block"><div style="display:table">T</div></x>C</span>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE HTML>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: table boxes inside inline list-items</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-tables-3/#ref-for-inline-table②">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-display/#propdef-display">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1105868">
|
||||
<link rel="match" href="inline-list-with-table-child-ref.html">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:16px/1 monospace;
|
||||
}
|
||||
|
||||
.l1 { display: inline list-item; }
|
||||
.l2 { display: inline flow-root list-item; }
|
||||
|
||||
span {
|
||||
border: 1px solid;
|
||||
}
|
||||
|
||||
div { background: blue; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
A<span class="l1">B<div style="display:table-cell">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:table-row">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:table-row-group">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:inline-table">T</div>C</span>
|
||||
A<span class="l1">B<div style="display:table">T</div>C</span>
|
||||
|
||||
A<span class="l2">B<div style="display:table-cell">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:table-row">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:table-row-group">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:inline-table">T</div>C</span>
|
||||
A<span class="l2">B<div style="display:table">T</div>C</span>
|
||||
|
||||
</body>
|
||||
</html>
|
62
tests/wpt/web-platform-tests/css/css-lists/inline-list.html
Normal file
62
tests/wpt/web-platform-tests/css/css-lists/inline-list.html
Normal file
|
@ -0,0 +1,62 @@
|
|||
<!DOCTYPE html>
|
||||
<!--
|
||||
Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>CSS Test: inline list-item</title>
|
||||
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#declaring-a-list-item">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-display/#propdef-display">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1105868">
|
||||
<link rel="match" href="inline-list-ref.html">
|
||||
<style>
|
||||
html,body {
|
||||
color:black; background-color:white; font:14px/1 monospace; padding:0; margin:0;
|
||||
}
|
||||
ol,ul,li { margin:0; padding:0; }
|
||||
body { margin-left: 40px; }
|
||||
|
||||
li { border: 1px solid; display: inline list-item; }
|
||||
.wrap { width: 22ch; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrap">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
|
||||
<ol>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B</li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ol style="display:inline">
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol>
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ol>
|
||||
|
||||
<ul>
|
||||
<li>A A A A A A A A A A A A A A A A A A A A </li>
|
||||
<li>B<ol style="display:inline">
|
||||
<li>a a a a a a a a a a a a a a a a a a a a </li>
|
||||
<li>b</li>
|
||||
</ol></li>
|
||||
<li>C</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</body>
|
|
@ -0,0 +1,7 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test Reference</title>
|
||||
<ol>
|
||||
<li value=3>three
|
||||
<li value=6>six
|
||||
<li value=5>five
|
||||
</ol>
|
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<title>Interaction of ol reversed and list-item value</title>
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1573907">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
|
||||
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="match" href="li-value-reversed-001-ref.html">
|
||||
<ol reversed>
|
||||
<li>three
|
||||
<li value=6>six
|
||||
<li>five
|
||||
</ol>
|
|
@ -0,0 +1,10 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test Reference</title>
|
||||
<ol>
|
||||
<li value=6>six
|
||||
<li value=5>five
|
||||
<li value=7>seven
|
||||
<li value=6>six
|
||||
<li value=10>ten
|
||||
<li value=9>nine
|
||||
</ol>
|
|
@ -0,0 +1,17 @@
|
|||
<!doctype html>
|
||||
<title>Interaction of ol reversed and list-item value</title>
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1573907">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
|
||||
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="match" href="li-value-reversed-002-ref.html">
|
||||
<ol reversed>
|
||||
<li>six
|
||||
<li>five
|
||||
<li value=7>seven
|
||||
<li>six
|
||||
<li value=10>ten
|
||||
<li>nine
|
||||
</ol>
|
|
@ -0,0 +1,16 @@
|
|||
<!doctype html>
|
||||
<title>Interaction of ol reversed and list-item value</title>
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1573907">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="match" href="li-value-reversed-002-ref.html">
|
||||
<ol reversed>
|
||||
<li>six
|
||||
<li>five
|
||||
<li style="counter-set: list-item 7">seven
|
||||
<li style="counter-increment: list-item -1">six
|
||||
<li style="counter-set: list-item 10; counter-increment: list-item 1">ten
|
||||
<li>nine
|
||||
</ol>
|
|
@ -0,0 +1,7 @@
|
|||
<!doctype html>
|
||||
<title>CSS Test Reference</title>
|
||||
<ol>
|
||||
<li value=2>two
|
||||
<div></div>
|
||||
<li value=0>zero
|
||||
</ol>
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<title>Non-list items with explicit list-item counter increments don't increment the ol reversed start value</title>
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1573907">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="match" href="li-value-reversed-004-ref.html">
|
||||
<ol reversed>
|
||||
<li>two
|
||||
<div style="counter-increment: list-item -1"></div>
|
||||
<li>zero
|
||||
</ol>
|
|
@ -0,0 +1,13 @@
|
|||
<!doctype html>
|
||||
<title>Non-list items with explicit list-item counter increments don't increment the ol reversed start value</title>
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1573907">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#attr-ol-reversed">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/#ordinal-value">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<link rel="match" href="li-value-reversed-004-ref.html">
|
||||
<ol reversed>
|
||||
<li>two
|
||||
<div style="counter-increment: list-item 1; counter-set: list-item 1"></div>
|
||||
<li>zero
|
||||
</ol>
|
Loading…
Add table
Add a link
Reference in a new issue