Move float_intrinsic_height.html to wpt reftests.

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

View file

@ -803,6 +803,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/float_intrinsic_height.html": [
{
"path": "css/float_intrinsic_height.html",
"references": [
[
"/_mozilla/css/float_intrinsic_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_intrinsic_height.html"
}
],
"css/float_table_a.html": [
{
"path": "css/float_table_a.html",
@ -4836,6 +4848,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/float_intrinsic_height.html": [
{
"path": "css/float_intrinsic_height.html",
"references": [
[
"/_mozilla/css/float_intrinsic_height_ref.html",
"=="
]
],
"url": "/_mozilla/css/float_intrinsic_height.html"
}
],
"css/float_table_a.html": [
{
"path": "css/float_table_a.html",

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='float_intrinsic_height_ref.html'>
<style type="text/css">
.otherprojects {
background-color: red;
float: left;
width: 200px;
}
.otherprojects-item {
background-color: yellow;
float: left;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div class="otherprojects">
<div class="otherprojects-item">
</div>
</div>&nbsp;
</body>
</html>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.otherprojects {
background-color: red;
width: 200px;
}
.otherprojects-item {
background-color: yellow;
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<div class="otherprojects">
<div class="otherprojects-item">
</div>
</div>
</body>
</html>