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_04_01_07</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/#upper-b
oundary-encapsulation"> |
| 16 <meta name="assert" content="Upper-boundary encapsulation:The nodes with a uniqu
e id and named elements are addressable from any attributes of elements in the s
ame shadow DOM subtree"> |
| 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 // check for label.control |
| 26 test(function () { |
| 27 var d = newHTMLDocument(); |
| 28 var div = d.createElement('div'); |
| 29 d.body.appendChild(div); |
| 30 var s = div.createShadowRoot(); |
| 31 |
| 32 var input = d.createElement('input'); |
| 33 input.setAttribute('type', 'text'); |
| 34 input.setAttribute('id', 'input_id'); |
| 35 d.body.appendChild(input); |
| 36 |
| 37 var label = d.createElement('label'); |
| 38 label.setAttribute('for', 'input_id'); |
| 39 s.appendChild(label); |
| 40 s.appendChild(input); |
| 41 |
| 42 assert_equals(label.control, input, 'Elements in shadow DOM must be accessib
le from ' + |
| 43 'shadow document label.for attribute'); |
| 44 |
| 45 }, 'A_04_01_07_T01'); |
| 46 |
| 47 // check for elem.form associated elements |
| 48 test(function () { |
| 49 |
| 50 HTML5_FORM_ASSOCIATED_ELEMENTS.forEach(function (tagName) { |
| 51 d = newHTMLDocument(); |
| 52 |
| 53 var form = d.createElement('form'); |
| 54 var el = d.createElement(tagName); |
| 55 |
| 56 d.body.appendChild(form); |
| 57 d.body.appendChild(el); |
| 58 |
| 59 form.setAttribute('id', 'form_id'); |
| 60 el.setAttribute('form', 'form_id'); |
| 61 |
| 62 div = d.createElement('div'); |
| 63 d.body.appendChild(div); |
| 64 |
| 65 var s = div.createShadowRoot(); |
| 66 s.appendChild(form); |
| 67 s.appendChild(el); |
| 68 |
| 69 assert_equals(el.form, form, 'Elements in shadow DOM must be accessible
from ' + |
| 70 'shadow document ' + tagName + '.form attribute'); |
| 71 }); |
| 72 }, 'A_04_01_07_T02'); |
| 73 </script> |
| 74 </body> |
| 75 </html> |
OLD | NEW |