Move inline_block_min_width.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 293561a0c4
commit dbbbac3da6
4 changed files with 25 additions and 1 deletions

View file

@ -695,6 +695,18 @@
"url": "/_mozilla/css/inline_block_img_a.html"
}
],
"css/inline_block_min_width.html": [
{
"path": "css/inline_block_min_width.html",
"references": [
[
"/_mozilla/css/inline_block_min_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_block_min_width.html"
}
],
"css/inline_block_overflow.html": [
{
"path": "css/inline_block_overflow.html",
@ -4212,6 +4224,18 @@
"url": "/_mozilla/css/inline_block_img_a.html"
}
],
"css/inline_block_min_width.html": [
{
"path": "css/inline_block_min_width.html",
"references": [
[
"/_mozilla/css/inline_block_min_width_ref.html",
"=="
]
],
"url": "/_mozilla/css/inline_block_min_width.html"
}
],
"css/inline_block_overflow.html": [
{
"path": "css/inline_block_overflow.html",

View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='inline_block_min_width_ref.html'>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
div {
display: inline-block;
min-width: 200px;
width: 100px;
height: 100px;
}
.red {
background-color: red;
}
.green {
background-color: green;
}
</style>
</head>
<body>
<div class="red"></div><div class="green"></div>
</body>
</html>

View file

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
div {
display: inline-block;
width: 200px;
height: 100px;
}
.red {
background-color: red;
}
.green {
background-color: green;
}
</style>
</head>
<body>
<div class="red"></div><div class="green"></div>
</body>
</html>