mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Move overflow_position_abs_inline_block.html to wpt reftests.
This commit is contained in:
parent
60f9e64ab6
commit
0847a8827e
4 changed files with 25 additions and 1 deletions
|
@ -683,6 +683,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/overflow_position_abs_inline_block.html": [
|
||||
{
|
||||
"path": "css/overflow_position_abs_inline_block.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/overflow_position_abs_inline_block_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/overflow_position_abs_inline_block.html"
|
||||
}
|
||||
],
|
||||
"css/overflow_position_abs_simple_a.html": [
|
||||
{
|
||||
"path": "css/overflow_position_abs_simple_a.html",
|
||||
|
@ -3384,6 +3396,18 @@
|
|||
"url": "/_mozilla/css/flex_nochild.html"
|
||||
}
|
||||
],
|
||||
"css/overflow_position_abs_inline_block.html": [
|
||||
{
|
||||
"path": "css/overflow_position_abs_inline_block.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/overflow_position_abs_inline_block_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/overflow_position_abs_inline_block.html"
|
||||
}
|
||||
],
|
||||
"css/overflow_position_abs_simple_a.html": [
|
||||
{
|
||||
"path": "css/overflow_position_abs_simple_a.html",
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
<link rel='match' href='overflow_position_abs_inline_block_ref.html'>
|
||||
<style>
|
||||
#d1 {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
position: absolute;
|
||||
background: green;
|
||||
}
|
||||
#d2 {
|
||||
display: inline-block;
|
||||
width: 100px;
|
||||
background: red;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="position:fixed"></div>
|
||||
<div id="d1">
|
||||
<div id="d2"></div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
<style>
|
||||
#d1 {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
position: absolute;
|
||||
background: green;
|
||||
}
|
||||
#d2 {
|
||||
display: block;
|
||||
width: 100px;
|
||||
background: red;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
top: 20px;
|
||||
left: 20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="position:fixed"></div>
|
||||
<div id="d1">
|
||||
<div id="d2"></div>
|
||||
</div>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue