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

Unified Diff: third_party/WebKit/Source/web/tests/data/root-scroller-iframe.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-iframe.html
diff --git a/third_party/WebKit/Source/web/tests/data/root-scroller-iframe.html b/third_party/WebKit/Source/web/tests/data/root-scroller-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..ed95121ea4c592ae4c5f8a7d419f8cc72b71b474
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/root-scroller-iframe.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ ::-webkit-scrollbar {
+ width: 0px;
+ height: 0px;
+ }
+
+ body, html {
+ width: 100%;
+ height: 100%;
+ }
+
+ body {
+ margin: 0px;
+ }
+ </style>
+ </head>
+
+ <body>
+ <iframe src="root-scroller-child.html" id="iframe"></iframe>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698