Move servo_center_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 23:24:33 -04:00
parent b2eaf1cf4f
commit 64715b5448
4 changed files with 25 additions and 1 deletions

View file

@ -579,6 +579,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/servo_center_a.html": [
{
"path": "css/servo_center_a.html",
"references": [
[
"/_mozilla/css/servo_center_ref.html",
"=="
]
],
"url": "/_mozilla/css/servo_center_a.html"
}
],
"css/setattribute_id_restyle_a.html": [
{
"path": "css/setattribute_id_restyle_a.html",
@ -2648,6 +2660,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/servo_center_a.html": [
{
"path": "css/servo_center_a.html",
"references": [
[
"/_mozilla/css/servo_center_ref.html",
"=="
]
],
"url": "/_mozilla/css/servo_center_a.html"
}
],
"css/setattribute_id_restyle_a.html": [
{
"path": "css/setattribute_id_restyle_a.html",

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='servo_center_ref.html'>
<style>
table {
width: 85%;
background: gold;
}
tbody {
text-align: left;
}
</style>
</head>
<body>
<center>
<table><tr><td>a</td></tr></table>
</center>
</body>
</html>

View file

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