Move legacy_cellspacing_attribute_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-13 10:31:20 +01:00
parent 1763a37e3b
commit 86ab0eb860
4 changed files with 25 additions and 40 deletions

View file

@ -2271,6 +2271,18 @@
"url": "/_mozilla/css/layerization_z_order_a.html"
}
],
"css/legacy_cellspacing_attribute_a.html": [
{
"path": "css/legacy_cellspacing_attribute_a.html",
"references": [
[
"/_mozilla/css/border_spacing_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_cellspacing_attribute_a.html"
}
],
"css/legacy_input_size_attribute_override_a.html": [
{
"path": "css/legacy_input_size_attribute_override_a.html",
@ -7372,6 +7384,18 @@
"url": "/_mozilla/css/layerization_z_order_a.html"
}
],
"css/legacy_cellspacing_attribute_a.html": [
{
"path": "css/legacy_cellspacing_attribute_a.html",
"references": [
[
"/_mozilla/css/border_spacing_ref.html",
"=="
]
],
"url": "/_mozilla/css/legacy_cellspacing_attribute_a.html"
}
],
"css/legacy_input_size_attribute_override_a.html": [
{
"path": "css/legacy_input_size_attribute_override_a.html",

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that the legacy `cellspacing` attribute works. -->
<link rel=match href=border_spacing_ref.html>
<style>
body, html {
margin: 0;
}
table {
border: none;
padding: 0;
}
tr {
padding: 0;
}
td {
border: none;
padding: 0;
background: blue;
}
</style>
</head>
<body>
<table cellspacing=6>
<tr><td width=32 style="height: 32px;"></td><td width=64></td></tr>
<tr><td width=32 style="height: 32px;"></td><td width=64></td></tr>
</table>
</body>
</html>