Move rtl_float_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 08:11:58 -04:00
parent a76dc54d54
commit ce857063d2
4 changed files with 25 additions and 1 deletions

View file

@ -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",

View 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>

View 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>