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

Side by Side Diff: LayoutTests/fast/loader/api-test-go-to-current-back-forward-item.html-disabled

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 <script>
2 if (window.testRunner) {
3 testRunner.waitUntilDone();
4 testRunner.dumpAsText();
5 testRunner.dumpFrameLoadCallbacks();
6 if (sessionStorage.api_goto_current_bf_item) {
7 delete sessionStorage.api_goto_current_bf_item;
8 testRunner.notifyDone();
9 }
10 }
11
12 function loaded()
13 {
14 if (window.testRunner) {
15 sessionStorage.api_goto_current_bf_item = true;
16 testRunner.apiTestGoToCurrentBackForwardItem();
17 }
18 }
19
20 </script>
21 <body onload="setTimeout('loaded();', 0);">
22 <pre>This is an API test that will only work under DumpRenderTree. It tests usin g the WebKit api [WebView goToBackForwardItem:] to go to the current item. This needs to actually perform a "real" load, and not be treated as a same-document n avigation.</pre>
23 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698