OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 Distributed under both the W3C Test Suite License [1] and the W3C |
| 4 3-clause BSD License [2]. To contribute to a W3C Test Suite, see the |
| 5 policies and contribution forms [3]. |
| 6 |
| 7 [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license |
| 8 [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license |
| 9 [3] http://www.w3.org/2004/10/27-testcases |
| 10 --> |
| 11 <html> |
| 12 <head> |
| 13 <title>Shadow DOM Test: A_08_01_02</title> |
| 14 <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> |
| 15 <link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#inert-h
tml-elements"> |
| 16 <meta name="assert" content="HTML Elements in shadow trees: link element must be
have as inert not as part of the document tree"> |
| 17 <script src="../../../../../resources/testharness.js"></script> |
| 18 <script src="../../../../../resources/testharnessreport.js"></script> |
| 19 <script src="../../testcommon.js"></script> |
| 20 <link rel="stylesheet" href="../../../../../resources/testharness.css"> |
| 21 </head> |
| 22 <body> |
| 23 <div id="log"></div> |
| 24 <script> |
| 25 test(unit(function (ctx) { |
| 26 |
| 27 var d = newRenderedHTMLDocument(ctx); |
| 28 |
| 29 var link = d.createElement('link'); |
| 30 link.setAttribute('href', 'testharness.css'); |
| 31 link.setAttribute('rel', 'stylesheet'); |
| 32 |
| 33 //create Shadow root |
| 34 var root = d.createElement('div'); |
| 35 d.body.appendChild(root); |
| 36 var s = root.createShadowRoot(); |
| 37 |
| 38 s.appendChild(link); |
| 39 |
| 40 assert_equals(d.styleSheets.length, 0, 'link element must behave as iner
t not as part of the document tree'); |
| 41 |
| 42 |
| 43 }), 'A_08_01_02_T01'); |
| 44 </script> |
| 45 </body> |
| 46 </html> |
OLD | NEW |