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

Side by Side Diff: LayoutTests/fullscreen/full-screen-zIndex-after-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 #block1 {
4 width: 200px;
5 height: 100px;
6 border: 4px solid darkgreen;
7 background-color: green;
8 }
9 #block2 {
10 width: 100px;
11 height: 50px;
12 border: 4px solid darkred;
13 background-color: red;
14 z-index: 200;
15 position: relative;
16 left: 50px;
17 top: 25px;
18 }
19 #block3 {
20 z-index: 500;
21 position: relative;
22 }
23 </style>
24 <div id="block2"></div>
25 <div id="block3">
26 <div id="block1"></div>
27 </div>
28 <div>END OF TEST</div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698