auto merge of #4934 : glennw/servo/fix-1248, r=pcwalton

This commit is contained in:
bors-servo 2015-02-16 14:06:52 -07:00
commit 6d2e840bf4
7 changed files with 29 additions and 4 deletions

View file

@ -125,6 +125,7 @@ fragment=top != ../html/acid2.html acid2_ref.html
== background_image_position_a.html background_image_position_ref.html
== multiple_css_class_a.html multiple_css_class_b.html
== iframe/bg_color.html iframe/bg_color_ref.html
== iframe/simple.html iframe/simple_ref.html
== iframe/simple_inline_default.html iframe/simple_inline_default_ref.html
== iframe/simple_inline_width.html iframe/simple_inline_width_ref.html

View file

@ -0,0 +1,8 @@
<html>
<body style="background-color: blue; margin: 0;">
<div style="margin: 20px;">
<iframe src="about:blank" style="border: 0; background-color: green;">
</iframe>
</div>
</body>
</html>

View file

@ -0,0 +1,6 @@
<html>
<body style="background-color: blue; margin: 0;">
<div style="width: 300px; height: 150px; margin: 20px; background-color: green;">
</div>
</body>
</html>