OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>HTML Templates: The template contents owner document (there's browsing co
ntext)</title> |
| 5 <meta name="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> |
| 6 <meta name="assert" content="If template's enclosing document has browsing conte
xt, then templates content owner must be a new Document node without browsing co
ntext"> |
| 7 <link rel="help" href="http://www.w3.org/TR/2013/WD-html-templates-20130214/#def
initions"> |
| 8 <script src="../../../../../../../resources/testharness.js"></script> |
| 9 <script src="../../../../../../../resources/testharnessreport.js"></script> |
| 10 <script src='../testcommon.js'></script> |
| 11 <link rel="stylesheet" href="../../../../../../../resources/testharness.css"> |
| 12 </head> |
| 13 <body> |
| 14 <div id="log"></div> |
| 15 <script type="text/javascript"> |
| 16 |
| 17 |
| 18 testInIFrame(null, function(context) { |
| 19 var doc = context.iframes[0].contentDocument; |
| 20 var template = doc.createElement('template'); |
| 21 |
| 22 var div = doc.createElement('div'); |
| 23 div.setAttribute('id', 'div1'); |
| 24 div.innerText = 'Some text'; |
| 25 |
| 26 template.appendChild(div); |
| 27 |
| 28 doc.body.appendChild(template); |
| 29 |
| 30 // doc has browsing context. There should be another document as a template |
| 31 // content owner |
| 32 assert_not_equals(template.content.ownerDocument, doc, 'Wrong template owner
document'); |
| 33 |
| 34 }, 'The template contents owner document must be different from template owner d
ocument,' + |
| 35 ' which has browsing context. Template element is created by createElement(
)'); |
| 36 |
| 37 |
| 38 |
| 39 testInIFrame(null, function(context) { |
| 40 var doc = context.iframes[0].contentDocument; |
| 41 |
| 42 doc.body.innerHTML = '<template><div>some text</div></template>'; |
| 43 |
| 44 var template = doc.querySelector('template'); |
| 45 |
| 46 // doc has browsing context. There should be another document as a template |
| 47 // content owner |
| 48 assert_not_equals(template.content.ownerDocument, doc, 'Wrong template owner
document'); |
| 49 |
| 50 }, 'The template contents owner document must be different from template owner d
ocument,' + |
| 51 ' which has browsing context. Template element is created via innerHTML'); |
| 52 |
| 53 |
| 54 |
| 55 testInIFrame('../resources/template-contents.html', function(context) { |
| 56 var doc = context.iframes[0].contentDocument; |
| 57 |
| 58 var template = doc.querySelector('template'); |
| 59 |
| 60 // doc has browsing context. There should be another document as a template |
| 61 // content owner |
| 62 assert_not_equals(template.content.ownerDocument, doc, 'Wrong template owner
document'); |
| 63 |
| 64 }, 'The template contents owner document must be different from template owner d
ocument,' + |
| 65 ' which has browsing context. Template element is created by HTML parser'); |
| 66 |
| 67 </script> |
| 68 </body> |
| 69 </html> |
OLD | NEW |