Update web-platform-tests to revision 4bba821de44da9ed47c2562f995a0da6eecc177b

This commit is contained in:
Ms2ger 2015-10-12 17:01:10 +02:00
parent af637640ae
commit c8c377df9f
48 changed files with 697 additions and 8688 deletions

View file

@ -0,0 +1,25 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@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;
}
</style>
<ol class=decimal><li>1<li>2</ol>
<ol class=lower-alpha><li>a<li>b</ol>
<ol class=upper-alpha><li>A<li>B</ol>
<ol class=lower-roman><li>i<li>ii</ol>
<ol class=upper-roman><li>I<li>II</ol>

View file

@ -0,0 +1,9 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: supported types</title>
<link rel=match href=ol-type-supported-ref.html>
<ol type=1><li>1<li>2</ol>
<ol type=a><li>a<li>b</ol>
<ol type=A><li>A<li>B</ol>
<ol type=i><li>i<li>ii</ol>
<ol type=I><li>I<li>II</ol>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ol@type: supported types</title>
<link rel="match" href="ol-type-supported-ref.html"/>
</head>
<body>
<ol type="1"><li>1</li><li>2</li></ol>
<ol type="a"><li>a</li><li>b</li></ol>
<ol type="A"><li>A</li><li>B</li></ol>
<ol type="i"><li>i</li><li>ii</li></ol>
<ol type="I"><li>I</li><li>II</li></ol>
</body>
</html>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: circle</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=circle><li>1<li>2</ol>
<ol type=CIRCLE><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: disc</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=disc><li>1<li>2</ol>
<ol type=DISC><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: lower-alpha</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=lower-alpha><li>1<li>2</ol>
<ol type=LOWER-ALPHA><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: lower-roman</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=lower-roman><li>1<li>2</ol>
<ol type=LOWER-ROMAN><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: none</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=none><li>1<li>2</ol>
<ol type=NONE><li>1<li>2</ol>

View file

@ -0,0 +1,5 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported types</title>
<ol><li>1<li>2</ol>
<ol><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: round</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=round><li>1<li>2</ol>
<ol type=ROUND><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: square</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=square><li>1<li>2</ol>
<ol type=SQUARE><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: upper-latin</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=upper-alpha><li>1<li>2</ol>
<ol type=UPPER-ALPHA><li>1<li>2</ol>

View file

@ -0,0 +1,6 @@
<!doctype html>
<meta charset=utf-8>
<title>ol@type: unsupported type: upper-roman</title>
<link rel=match href=ol-type-unsupported-ref.html>
<ol type=upper-roman><li>1<li>2</ol>
<ol type=UPPER-ROMAN><li>1<li>2</ol>