Move li_absolute_containing_block_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-19 18:34:07 -04:00
parent 8c4269b5f2
commit 3abf4eb5d1
4 changed files with 25 additions and 1 deletions

View file

@ -851,6 +851,18 @@
"url": "/_mozilla/css/letter_spacing_a.html"
}
],
"css/li_absolute_containing_block_a.html": [
{
"path": "css/li_absolute_containing_block_a.html",
"references": [
[
"/_mozilla/css/li_absolute_containing_block_ref.html",
"=="
]
],
"url": "/_mozilla/css/li_absolute_containing_block_a.html"
}
],
"css/line_height_float_placement_a.html": [
{
"path": "css/line_height_float_placement_a.html",
@ -4152,6 +4164,18 @@
"url": "/_mozilla/css/letter_spacing_a.html"
}
],
"css/li_absolute_containing_block_a.html": [
{
"path": "css/li_absolute_containing_block_a.html",
"references": [
[
"/_mozilla/css/li_absolute_containing_block_ref.html",
"=="
]
],
"url": "/_mozilla/css/li_absolute_containing_block_a.html"
}
],
"css/line_height_float_placement_a.html": [
{
"path": "css/line_height_float_placement_a.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<link rel='match' href='li_absolute_containing_block_ref.html'>
<style>
body {
font-size: 64px;
}
li {
position: relative;
}
section {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: blue;
}
</style>
<li>X<section></section></li>

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<style>
body {
font-size: 64px;
}
div {
position: relative;
}
section {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: blue;
}
</style>
<div>X<section></section></div>