Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1955)

Side by Side Diff: LayoutTests/fullscreen/full-screen-placeholder-expected.html

Issue 457663002: Convert more fullscreen tests to reftests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: doctype matters for margins Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #float {
4 margin: 10px 0 0 10px;
5 height: 50px;
6 width: 50px;
7 float: left;
8 background-color: red;
9 }
10 #clear {
11 clear:left;
falken 2014/08/11 02:34:04 nit: insert space after :
philipj_slow 2014/08/11 11:22:08 Done.
12 }
13 #one {
14 background-color: lightblue;
15 float: left;
16 }
17 #two {
18 background-color: lightgreen;
19 }
20 </style>
21 <div>This layout test checks that the offset positions of the blue and green div s does not change when the red div enters full-screen mode.</div>
22 <div id="float"></div>
23 <div id="one">One</div>
24 <div id="clear"></div>
25 <span id="two">Two</span>
26 <div>END OF TEST</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698