| testRunner.waitUntilDone(); |
| testRunner.setCanOpenWindows(); |
| testRunner.setCloseRemainingWindowsWhenComplete(); |
| testRunner.overridePreference("WebKitUsesPageCachePreferenceKey", 1); |
| if (location.search == '?third') { |
| } else if (self == top) { |
| document.write(`<p>This tests navigating via an anchor element with a non-existent target name, which should create a new window.<br> |
| WebKit should not hit any assertions and alert "PASS".</p>`); |
| const frame = document.createElement('iframe'); |
| setTimeout(() => frame.src = '?second', 0); |
| setTimeout(() => history.back(), 0); |
| document.body.appendChild(frame); |
| if (location.search == '?first') { |
| if (localStorage.getItem('loaded')) { |
| localStorage.removeItem('loaded'); |
| setTimeout(() => document.querySelector('a').click(), 0); |
| localStorage.setItem('loaded', 'true'); |
| document.write(location.search); |
| document.write(` <a href="?third" target="unknownTarget">go</a>`); |