mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Move inline_block_min_width.html to wpt reftests.
This commit is contained in:
parent
293561a0c4
commit
dbbbac3da6
4 changed files with 25 additions and 1 deletions
|
@ -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",
|
||||
|
|
27
tests/wpt/mozilla/tests/css/inline_block_min_width.html
Normal file
27
tests/wpt/mozilla/tests/css/inline_block_min_width.html
Normal 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>
|
25
tests/wpt/mozilla/tests/css/inline_block_min_width_ref.html
Normal file
25
tests/wpt/mozilla/tests/css/inline_block_min_width_ref.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue