Index: LayoutTests/fullscreen/full-screen-placeholder-expected.html |
diff --git a/LayoutTests/fullscreen/full-screen-placeholder-expected.html b/LayoutTests/fullscreen/full-screen-placeholder-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fbd66a17e1de569f02232596d41ec3264944749d |
--- /dev/null |
+++ b/LayoutTests/fullscreen/full-screen-placeholder-expected.html |
@@ -0,0 +1,26 @@ |
+<!DOCTYPE html> |
+<style> |
+#float { |
+ margin: 10px 0 0 10px; |
+ height: 50px; |
+ width: 50px; |
+ float: left; |
+ background-color: red; |
+} |
+#clear { |
+ clear:left; |
falken
2014/08/11 02:34:04
nit: insert space after :
philipj_slow
2014/08/11 11:22:08
Done.
|
+} |
+#one { |
+ background-color: lightblue; |
+ float: left; |
+} |
+#two { |
+ background-color: lightgreen; |
+} |
+</style> |
+<div>This layout test checks that the offset positions of the blue and green divs does not change when the red div enters full-screen mode.</div> |
+<div id="float"></div> |
+<div id="one">One</div> |
+<div id="clear"></div> |
+<span id="two">Two</span> |
+<div>END OF TEST</div> |