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 |