Move ol_simple_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 20:25:54 -04:00
parent 1f0b6daaa9
commit ed69bc5566
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/ol_simple_a.html": [
{
"path": "css/ol_simple_a.html",
"references": [
[
"/_mozilla/css/ol_simple_ref.html",
"=="
]
],
"url": "/_mozilla/css/ol_simple_a.html"
}
],
"css/only_of_type_pseudo_a.html": [
{
"path": "css/only_of_type_pseudo_a.html",
@ -3480,6 +3492,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/ol_simple_a.html": [
{
"path": "css/ol_simple_a.html",
"references": [
[
"/_mozilla/css/ol_simple_ref.html",
"=="
]
],
"url": "/_mozilla/css/ol_simple_a.html"
}
],
"css/only_of_type_pseudo_a.html": [
{
"path": "css/only_of_type_pseudo_a.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='ol_simple_ref.html'>
<style>
li {
list-style-type: decimal;
list-style-position: inside;
}
</style>
</head>
<body>
<ol>
<li>Foo</li>
<li>Bar</li>
<li>Baz</li>
</ol>
</body>
</html>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<style>
li {
list-style-type: none;
list-style-position: inside;
}
</style>
</head>
<body>
<ol>
<li>1. Foo</li>
<li>2. Bar</li>
<li>3. Baz</li>
</ol>
</body>
</html>