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

Unified Diff: LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.html

Issue 1133693002: Update most LayoutTests to be agnostic to scrollTopLeftInterop mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tdresser cr feedback Created 5 years, 7 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/loader/scroll-position-restored-on-back-at-load-event.html
diff --git a/LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.html b/LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.html
index 32ffa34dd390c7524a7f7654c6e46dd9011c8cc7..9a5dd277661371325782ea924c4c408b4f1979a3 100644
--- a/LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.html
+++ b/LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.html
@@ -3,16 +3,16 @@
<head>
<script src="../../resources/js-test.js"></script>
<script>
- description('Test ensures that body.scrollTop/Left properties are available by the time DOMContentLoaded event fires.');
+ description('Test ensures that scrollingElement.scrollTop/Left properties are available by the time DOMContentLoaded event fires.');
// Navigation steps:
// 1- page gets first loaded and scrolled.
// 2- loaded page away and then 'back'.
- // Test: ensure that by the time DOMContenLoaded fires (after a back navigation), body.scrollTop/Left are set.
+ // Test: ensure that by the time DOMContenLoaded fires (after a back navigation), scrollingElement.scrollTop/Left are set.
function init(evt) {
if (window.name == 'second/load') {
- shouldBe('document.body.scrollTop', '2000');
- shouldBe('document.body.scrollLeft', '1000');
+ shouldBe('document.scrollingElement.scrollTop', '2000');
+ shouldBe('document.scrollingElement.scrollLeft', '1000');
window.name = "";
if (window.testRunner)

Powered by Google App Engine
This is Rietveld 408576698