Move text_decoration_cached.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 21:55:57 -04:00
parent 5bf38ab538
commit 731c1a491c
4 changed files with 25 additions and 1 deletions

View file

@ -699,6 +699,18 @@
"url": "/_mozilla/css/text_align_start_end.html"
}
],
"css/text_decoration_cached.html": [
{
"path": "css/text_decoration_cached.html",
"references": [
[
"/_mozilla/css/text_decoration_cached_ref.html",
"=="
]
],
"url": "/_mozilla/css/text_decoration_cached.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",
@ -2456,6 +2468,18 @@
"url": "/_mozilla/css/text_align_start_end.html"
}
],
"css/text_decoration_cached.html": [
{
"path": "css/text_decoration_cached.html",
"references": [
[
"/_mozilla/css/text_decoration_cached_ref.html",
"=="
]
],
"url": "/_mozilla/css/text_decoration_cached.html"
}
],
"css/text_indent_a.html": [
{
"path": "css/text_indent_a.html",

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='text_decoration_cached_ref.html'>
<meta charset="UTF-8">
<title>text-decoration cache test</title>
<style>
span { text-decoration: underline; }
</style>
</head>
<body>
<u>test</u>
<u>test</u>
<body>
</html>

View file

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>text-decoration cache reference</title>
<style>
span { text-decoration: underline; }
</style>
</head>
<body>
<u>test</u>
<span>test</span>
<body>
</html>