Move table_containing_block_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 22:36:43 -04:00
parent acae23ab1a
commit 4891c45c25
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_containing_block_a.html": [
{
"path": "css/table_containing_block_a.html",
"references": [
[
"/_mozilla/css/table_containing_block_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_containing_block_a.html"
}
],
"css/table_expansion_to_fit_a.html": [
{
"path": "css/table_expansion_to_fit_a.html",
@ -2492,6 +2504,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_containing_block_a.html": [
{
"path": "css/table_containing_block_a.html",
"references": [
[
"/_mozilla/css/table_containing_block_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_containing_block_a.html"
}
],
"css/table_expansion_to_fit_a.html": [
{
"path": "css/table_expansion_to_fit_a.html",

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<link rel='match' href='table_containing_block_ref.html'>
<head>
<style type="text/css">
.rel {
position: relative;
}
.abs {
position:absolute;
}
</style>
</head>
<body>
<p>Don't crash!</p>
<table class="rel">
<tbody>
<tr class="abs">
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</body>
</html>

View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<body>
<p>Don't crash!</p>
<table>
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</body>
</html>