mirror of
https://github.com/servo/servo.git
synced 2025-09-30 16:49:16 +01:00
Move max_width_float_simple_a.html to wpt reftests.
This commit is contained in:
parent
9bd508de7e
commit
88a9b4fdd8
4 changed files with 25 additions and 1 deletions
|
@ -827,6 +827,18 @@
|
|||
"url": "/_mozilla/css/letter_spacing_a.html"
|
||||
}
|
||||
],
|
||||
"css/max_width_float_simple_a.html": [
|
||||
{
|
||||
"path": "css/max_width_float_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/max_width_float_simple_b.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/max_width_float_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/max_width_simple_a.html": [
|
||||
{
|
||||
"path": "css/max_width_simple_a.html",
|
||||
|
@ -4044,6 +4056,18 @@
|
|||
"url": "/_mozilla/css/letter_spacing_a.html"
|
||||
}
|
||||
],
|
||||
"css/max_width_float_simple_a.html": [
|
||||
{
|
||||
"path": "css/max_width_float_simple_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/max_width_float_simple_b.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/max_width_float_simple_a.html"
|
||||
}
|
||||
],
|
||||
"css/max_width_simple_a.html": [
|
||||
{
|
||||
"path": "css/max_width_simple_a.html",
|
||||
|
|
25
tests/wpt/mozilla/tests/css/max_width_float_simple_a.html
Normal file
25
tests/wpt/mozilla/tests/css/max_width_float_simple_a.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<html>
|
||||
<head>
|
||||
<link rel='match' href='max_width_float_simple_b.html'>
|
||||
<style>
|
||||
#first {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border: solid 1px;
|
||||
}
|
||||
#float {
|
||||
float: left;
|
||||
height: 50px;
|
||||
width: 50px;
|
||||
max-width: 40px;
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="first">
|
||||
<div id="float">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
22
tests/wpt/mozilla/tests/css/max_width_float_simple_b.html
Normal file
22
tests/wpt/mozilla/tests/css/max_width_float_simple_b.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<html>
|
||||
<head>
|
||||
<style>
|
||||
#first {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border: solid 1px;
|
||||
}
|
||||
#block {
|
||||
height: 50px;
|
||||
width: 40px;
|
||||
background: green;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="first">
|
||||
<div id="block">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue