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

Unified Diff: LayoutTests/fast/dom/nodesFromRect/resources/child-frame-scrolled.html

Issue 1330113002: Rename WebSourceBuffer::abort into WebSourceBuffer::resetParserState (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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/nodesFromRect/resources/child-frame-scrolled.html
diff --git a/LayoutTests/fast/dom/nodesFromRect/resources/child-frame-scrolled.html b/LayoutTests/fast/dom/nodesFromRect/resources/child-frame-scrolled.html
new file mode 100644
index 0000000000000000000000000000000000000000..3a03a90189182abda2f2ae9d7714816673c18052
--- /dev/null
+++ b/LayoutTests/fast/dom/nodesFromRect/resources/child-frame-scrolled.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style type="text/css">
+ body { margin: 0px; }
+ #content {
+ width: 200px;
+ height: 1000px;
+ }
+</style>
+</head>
+<body>
+ <div id="content"></div>
+</body>
+
+<script>
+ document.scrollingElement.scrollTop = "400";
+ top.debug("iframe's scroll top is " + document.scrollingElement.scrollTop);
+ top.postMessage("subframe-loaded", "*");
+</script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698