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

Unified Diff: LayoutTests/fast/scrolling/fractional-scroll-offset-document.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/scrolling/fractional-scroll-offset-document.html
diff --git a/LayoutTests/fast/scrolling/fractional-scroll-offset-document.html b/LayoutTests/fast/scrolling/fractional-scroll-offset-document.html
index 0f8a184164d43bb2c83d082bcada3551cb2814bd..a37c6717080df4e9d86b53ff1f7e1944e714cdaa 100644
--- a/LayoutTests/fast/scrolling/fractional-scroll-offset-document.html
+++ b/LayoutTests/fast/scrolling/fractional-scroll-offset-document.html
@@ -14,8 +14,8 @@ function checkScrollOffset(offset_x, offset_y)
offset_x = Math.floor(offset_x);
offset_y = Math.floor(offset_y);
}
- shouldBeCloseTo('document.documentElement.scrollTop', offset_y, floatPrecision);
- shouldBeCloseTo('document.documentElement.scrollLeft', offset_x, floatPrecision);
+ shouldBeCloseTo('document.body.scrollTop', offset_y, floatPrecision);
+ shouldBeCloseTo('document.body.scrollLeft', offset_x, floatPrecision);
}
function scroll()

Powered by Google App Engine
This is Rietveld 408576698