Move rtl_simple.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 07:59:20 -04:00
parent 606c46cd8d
commit 4029560e63
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/rtl_simple.html": [
{
"path": "css/rtl_simple.html",
"references": [
[
"/_mozilla/css/rtl_simple_ref.html",
"=="
]
],
"url": "/_mozilla/css/rtl_simple.html"
}
],
"css/rtl_table_a.html": [
{
"path": "css/rtl_table_a.html",
@ -2880,6 +2892,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/rtl_simple.html": [
{
"path": "css/rtl_simple.html",
"references": [
[
"/_mozilla/css/rtl_simple_ref.html",
"=="
]
],
"url": "/_mozilla/css/rtl_simple.html"
}
],
"css/rtl_table_a.html": [
{
"path": "css/rtl_table_a.html",

View file

@ -0,0 +1,19 @@
<head>
<link rel='match' href='rtl_simple_ref.html'>
<style>
#outer {
direction: ltr;
width: 400px;
background: red;
}
#inner {
direction: rtl;
height: 100px;
width: 100px;
background: green;
}
</style>
</head>
<body>
<div id="outer"><div id="inner"></div></div>
</body>

View file

@ -0,0 +1,16 @@
<head>
<style>
#outer {
width: 400px;
background: red;
}
#inner {
height: 100px;
width: 100px;
background: green;
}
</style>
</head>
<body>
<div id="outer"><div id="inner"></div></div>
</body>