Move table_auto_width.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 23:00:18 -04:00
parent bb22a642b9
commit af75427f19
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_auto_width.html": [
{
"path": "css/table_auto_width.html",
"references": [
[
"/_mozilla/css/table_auto_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_auto_width.html"
}
],
"css/table_caption_bottom_a.html": [
{
"path": "css/table_caption_bottom_a.html",
@ -2576,6 +2588,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_auto_width.html": [
{
"path": "css/table_auto_width.html",
"references": [
[
"/_mozilla/css/table_auto_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_auto_width.html"
}
],
"css/table_caption_bottom_a.html": [
{
"path": "css/table_caption_bottom_a.html",

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='table_auto_width_ref.html'>
</head>
<body>
<table>
<tbody>
<tr>
<td style="padding: 0">
<span>12345<span>67890</span></span>
</td>
</tr>
</tbody>
</table>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<table>
<tbody>
<tr>
<td style="padding: 0">
<span>1234567890</span>
</td>
</tr>
</tbody>
</table>
</body>
</html>