| testRunner.waitUntilDone(); |
| // One iframe's popstate handler removes another iframe from the |
| // document during a history navigation that affects both frames. The |
| // history navigation selects the same document in both frames. |
| window.onload = function () { |
| frames[0].history.pushState("first", "first"); |
| frames[0].onpopstate = function () { |
| document.body.innerHTML = "TEST PASSED"; |
| frames[1].history.pushState("second", "second"); |
| <iframe src="resources/empty-subframe.html"></iframe> |
| <iframe src="resources/empty-subframe.html"></iframe> |