Update web-platform-tests to revision a3b0fadc7f5001bbe52c65e0a354c454981423a3

This commit is contained in:
Ms2ger 2015-11-30 10:23:39 +01:00
parent 6bb495338b
commit 3bbee99cdb
29 changed files with 730 additions and 4 deletions

View file

@ -0,0 +1,45 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: supported types</title>
<style>
.decimal { list-style-type: decimal; }
.lower-alpha { list-style-type: lower-alpha; }
.upper-alpha { list-style-type: upper-alpha; }
.lower-roman { list-style-type: lower-roman; }
.upper-roman { list-style-type: upper-roman; }
.disc { list-style-type: disc; }
.circle { list-style-type: circle; }
.square { list-style-type: square; }
.none { list-style-type: none; }
</style>
<li class="decimal">first item</li>
<li class="lower-alpha">second item</li>
<li class="upper-alpha">third item</li>
<li class="lower-roman">fourth item</li>
<li class="upper-roman">fifth item</li>
<li class="disc">sixth item</li>
<li class="circle">seventh item</li>
<li class="square">eigth item</li>
<li class="none">ninth item</li>
<ol>
<li class="decimal">first ordered item</li>
<li class="lower-alpha">second ordered item</li>
<li class="upper-alpha">third ordered item</li>
<li class="lower-roman">fourth ordered item</li>
<li class="upper-roman">fifth ordered item</li>
<li class="disc">sixth ordered item</li>
<li class="circle">seventh ordered item</li>
<li class="square">eigth ordered item</li>
<li class="none">ninth ordered item</li>
</ol>
<ul>
<li class="decimal">first unordered item</li>
<li class="lower-alpha">second unordered item</li>
<li class="upper-alpha">third unordered item</li>
<li class="lower-roman">fourth unordered item</li>
<li class="upper-roman">fifth unordered item</li>
<li class="disc">sixth unordered item</li>
<li class="circle">seventh unordered item</li>
<li class="square">eigth unordered item</li>
<li class="none">ninth unordered item</li>
</ul>

View file

@ -0,0 +1,35 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: supported types</title>
<link rel=match href=li-type-supported-ref.html>
<li type=1>first item</li>
<li type=a>second item</li>
<li type=A>third item</li>
<li type=i>fourth item</li>
<li type=I>fifth item</li>
<li type=disc>sixth item</li>
<li type=circle>seventh item</li>
<li type=square>eigth item</li>
<li type=none>ninth item</li>
<ol>
<li type=1>first ordered item</li>
<li type=a>second ordered item</li>
<li type=A>third ordered item</li>
<li type=i>fourth ordered item</li>
<li type=I>fifth ordered item</li>
<li type=disc>sixth ordered item</li>
<li type=circle>seventh ordered item</li>
<li type=square>eigth ordered item</li>
<li type=none>ninth ordered item</li>
</ol>
<ul>
<li type=1>first unordered item</li>
<li type=a>second unordered item</li>
<li type=A>third unordered item</li>
<li type=i>fourth unordered item</li>
<li type=I>fifth unordered item</li>
<li type=disc>sixth unordered item</li>
<li type=circle>seventh unordered item</li>
<li type=square>eigth unordered item</li>
<li type=none>ninth unordered item</li>
</ul>

View file

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>li@type: supported types</title>
<link rel="match" href="li-type-supported-ref.html"/>
</head>
<body>
<li type="1">first item</li>
<li type="a">second item</li>
<li type="A">third item</li>
<li type="i">fourth item</li>
<li type="I">fifth item</li>
<li type="disc">sixth item</li>
<li type="circle">seventh item</li>
<li type="square">eigth item</li>
<li type="none">ninth item</li>
<ol>
<li type="1">first ordered item</li>
<li type="a">second ordered item</li>
<li type="A">third ordered item</li>
<li type="i">fourth ordered item</li>
<li type="I">fifth ordered item</li>
<li type="disc">sixth ordered item</li>
<li type="circle">seventh ordered item</li>
<li type="square">eigth ordered item</li>
<li type="none">ninth ordered item</li>
</ol>
<ul>
<li type="1">first unordered item</li>
<li type="a">second unordered item</li>
<li type="A">third unordered item</li>
<li type="i">fourth unordered item</li>
<li type="I">fifth unordered item</li>
<li type="disc">sixth unordered item</li>
<li type="circle">seventh unordered item</li>
<li type="square">eigth unordered item</li>
<li type="none">ninth unordered item</li>
</ul>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: unsupported type: lower-alpha</title>
<link rel=match href=li-type-unsupported-ref.html>
<li type=lower-alpha>first item</li>
<li type=LOWER-ALPHA>second item</li>
<ol>
<li type=lower-alpha>first ordered item</li>
<li type=LOWER-ALPHA>second ordered item</li>
</ol>
<ul>
<li type=lower-alpha>first unordered item</li>
<li type=LOWER-ALPHA>second unordered item</li>
</ul>

View file

@ -0,0 +1,14 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: unsupported type: lower-roman</title>
<link rel=match href=li-type-unsupported-ref.html>
<li type=lower-roman>first item</li>
<li type=LOWER-ROMAN>second item</li>
<ol>
<li type=lower-roman>first ordered item</li>
<li type=LOWER-ROMAN>second ordered item</li>
</ol>
<ul>
<li type=lower-roman>first unordered item</li>
<li type=LOWER-ROMAN>second unordered item</li>
</ul>

View file

@ -0,0 +1,13 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: unsupported types</title>
<li>first item</li>
<li>second item</li>
<ol>
<li>first ordered item</li>
<li>second ordered item</li>
</ol>
<ul>
<li>first unordered item</li>
<li>second unordered item</li>
</ul>

View file

@ -0,0 +1,14 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: unsupported type: upper-alpha</title>
<link rel=match href=li-type-unsupported-ref.html>
<li type=upper-alpha>first item</li>
<li type=UPPER-ALPHA>second item</li>
<ol>
<li type=upper-alpha>first ordered item</li>
<li type=UPPER-ALPHA>second ordered item</li>
</ol>
<ul>
<li type=upper-alpha>first unordered item</li>
<li type=UPPER-ALPHA>second unordered item</li>
</ul>

View file

@ -0,0 +1,14 @@
<!doctype html>
<meta charset=utf-8>
<title>li@type: unsupported type: upper-roman</title>
<link rel=match href=li-type-unsupported-ref.html>
<li type=upper-roman>first item</li>
<li type=UPPER-ROMAN>second item</li>
<ol>
<li type=upper-roman>first ordered item</li>
<li type=UPPER-ROMAN>second ordered item</li>
</ol>
<ul>
<li type=upper-roman>first unordered item</li>
<li type=UPPER-ROMAN>second unordered item</li>
</ul>

View file

@ -0,0 +1,21 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: supported types</title>
<style>
.disc {
list-style-type: disc;
}
.circle {
list-style-type: circle;
}
.square {
list-style-type: square;
}
.none {
list-style-type: none;
}
</style>
<ul class="disc"><li>first disc</li><li>second disc</li></ul>
<ul class="circle"><li>first circle</li><li>second circle</li></ul>
<ul class="square"><li>first square</li><li>second square</li></ul>
<ul class="none"><li>first none</li><li>second none</li></ul>

View file

@ -0,0 +1,8 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: supported types</title>
<link rel=match href=ul-type-supported-ref.html>
<ul type=disc><li>first disc</li><li>second disc</li></ul>
<ul type=circle><li>first circle</li><li>second circle</li></ul>
<ul type=square><li>first square</li><li>second square</li></ul>
<ul type=none><li>first none</li><li>second none</li></ul>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ul@type: supported types</title>
<link rel="match" href="ul-type-supported-ref.html"/>
</head>
<body>
<ul type="disc"><li>first disc</li><li>second disc</li></ul>
<ul type="circle"><li>first circle</li><li>second circle</li></ul>
<ul type="square"><li>first square</li><li>second square</li></ul>
<ul type="none"><li>first none</li><li>second none</li></ul>
</body>
</html>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported type: decimal</title>
<link rel=match href=ul-type-unsupported-ref.html>
<ul type=decimal><li>first item</li><li>second item</li></ul>
<ul type=DECIMAL><li>first item</li><li>second item</li></ul>
<ul type=1><li>first item</li><li>second item</li></ul>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported type: lower-alpha</title>
<link rel=match href=ul-type-unsupported-ref.html>
<ul type=lower-alpha><li>first item</li><li>second item</li></ul>
<ul type=LOWER-ALPHA><li>first item</li><li>second item</li></ul>
<ul type=a><li>first item</li><li>second item</li></ul>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported type: lower-roman</title>
<link rel=match href=ul-type-unsupported-ref.html>
<ul type=lower-roman><li>first item</li><li>second item</li></ul>
<ul type=LOWER-ROMAN><li>first item</li><li>second item</li></ul>
<ul type=i><li>first item</li><li>second item</li></ul>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported types</title>
<ul><li>first item</li><li>second item</li></ul>
<ul><li>first item</li><li>second item</li></ul>
<ul><li>first item</li><li>second item</li></ul>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported type: upper-alpha</title>
<link rel=match href=ul-type-unsupported-ref.html>
<ul type=upper-alpha><li>first item</li><li>second item</li></ul>
<ul type=UPPER-ALPHA><li>first item</li><li>second item</li></ul>
<ul type=A><li>first item</li><li>second item</li></ul>

View file

@ -0,0 +1,7 @@
<!doctype html>
<meta charset=utf-8>
<title>ul@type: unsupported type: upper-roman</title>
<link rel=match href=ul-type-unsupported-ref.html>
<ul type=upper-roman><li>first item</li><li>second item</li></ul>
<ul type=UPPER-ROMAN><li>first item</li><li>second item</li></ul>
<ul type=I><li>first item</li><li>second item</li></ul>