mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move rtl_float_a.html to wpt reftests.
This commit is contained in:
parent
a76dc54d54
commit
ce857063d2
4 changed files with 25 additions and 1 deletions
|
@ -683,6 +683,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/rtl_float_a.html": [
|
||||
{
|
||||
"path": "css/rtl_float_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/rtl_float_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/rtl_float_a.html"
|
||||
}
|
||||
],
|
||||
"css/rtl_margin_a.html": [
|
||||
{
|
||||
"path": "css/rtl_margin_a.html",
|
||||
|
@ -2904,6 +2916,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/rtl_float_a.html": [
|
||||
{
|
||||
"path": "css/rtl_float_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/rtl_float_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/rtl_float_a.html"
|
||||
}
|
||||
],
|
||||
"css/rtl_margin_a.html": [
|
||||
{
|
||||
"path": "css/rtl_margin_a.html",
|
||||
|
|
21
tests/wpt/mozilla/tests/css/rtl_float_a.html
Normal file
21
tests/wpt/mozilla/tests/css/rtl_float_a.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel='match' href='rtl_float_ref.html'>
|
||||
<meta charset="UTF-8">
|
||||
<title>RTL float test</title>
|
||||
<style>
|
||||
div {
|
||||
direction: rtl;
|
||||
float: left;
|
||||
background: green;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="a"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
19
tests/wpt/mozilla/tests/css/rtl_float_ref.html
Normal file
19
tests/wpt/mozilla/tests/css/rtl_float_ref.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>RTL float reference</title>
|
||||
<style>
|
||||
div {
|
||||
float: left;
|
||||
background: green;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="a"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue