Move text_decoration_underline_subpx_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-21 10:13:36 +01:00
parent 9a8ac63fdc
commit 544568b16f
4 changed files with 25 additions and 1 deletions

View file

@ -4063,6 +4063,18 @@
"url": "/_mozilla/css/text_decoration_smoke_a.html"
}
],
"css/text_decoration_underline_subpx_a.html": [
{
"path": "css/text_decoration_underline_subpx_a.html",
"references": [
[
"/_mozilla/css/text_decoration_underline_subpx_ref.html",
"!="
]
],
"url": "/_mozilla/css/text_decoration_underline_subpx_a.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",
@ -9468,6 +9480,18 @@
"url": "/_mozilla/css/text_decoration_smoke_a.html"
}
],
"css/text_decoration_underline_subpx_a.html": [
{
"path": "css/text_decoration_underline_subpx_a.html",
"references": [
[
"/_mozilla/css/text_decoration_underline_subpx_ref.html",
"!="
]
],
"url": "/_mozilla/css/text_decoration_underline_subpx_a.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Underline test</title>
<link rel=mismatch href=text_decoration_underline_subpx_ref.html>
<style>
p {
font: 14px "Times New Roman";
text-decoration: underline;
}
</style>
</head>
<body>
<p>Hello</p>
</body>
</html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Underline test</title>
<style>
p {
font: 14px "Times New Roman";
}
</style>
</head>
<body>
<p>Hello</p>
</body>
</html>