Move legacy_table_border_attribute_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 21:03:49 -04:00
parent b503ffaa8d
commit 6ebe6fdebe
4 changed files with 25 additions and 1 deletions

View file

@ -707,6 +707,18 @@
"url": "/_mozilla/css/legacy_input_size_attribute_override_a.html"
}
],
"css/legacy_table_border_attribute_a.html": [
{
"path": "css/legacy_table_border_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_table_border_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_table_border_attribute_a.html"
}
],
"css/nth_child_pseudo_a.html": [
{
"path": "css/nth_child_pseudo_a.html",
@ -3648,6 +3660,18 @@
"url": "/_mozilla/css/legacy_input_size_attribute_override_a.html"
}
],
"css/legacy_table_border_attribute_a.html": [
{
"path": "css/legacy_table_border_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_table_border_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_table_border_attribute_a.html"
}
],
"css/nth_child_pseudo_a.html": [
{
"path": "css/nth_child_pseudo_a.html",

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='legacy_table_border_attribute_ref.html'>
<style>
table {
border-color: red;
}
</style>
</head>
<body>
<table border=10><tr><td style="border: none">:-)</td></tr></table>
<table border=mimi><tr><td style="border: none">:-)</td></tr></table>
<table border=0><tr><td style="border: none">:-)</td></tr></table>
</body>
</html>

View file

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<body>
<table style="border: outset red 10px"><tr><td>:-)</td></tr></table>
<table style="border: outset red 1px"><tr><td>:-)</td></tr></table>
<table style="border: none"><tr><td>:-)</td></tr></table>
</body>
</html>