Add a simple iframe reftest (disabled for now)

Disabled due to iframe crashiness.
This commit is contained in:
Keegan McAllister 2014-02-12 16:09:54 -08:00
parent 0d8e2be92b
commit bad4f16c3a
5 changed files with 15 additions and 12 deletions

View file

@ -1,7 +0,0 @@
<html>
<body>
<iframe src="simple_iframe_inner.html"
style="display:block; border: 1px; width: 400px; height: 400px">
</iframe>
</body>
</html>

View file

@ -1,5 +0,0 @@
<html>
<body>
Just a simple little iframe.
</body>
</html>

View file

@ -32,3 +32,4 @@
== background_style_attr.html background_ref.html
== background_external_stylesheet.html background_ref.html
== block_image.html 500x300_green.html
# == simple_iframe.html simple_iframe_ref.html -- disabled due to iframe crashiness

View file

@ -0,0 +1,7 @@
<html>
<body>
<iframe src="data:text/html,%3Cspan%3EJust%20a%20simple%20little%20iframe.%3C%2Fspan%3E"
style="display: block; border: 1px solid black; width: 500px; height: 300px; margin-left: 10px; margin-top: 20px;">
</iframe>
</body>
</html>

View file

@ -0,0 +1,7 @@
<html>
<body>
<div style="border: 1px solid black; width: 500px; height: 300px; margin-left: 10px; margin-top: 20px;">
<div style="margin: 8px; /* matches user-agent body */">Just a simple little iframe.</div>
</div>
</body>
</html>