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

Side by Side Diff: LayoutTests/fast/events/pagehide-xhr-open.html

Issue 14195011: Removed WONTFIX tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <script src="../js/resources/js-test-pre.js"></script>
3 <body>
4
5 <iframe src="resources/subframe-xmlhttprequest.html" id="a-frame"></iframe> <ifr ame src="resources/suspend-subframe-2.html" id="b-frame"></iframe>
6
7 <script type="text/javascript">
8 description('Tries to trigger an assert in xmlhttprequest during pagehide.');
9
10 if (window.testRunner)
11 testRunner.overridePreference('WebKitUsesPageCachePreferenceKey', 1);
12
13
14 onpageshow = function(event)
15 {
16 if (event.persisted) {
17 console.log('Restored page from page cache.');
18 if (!window.wasFinishJSTestCalled)
19 finishJSTest();
20 }
21 }
22
23 onload = function()
24 {
25 setTimeout(function() {
26 location.href = 'resources/pagehide-timeout-go-back.html';
27 }, 0);
28 }
29 var successfullyParsed = true;
30 var jsTestIsAsync = true;
31 </script>
32 <script src="../js/resources/js-test-post.js"></script>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698