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

Side by Side Diff: LayoutTests/fast/dom/Window/window-appendages-cleared.html

Issue 1239463005: Replace history.options with history.scrollRestoration attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Move setScrollRestorationType to History Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <body onload="test()"> 2 <body onload="test()">
3 <script type="text/javascript"> 3 <script type="text/javascript">
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.waitUntilDone(); 5 testRunner.waitUntilDone();
6 6
7 function test() 7 function test()
8 { 8 {
9 history.go = "LEFTOVER"; 9 history.go = "LEFTOVER";
10 history.length = "LEFTOVER"; 10 history.length = "LEFTOVER";
11 history.back = "LEFTOVER"; 11 history.back = "LEFTOVER";
12 history.forward = "LEFTOVER"; 12 history.forward = "LEFTOVER";
13 history.randomProperty = "LEFTOVER"; 13 history.randomProperty = "LEFTOVER";
14 history.options = "LEFTOVER";
15 14
16 location.assign = "LEFTOVER"; 15 location.assign = "LEFTOVER";
17 location.reload = "LEFTOVER"; 16 location.reload = "LEFTOVER";
18 location.toString = "LEFTOVER"; 17 location.toString = "LEFTOVER";
19 location.replace = "LEFTOVER"; 18 location.replace = "LEFTOVER";
20 location.host = "LEFTOVER"; 19 location.host = "LEFTOVER";
21 location.pathname = "LEFTOVER"; 20 location.pathname = "LEFTOVER";
22 location.port = "LEFTOVER"; 21 location.port = "LEFTOVER";
23 location.href = "LEFTOVER"; 22 location.href = "LEFTOVER";
24 location.search = "LEFTOVER"; 23 location.search = "LEFTOVER";
(...skipping 13 matching lines...) Expand all
38 statusbar.randomProperty = "LEFTOVER"; 37 statusbar.randomProperty = "LEFTOVER";
39 toolbar.visible = "LEFTOVER"; 38 toolbar.visible = "LEFTOVER";
40 toolbar.randomProperty = "LEFTOVER"; 39 toolbar.randomProperty = "LEFTOVER";
41 event.randomProperty = "LEFTOVER"; 40 event.randomProperty = "LEFTOVER";
42 41
43 location = 'resources/window-appendages-cleared-results.html'; 42 location = 'resources/window-appendages-cleared-results.html';
44 } 43 }
45 </script> 44 </script>
46 </body> 45 </body>
47 </html> 46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698