Move list_style_type_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-20 11:54:11 +01:00
parent 6a2cbfc9d9
commit 872334a364
4 changed files with 25 additions and 1 deletions

View file

@ -2535,6 +2535,18 @@
"url": "/_mozilla/css/list_style_position_a.html"
}
],
"css/list_style_type_a.html": [
{
"path": "css/list_style_type_a.html",
"references": [
[
"/_mozilla/css/list_style_type_ref.html",
"!="
]
],
"url": "/_mozilla/css/list_style_type_a.html"
}
],
"css/many_brs_a.html": [
{
"path": "css/many_brs_a.html",
@ -7756,6 +7768,18 @@
"url": "/_mozilla/css/list_style_position_a.html"
}
],
"css/list_style_type_a.html": [
{
"path": "css/list_style_type_a.html",
"references": [
[
"/_mozilla/css/list_style_type_ref.html",
"!="
]
],
"url": "/_mozilla/css/list_style_type_a.html"
}
],
"css/many_brs_a.html": [
{
"path": "css/many_brs_a.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<!--
Tests that `list-style-type` does something. This is deliberately conservative because the
exact placement of the marker is unspecified.
-->
<html>
<head>
<link rel=mismatch href=list_style_type_ref.html>
<style>
li {
list-style: square;
}
</style>
<body>
<ul>
<li>Cheetahmen</li>
</ul>
</body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<!--
Tests that `list-style-type` does something. This is deliberately conservative because the
exact placement of the marker is unspecified.
-->
<html>
<head>
<body>
<ul>
<li>Cheetahmen</li>
</ul>
</body>
</html>