Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / loader / dynamic-iframe-extra-back-forward-item.html
blobfa2e63d43c3ce319b82da9b5571b62ba321ed0b5
1 <script>
2 if (window.testRunner) {
3 testRunner.dumpAsText();
4 testRunner.dumpBackForwardList();
5 testRunner.waitUntilDone();
8 function loaded()
10 var f = document.createElement("iframe");
11 document.body.appendChild(f);
12 f.setAttribute('src', 'resources/notify-done.html');
14 </script>
15 <body onload="setTimeout('loaded()', 0);">
16 &lt;rdar://problem/8636239&gt; and https://bugs.webkit.org/show_bug.cgi?id=53785 - Extraneous back/forward entries with dynamically appended iframes.<br>
17 This page appends an iframe after onload. That iframe should *not* result in a new back/forward entry in the session history.<br>
18 </body>