mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move rtl_simple.html to wpt reftests.
This commit is contained in:
parent
606c46cd8d
commit
4029560e63
4 changed files with 25 additions and 1 deletions
|
@ -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",
|
||||
|
|
19
tests/wpt/mozilla/tests/css/rtl_simple.html
Normal file
19
tests/wpt/mozilla/tests/css/rtl_simple.html
Normal 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>
|
16
tests/wpt/mozilla/tests/css/rtl_simple_ref.html
Normal file
16
tests/wpt/mozilla/tests/css/rtl_simple_ref.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue