Move table_center_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 22:48:26 -04:00
parent 640837b67e
commit a5ca38c321
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_center_a.html": [
{
"path": "css/table_center_a.html",
"references": [
[
"/_mozilla/css/table_center_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_center_a.html"
}
],
"css/table_colspan_fixed_a.html": [
{
"path": "css/table_colspan_fixed_a.html",
@ -2528,6 +2540,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_center_a.html": [
{
"path": "css/table_center_a.html",
"references": [
[
"/_mozilla/css/table_center_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_center_a.html"
}
],
"css/table_colspan_fixed_a.html": [
{
"path": "css/table_colspan_fixed_a.html",

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<link rel='match' href='table_center_ref.html'>
<style>
body, html {
margin: 0;
}
</style>
<body>
<center><table border=0 cellspacing=0><tr><td style="border: none; padding: 0; height: 100px; width: 100px; background: green"></td></tr></table></center>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<style>
body, html {
margin: 0;
}
</style>
<body>
<center><div style="height: 100px; width: 100px; background: green"></div></center>
</body>
</html>