OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <html> |
| 3 <script src = "/resources/testharness.js"></script> |
| 4 <script src = "/resources/testharness-helpers.js"></script> |
| 5 <script src = "/resources/testharnessreport.js"></script> |
| 6 <body> |
| 7 <script> |
| 8 |
| 9 test(() => { |
| 10 let o = new TestObject; |
| 11 assert_equals(o.getScriptStateURL(), location.href); |
| 12 }, 'new TestObject'); |
| 13 |
| 14 promise_test(() => { |
| 15 let iframe = document.createElement('iframe'); |
| 16 iframe.src = 'resources/iframe.html'; |
| 17 return new Promise(resolve => { |
| 18 iframe.onload = resolve; |
| 19 document.body.appendChild(iframe); |
| 20 }).then(() => { |
| 21 let o = new iframe.contentWindow.TestObject; |
| 22 assert_equals(o.getScriptStateURL(), location.href); |
| 23 }); |
| 24 }, 'new iframe.contentWindow.TestObject'); |
| 25 |
| 26 done(); |
| 27 </script> |
| 28 </body> |
| 29 </html> |
OLD | NEW |