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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector-protocol/emulation/forced-viewport-far-expected.html

Issue 2237433004: Adds DevTools commands for forced viewport override. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adress Dmitry's comments + sync. Created 4 years, 2 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 <html>
2 <head>
3
4 <style>
5 html {
6 overflow: hidden;
7 }
8
9 body {
10 margin: 0;
11 min-height: 1000px;
12 overflow: hidden;
13 }
14
15 #far {
16 position: absolute;
17 left: 0px;
18 top: 0px;
19 width: 200px;
20 height: 200px;
21 background-color: green;
22 }
23 </style>
24
25 </head>
26 <body>
27 <div id="far"></div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698