Move table_width_attribute_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 21:47:02 -04:00
parent f32f38031c
commit b1de1d4829
4 changed files with 25 additions and 1 deletions

View file

@ -627,6 +627,18 @@
"url": "/_mozilla/css/table_specified_width_a.html"
}
],
"css/table_width_attribute_a.html": [
{
"path": "css/table_width_attribute_a.html",
"references": [
[
"/_mozilla/css/table_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_width_attribute_a.html"
}
],
"css/text_align_complex_a.html": [
{
"path": "css/text_align_complex_a.html",
@ -2336,6 +2348,18 @@
"url": "/_mozilla/css/table_specified_width_a.html"
}
],
"css/table_width_attribute_a.html": [
{
"path": "css/table_width_attribute_a.html",
"references": [
[
"/_mozilla/css/table_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_width_attribute_a.html"
}
],
"css/text_align_complex_a.html": [
{
"path": "css/text_align_complex_a.html",

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='table_width_attribute_ref.html'>
<style>
table {
background: gold;
}
</style>
</head>
<body>
<table width=85%><tr><td>a</td></tr></table>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 85%;
background: gold;
}
</style>
</head>
<body>
<table><tr><td>a</td></tr></table>
</body>
</html>