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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/root-scroller.html

Issue 1913843004: Implementing document.setRootScroller API for main thread scrolling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@overscrollController
Patch Set: Rebase and remove whitespace in Document.idl Created 4 years, 7 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 <head>
4 <style>
5 ::-webkit-scrollbar {
6 width: 0px;
7 height: 0px;
8 }
9
10 body, html {
11 width: 100%;
12 height: 100%;
13 }
14
15 body {
16 margin: 0px;
17 }
18
19 .spacer {
20 width: 1000px;
21 height: 1000px;
22 }
23
24 #empty {
25 width: 0px;
26 height: 0px;
27 }
28
29 #container {
30 width: 100%;
31 height: 100%;
32 overflow: auto;
33 }
34 </style>
35 </head>
36
37 <body>
38 <div id="container">
39 <div class="spacer">
40 <span id="nonBlock">Blink</span>
41 <div id="empty"></div>
42 </div>
43 </div>
44 <div class="spacer"></div>
45 </body>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698