Move position_fixed_tile_edge.html, position_fixed_tile_edge_2.html, and position_fixed_tile_edge_3.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-21 10:05:38 +01:00
parent 585d2d5c8c
commit ba62957368
6 changed files with 75 additions and 3 deletions

View file

@ -3295,6 +3295,42 @@
"url": "/_mozilla/css/position_fixed_overflow_a.html"
}
],
"css/position_fixed_tile_edge.html": [
{
"path": "css/position_fixed_tile_edge.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge.html"
}
],
"css/position_fixed_tile_edge_2.html": [
{
"path": "css/position_fixed_tile_edge_2.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge_2.html"
}
],
"css/position_fixed_tile_edge_3.html": [
{
"path": "css/position_fixed_tile_edge_3.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge_3.html"
}
],
"css/position_relative_a.html": [
{
"path": "css/position_relative_a.html",
@ -8628,6 +8664,42 @@
"url": "/_mozilla/css/position_fixed_overflow_a.html"
}
],
"css/position_fixed_tile_edge.html": [
{
"path": "css/position_fixed_tile_edge.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge.html"
}
],
"css/position_fixed_tile_edge_2.html": [
{
"path": "css/position_fixed_tile_edge_2.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge_2.html"
}
],
"css/position_fixed_tile_edge_3.html": [
{
"path": "css/position_fixed_tile_edge_3.html",
"references": [
[
"/_mozilla/css/position_fixed_tile_edge_ref.html",
"=="
]
],
"url": "/_mozilla/css/position_fixed_tile_edge_3.html"
}
],
"css/position_relative_a.html": [
{
"path": "css/position_relative_a.html",

View file

@ -0,0 +1,6 @@
<html>
<link rel=match href=position_fixed_tile_edge_ref.html>
<body>
<div style="background: green; position: fixed; top: 0px; left: 512px; width: 20px; height: 20px;"></div>
</body>
</html>

View file

@ -0,0 +1,11 @@
<html>
<link rel=match href=position_fixed_tile_edge_ref.html>
<body>
<div style="position: absolute; top: 0px; left: 512px;">
<div style="position: absolute; background: green; width: 20px; height: 20px;"></div>
<!-- This position:fixed sibling should force its sibling to be layerized. -->
<div style="position: fixed;"></div>
</div>
</body>
</html>

View file

@ -0,0 +1,12 @@
<html>
<link rel=match href=position_fixed_tile_edge_ref.html>
<body>
<div style="position: absolute; top: 0px; left: 0px;">
<div style="position: absolute; background: green; top: 0; margin-left: 512px; width: 20px; height: 20px;"></div>
<!-- This position:fixed sibling should force its sibling to be layerized. -->
<div style="position: fixed;"></div>
</div>
</body>
</html>

View file

@ -0,0 +1,5 @@
<html>
<body>
<div style="background: green; position: absolute; top: 0px; left: 512px; width: 20px; height: 20px;"></div>
</body>
</html>