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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/percent-height.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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3
4 <head>
5 <style>
6 #abs {
7 position: absolute;
8 left: 0px;
9 top: 0px;
10 background: silver;
11 width: 100px;
12 height: 50%;
13 }
14
15 #fixed {
16 position: fixed;
17 right: 0px;
18 top: 0px;
19 background: red;
20 width: 100px;
21 height: 50%;
22 }
23
24 #spacer {
25 height: 1000px;
26 }
27 </style>
28 <head>
29
30 <body>
31 <div id="abs"></div>
32 <div id="fixed"></div>
33 <div id="spacer"></div>
34 </body>
35
36 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/TopControlsTest.cpp ('k') | third_party/WebKit/Source/web/tests/data/vh-height.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698