Move table_specified_width_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 21:03:40 -04:00
parent 9d5f09e09c
commit 54d9d813a1
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_specified_width_a.html": [
{
"path": "css/table_specified_width_a.html",
"references": [
[
"/_mozilla/css/table_specified_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_specified_width_a.html"
}
],
"css/transform_optimization.html": [
{
"path": "css/transform_optimization.html",
@ -2156,6 +2168,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_specified_width_a.html": [
{
"path": "css/table_specified_width_a.html",
"references": [
[
"/_mozilla/css/table_specified_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_specified_width_a.html"
}
],
"css/transform_optimization.html": [
{
"path": "css/transform_optimization.html",

View file

@ -0,0 +1,38 @@
<html>
<head>
<link rel='match' href='table_specified_width_ref.html'>
<style>
body {
margin: 0;
}
table {
table-layout: fixed;
width: 400px;
border-spacing: 0;
}
td {
padding: 0;
}
.td1 {
background: #ff0000;
height: 100px;
}
.td2 {
background: #00ff00;
height: 100px;
}
</style>
</head>
<body>
<table id="mn">
<tbody>
<tr>
<td class="td1" width="50">
</td>
<td class="td2" width="150">
</td>
</tr>
</tbody>
</table>
</body>
</html>

View file

@ -0,0 +1,17 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style>
body {
margin: 0;
}
.red {
color: #ff0000;
}
.green {
color: #00ff00;
}
</style>
</head>
<body><span class="red">X</span><span class="green">XXX</span></body>
</html>