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

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: address feedback 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>This tests that an element with a positive z-index appears behind the full screen element.
25 After entering full screen mode, the green box should not be obscured by th e red box.
26 Click <button>go full screen</button> to run the test.</div>
27 <div id="block2"></div>
28 <div id="block3">
29 <div id="block1"></div>
30 </div>
31 <div>END OF TEST</div>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-zIndex-after.html ('k') | LayoutTests/fullscreen/full-screen-zIndex-after-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698