Move table_row_direction_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-15 21:39:41 -04:00
parent 7dc6fc94d5
commit a987b849a0
4 changed files with 25 additions and 1 deletions

View file

@ -603,6 +603,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_row_direction_a.html": [
{
"path": "css/table_row_direction_a.html",
"references": [
[
"/_mozilla/css/table_row_direction_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_row_direction_a.html"
}
],
"css/table_specified_width_a.html": [
{
"path": "css/table_specified_width_a.html",
@ -2288,6 +2300,18 @@
"url": "/_mozilla/css/stacking_context_rtl.html"
}
],
"css/table_row_direction_a.html": [
{
"path": "css/table_row_direction_a.html",
"references": [
[
"/_mozilla/css/table_row_direction_ref.html",
"=="
]
],
"url": "/_mozilla/css/table_row_direction_a.html"
}
],
"css/table_specified_width_a.html": [
{
"path": "css/table_specified_width_a.html",

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='table_row_direction_ref.html'>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style>
* { margin: 0; padding: 0; border-spacing: 0; }
tr { direction: rtl; }
.r { color: red; }
.o { color: orange; }
.y { color: yellow; }
</style>
</head>
<body>
<table>
<tr>
<td class="r">R</td>
<td class="o">O</td>
<td class="y">Y</td>
</tr>
</table>
</body>
</html>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/ahem.css">
<style>
* { margin: 0; padding: 0; border-spacing: 0; }
.r { color: red; }
.o { color: orange; }
.y { color: yellow; }
</style>
</head>
<body>
<table>
<tr>
<td class="r">R</td>
<td class="o">O</td>
<td class="y">Y</td>
</tr>
</table>
</body>
</html>