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

Unified Diff: LayoutTests/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html

Issue 891523002: ScrollTopLeftInterop should not be marked experimental (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: updates Created 5 years, 11 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/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html
diff --git a/LayoutTests/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html b/LayoutTests/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html
index bfffde8b3569860e2344c75d4c94b5175bf152ef..5f6fc0f276b6f0b410fdb8b1612fb4b28aefa740 100644
--- a/LayoutTests/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html
+++ b/LayoutTests/fast/events/touch/gesture/touch-gesture-fully-scrolled-iframe-propagates.html
@@ -72,10 +72,10 @@ function firstGestureScroll()
var amountToScroll = iframeBody.scrollHeight - iframe.clientHeight;
- iframeDocumentElement.scrollTop = amountToScroll;
+ iframeBody.scrollTop = amountToScroll;
// Sanity - make sure the iframe is actually fully scrolled
- shouldBe('iframeBody.scrollHeight - iframeDocumentElement.scrollTop', 'iframe.clientHeight');
+ shouldBe('iframeBody.scrollHeight - iframeBody.scrollTop', 'iframe.clientHeight');
eventSender.gestureScrollBegin(10, 72);
// Prevent scroll to propagate by passing true for third parameter

Powered by Google App Engine
This is Rietveld 408576698