Move float_positioned_pseudo_stacking_context.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 3147a1e13a
commit bfbf881ca0
4 changed files with 25 additions and 1 deletions

View file

@ -50,7 +50,6 @@ flaky_cpu == append_style_a.html append_style_b.html
prefs:"layout.flex-direction.enabled,layout.flex.enabled" == flex_column_direction.html flex_column_direction_ref.html
prefs:"layout.flex.enabled" == flex_row_direction.html flex_row_direction_ref.html
== float_clearance_intrinsic_width_a.html float_clearance_intrinsic_width_ref.html
== float_positioned_pseudo_stacking_context.html float_positioned_pseudo_stacking_context_ref.html
== floated_negative_margins_a.html floated_negative_margins_ref.html
== font_size.html font_size_ref.html
# `?` and `#` in the name is a test for https://github.com/servo/servo/issues/3340

View file

@ -1,29 +0,0 @@
<!DOCTYPE html>
<style>
html, body {
margin: 0; padding: 0;
}
div {
width: 100px;
height: 100px;
}
#a {
position: absolute;
top: 20px;
left: 20px;
background: red;
}
#b {
float: left;
position: relative;
background: green;
}
</style>
<body>
<div id="a"></div>
<div id="b"></div>
</body>

View file

@ -1,28 +0,0 @@
<!DOCTYPE html>
<style>
html, body {
margin: 0; padding: 0;
}
div {
width: 100px;
height: 100px;
}
#a {
position: absolute;
top: 20px;
left: 20px;
background: red;
}
#b {
position: relative;
background: green;
}
</style>
<body>
<div id="a"></div>
<div id="b"></div>
</body>