Move table_intrinsic_style_specified_width_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 22:31:16 -04:00
parent 956409288e
commit 454df5256c
4 changed files with 25 additions and 1 deletions

View file

@ -615,6 +615,18 @@
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
}
],
"css/table_intrinsic_style_specified_width_a.html": [
{
"path": "css/table_intrinsic_style_specified_width_a.html",
"references": [
[
"/_mozilla/css/table_intrinsic_style_specified_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_intrinsic_style_specified_width_a.html"
}
],
"css/table_margin_auto_a.html": [
{
"path": "css/table_margin_auto_a.html",
@ -2480,6 +2492,18 @@
"url": "/_mozilla/css/table_expansion_to_fit_a.html"
}
],
"css/table_intrinsic_style_specified_width_a.html": [
{
"path": "css/table_intrinsic_style_specified_width_a.html",
"references": [
[
"/_mozilla/css/table_intrinsic_style_specified_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_intrinsic_style_specified_width_a.html"
}
],
"css/table_margin_auto_a.html": [
{
"path": "css/table_margin_auto_a.html",

View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='table_intrinsic_style_specified_width_ref.html'>
<style>
section {
width: 400px;
}
table {
width: 400px;
height: 100px;
}
#a {
width: 100px;
height: 100px;
background: green;
}
#b {
background: lightblue;
}
</style>
</head>
<body>
<section><table><tr><td><div id=a></div></td><td id=b>
Foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
</td></tr></table></section>
</body>
</html>

View file

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<style>
section {
width: 400px;
}
table {
width: 400px;
height: 100px;
}
#a {
min-width: 100px;
height: 100px;
background: green;
}
#b {
background: lightblue;
}
</style>
</head>
<body>
<section><table><tr><td><div id=a></div></td><td id=b>
Foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo
</td></tr></table></section>
</body>
</html>