| <!-- webkit-test-runner [ UsesBackForwardCache=true ] --> |
| testRunner.waitUntilDone(); |
| 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('form').submit(), 0); |
| localStorage.setItem('loaded', 'true'); |
| document.write(location.search); |
| document.write(` <form action="?third" method="post" target="unknownTarget"><input type="text" name="query"><input type="submit"></a>`); |