Move float_right_intrinsic_width_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent ddf2ef0da0
commit 4efa4677e0
4 changed files with 25 additions and 1 deletions

View file

@ -839,6 +839,18 @@
"url": "/_mozilla/css/float_intrinsic_width_a.html"
}
],
"css/float_right_intrinsic_width_a.html": [
{
"path": "css/float_right_intrinsic_width_a.html",
"references": [
[
"/_mozilla/css/float_right_intrinsic_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_right_intrinsic_width_a.html"
}
],
"css/float_table_a.html": [
{
"path": "css/float_table_a.html",
@ -4932,6 +4944,18 @@
"url": "/_mozilla/css/float_intrinsic_width_a.html"
}
],
"css/float_right_intrinsic_width_a.html": [
{
"path": "css/float_right_intrinsic_width_a.html",
"references": [
[
"/_mozilla/css/float_right_intrinsic_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_right_intrinsic_width_a.html"
}
],
"css/float_table_a.html": [
{
"path": "css/float_table_a.html",

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='float_right_intrinsic_width_ref.html'>
<style type="text/css">
.fr {
float: right;
}
.green {
color: green;
}
body {
font-family: 'ahem';
font-size: 100px;
margin: 0;
}
</style>
</head>
<body>
<div class="fr green">X X</div>
</body>
</html>

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.fr {
float: right;
}
.green {
background-color: green;
}
.fixed {
width: 100px;
height: 100px;
}
body {
margin: 0;
}
</style>
</head>
<body>
<div class="fr green fixed"></div>
<div class="fr fixed"></div>
<div class="fr green fixed"></div>
</body>
</html>