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

Unified Diff: LayoutTests/fast/dom/Element/resources/scrollable-iframe-quirks.html

Issue 25039006: document.documentElement.scrollTop/Left is zero (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: document.documentElement.scrollTop/Left is zero Created 7 years, 3 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: LayoutTests/fast/dom/Element/resources/scrollable-iframe-quirks.html
diff --git a/LayoutTests/fast/dom/Element/resources/scrollable-iframe-quirks.html b/LayoutTests/fast/dom/Element/resources/scrollable-iframe-quirks.html
new file mode 100644
index 0000000000000000000000000000000000000000..ba02ed23928ec748283541f982a76c2ee9652962
--- /dev/null
+++ b/LayoutTests/fast/dom/Element/resources/scrollable-iframe-quirks.html
@@ -0,0 +1,17 @@
+<head>
+ <style>
+ div {
+ height: 9999px;
+ width:9999px;
Julien - ping for review 2013/09/30 23:39:57 Nit: space.
+ }
+ </style>
+ <script>
+ function scroll() {
+ window.scrollTo(4000,5000);
+ parent.verifyTest()
+ }
+ </script>
+</head>
+<body onload="scroll()">
+ <div></div>
+</body>

Powered by Google App Engine
This is Rietveld 408576698