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

Unified Diff: third_party/WebKit/Source/web/tests/data/root-scroller-child.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, 8 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
Index: third_party/WebKit/Source/web/tests/data/root-scroller-child.html
diff --git a/third_party/WebKit/Source/web/tests/data/root-scroller-child.html b/third_party/WebKit/Source/web/tests/data/root-scroller-child.html
new file mode 100644
index 0000000000000000000000000000000000000000..d5fb02449995f8f2b8de16ca711ffc019c8f90cc
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/root-scroller-child.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ ::-webkit-scrollbar {
+ width: 0px;
+ height: 0px;
+ }
+
+ body, html {
+ width: 100%;
+ height: 100%;
+ }
+
+ body {
+ margin: 0px;
+ }
+
+ #container {
+ width: 200px;
+ height: 200px;
+ overflow: auto;
+ }
+
+ #spacer {
+ width: 400px;
+ height: 400px;
+ }
+ </style>
+ </head>
+
+ <body>
+ <div id="container">
+ <div id="spacer"></div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698