Move legacy_td_width_attribute_a.html and legacy_th_width_attribute_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-13 12:03:50 +01:00
parent 86ab0eb860
commit 45d0fecb89
5 changed files with 50 additions and 2 deletions

View file

@ -2319,6 +2319,30 @@
"url": "/_mozilla/css/legacy_td_bgcolor_attribute_a.html"
}
],
"css/legacy_td_width_attribute_a.html": [
{
"path": "css/legacy_td_width_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_td_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_td_width_attribute_a.html"
}
],
"css/legacy_th_width_attribute_a.html": [
{
"path": "css/legacy_th_width_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_td_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_th_width_attribute_a.html"
}
],
"css/letter_spacing_a.html": [
{
"path": "css/letter_spacing_a.html",
@ -7432,6 +7456,30 @@
"url": "/_mozilla/css/legacy_td_bgcolor_attribute_a.html"
}
],
"css/legacy_td_width_attribute_a.html": [
{
"path": "css/legacy_td_width_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_td_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_td_width_attribute_a.html"
}
],
"css/legacy_th_width_attribute_a.html": [
{
"path": "css/legacy_th_width_attribute_a.html",
"references": [
[
"/_mozilla/css/legacy_td_width_attribute_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_th_width_attribute_a.html"
}
],
"css/letter_spacing_a.html": [
{
"path": "css/letter_spacing_a.html",

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel=match href=legacy_td_width_attribute_ref.html>
<style>
.a {
height: 16px;
background: blue;
}
.b {
background: green;
}
</style>
</head>
<body>
<table><tr><td width=30 class=a></td><td width=200 class=b></td></tr></table>
<table><tr><td width="30 " class=a></td><td width=" 200 " class=b></td></tr></table>
<table><tr><td width="30asdf" class=a></td><td width=200haha class=b></td></tr></table>
</table>
</body>
</html>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<style>
.a {
height: 16px;
width: 30px;
background: blue;
}
.b {
width: 200px;
background: green;
}
</style>
</head>
<body>
<table><tr><td class=a></td><td class=b></td></tr></table>
<table><tr><td class=a></td><td class=b></td></tr></table>
<table><tr><td class=a></td><td class=b></td></tr></table>
</body>
</html>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel=match href=legacy_td_width_attribute_ref.html>
<style>
.a {
height: 16px;
background: blue;
}
.b {
background: green;
}
</style>
</head>
<body>
<table><tr><th width=30 class=a></th><th width=200 class=b></th></tr></table>
<table><tr><td width="30 " class=a></td><td width=" 200 " class=b></td></tr></table>
<table><tr><td width="30asdf" class=a></td><td width=200haha class=b></td></tr></table>
</table>
</body>
</html>