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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/vh-height-width-800-extra-wide.html

Issue 1612683002: Reland of Don't change layout size due to top control show/hide (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/data/vh-height-width-800.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <meta name="viewport" content="width=800">
6 <style>
7 body {
8 margin: 0px;
9 }
10
11 #abs {
12 position: absolute;
13 left: 0px;
14 top: 0px;
15 background: silver;
16 width: 100px;
17 height: 50vh;
18 }
19
20 #fixed {
21 position: fixed;
22 right: 0px;
23 top: 0px;
24 background: red;
25 width: 100px;
26 height: 50vh;
27 }
28
29 #spacer {
30 height: 1000px;
31 width: 1600px;
32 }
33 </style>
34 <head>
35
36 <body>
37 <div id="abs"></div>
38 <div id="fixed"></div>
39 <div id="spacer"></div>
40 </body>
41
42 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/data/vh-height-width-800.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698