OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <link rel=help href="https://html.spec.whatwg.org/multipage/syntax.html#parsing-
main-inhead"> |
| 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <body> |
| 6 <script> |
| 7 var test = async_test("A frameset tag inside template should be simply ignored."
); |
| 8 |
| 9 var iframe = document.createElement("iframe"); |
| 10 iframe.onload = function() { |
| 11 document.body.removeChild(iframe); |
| 12 test.done(); |
| 13 }; |
| 14 iframe.src = './resources/frameset-inside-template.html'; |
| 15 document.body.appendChild(iframe); |
| 16 </script> |
OLD | NEW |