Move text_decoration_smoke_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-21 10:10:46 +01:00
parent 3d5e1130d5
commit 9a8ac63fdc
4 changed files with 25 additions and 1 deletions

View file

@ -4051,6 +4051,18 @@
"url": "/_mozilla/css/text_decoration_cached.html"
}
],
"css/text_decoration_smoke_a.html": [
{
"path": "css/text_decoration_smoke_a.html",
"references": [
[
"/_mozilla/css/text_decoration_smoke_ref.html",
"!="
]
],
"url": "/_mozilla/css/text_decoration_smoke_a.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",
@ -9444,6 +9456,18 @@
"url": "/_mozilla/css/text_decoration_cached.html"
}
],
"css/text_decoration_smoke_a.html": [
{
"path": "css/text_decoration_smoke_a.html",
"references": [
[
"/_mozilla/css/text_decoration_smoke_ref.html",
"!="
]
],
"url": "/_mozilla/css/text_decoration_smoke_a.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that `text-decoration` does something. -->
<link rel=mismatch href=text_decoration_smoke_ref.html>
<style>
#a {
text-decoration: underline;
color: red;
font-size: 96px;
width: 300px;
}
</style>
</head>
<body>
<div id=a>Foo</div>
</body>
</html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that `text-decoration` does something. -->
<style>
#a {
color: red;
font-size: 96px;
width: 300px;
}
</style>
</head>
<body>
<div id=a>Foo</div>
</body>
</html>