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

Unified Diff: LayoutTests/fast/loader/scroll-position-restored-on-back-at-load-event.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/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 1b4cbc17f7fbc4e91d5752d7fd1d809f94e05d44..32ffa34dd390c7524a7f7654c6e46dd9011c8cc7 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 documentElement.scrollTop/Left properties are available by the time DOMContentLoaded event fires.');
+ description('Test ensures that body.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), documentElement.scrollTop/Left are set.
+ // Test: ensure that by the time DOMContenLoaded fires (after a back navigation), body.scrollTop/Left are set.
function init(evt) {
if (window.name == 'second/load') {
- shouldBe('document.documentElement.scrollTop', '2000');
- shouldBe('document.documentElement.scrollLeft', '1000');
+ shouldBe('document.body.scrollTop', '2000');
+ shouldBe('document.body.scrollLeft', '1000');
window.name = "";
if (window.testRunner)

Powered by Google App Engine
This is Rietveld 408576698