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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/tests/data/vh-height-width-800-extra-wide.html
diff --git a/third_party/WebKit/Source/web/tests/data/vh-height-width-800-extra-wide.html b/third_party/WebKit/Source/web/tests/data/vh-height-width-800-extra-wide.html
new file mode 100644
index 0000000000000000000000000000000000000000..125df0d5930b8ec4ccf8a05cbb3a083be5dd877a
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/vh-height-width-800-extra-wide.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <meta name="viewport" content="width=800">
+ <style>
+ body {
+ margin: 0px;
+ }
+
+ #abs {
+ position: absolute;
+ left: 0px;
+ top: 0px;
+ background: silver;
+ width: 100px;
+ height: 50vh;
+ }
+
+ #fixed {
+ position: fixed;
+ right: 0px;
+ top: 0px;
+ background: red;
+ width: 100px;
+ height: 50vh;
+ }
+
+ #spacer {
+ height: 1000px;
+ width: 1600px;
+ }
+ </style>
+<head>
+
+<body>
+ <div id="abs"></div>
+ <div id="fixed"></div>
+ <div id="spacer"></div>
+</body>
+
+</html>
« 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