Move min_width_float_simple_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 88a9b4fdd8
commit 06c7ecc04b
4 changed files with 25 additions and 1 deletions

View file

@ -863,6 +863,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/min_width_float_simple_a.html": [
{
"path": "css/min_width_float_simple_a.html",
"references": [
[
"/_mozilla/css/min_width_float_simple_b.html",
"=="
]
],
"url": "/_mozilla/css/min_width_float_simple_a.html"
}
],
"css/min_width_simple_a.html": [
{
"path": "css/min_width_simple_a.html",
@ -4092,6 +4104,18 @@
"url": "/_mozilla/css/min_max_height_a.html"
}
],
"css/min_width_float_simple_a.html": [
{
"path": "css/min_width_float_simple_a.html",
"references": [
[
"/_mozilla/css/min_width_float_simple_b.html",
"=="
]
],
"url": "/_mozilla/css/min_width_float_simple_a.html"
}
],
"css/min_width_simple_a.html": [
{
"path": "css/min_width_simple_a.html",

View file

@ -0,0 +1,26 @@
<html>
<head>
<link rel='match' href='min_width_float_simple_b.html'>
<style>
#first {
position: relative;
width: 100px;
height: 100px;
border: solid 1px;
}
#float {
float: left;
height: 50px;
width: 50%;
min-width: 60px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="float">
</div>
</div>
</body>
</html>

View file

@ -0,0 +1,22 @@
<html>
<head>
<style>
#first {
width: 100px;
height: 100px;
border: solid 1px;
}
#block {
height: 50px;
width: 60px;
background: green;
}
</style>
</head>
<body>
<div id="first">
<div id="block">
</div>
</div>
</body>
</html>