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

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

Issue 974783002: Match the Fullscreen spec's CSS as far as currently practical (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: disambiguate Fullscreen UA style sheet Created 5 years, 9 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 body { 5 body {
6 background-color: black; 6 background-color: black;
7 } 7 }
8 div { 8 div {
9 width: 200px; 9 width: 100%;
10 height: 100px; 10 height: 100%;
11 border: 4px solid darkgreen; 11 border: 4px solid darkgreen;
12 background-color: green; 12 background-color: green;
13 position: absolute; 13 position: absolute;
14 left: 50%; 14 box-sizing: border-box;
15 top: 50%; 15 top: 0px;
16 margin-left: -104px; 16 left: 0px;
17 margin-top: -54px;
18 } 17 }
19 </style> 18 </style>
20 </head> 19 </head>
21 <body> 20 <body>
22 <div></div> 21 <div></div>
23 </body> 22 </body>
24 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698