| Index: LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007.html
|
| diff --git a/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007.html b/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c2b731a397c831ba417c5871303a8477e8e88db0
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/web-platform-tests/shadow-dom/shadow-trees/upper-boundary-encapsulation/test-007.html
|
| @@ -0,0 +1,75 @@
|
| +<!DOCTYPE html>
|
| +<!--
|
| +Distributed under both the W3C Test Suite License [1] and the W3C
|
| +3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
|
| +policies and contribution forms [3].
|
| +
|
| +[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
|
| +[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
|
| +[3] http://www.w3.org/2004/10/27-testcases
|
| + -->
|
| +<html>
|
| +<head>
|
| +<title>Shadow DOM Test: A_04_01_07</title>
|
| +<link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
|
| +<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#upper-boundary-encapsulation">
|
| +<meta name="assert" content="Upper-boundary encapsulation:The nodes with a unique id and named elements are addressable from any attributes of elements in the same shadow DOM subtree">
|
| +<script src="../../../../../resources/testharness.js"></script>
|
| +<script src="../../../../../resources/testharnessreport.js"></script>
|
| +<script src="../../testcommon.js"></script>
|
| +<link rel="stylesheet" href="../../../../../resources/testharness.css">
|
| +</head>
|
| +<body>
|
| +<div id="log"></div>
|
| +<script>
|
| +// check for label.control
|
| +test(function () {
|
| + var d = newHTMLDocument();
|
| + var div = d.createElement('div');
|
| + d.body.appendChild(div);
|
| + var s = div.createShadowRoot();
|
| +
|
| + var input = d.createElement('input');
|
| + input.setAttribute('type', 'text');
|
| + input.setAttribute('id', 'input_id');
|
| + d.body.appendChild(input);
|
| +
|
| + var label = d.createElement('label');
|
| + label.setAttribute('for', 'input_id');
|
| + s.appendChild(label);
|
| + s.appendChild(input);
|
| +
|
| + assert_equals(label.control, input, 'Elements in shadow DOM must be accessible from ' +
|
| + 'shadow document label.for attribute');
|
| +
|
| +}, 'A_04_01_07_T01');
|
| +
|
| +// check for elem.form associated elements
|
| +test(function () {
|
| +
|
| + HTML5_FORM_ASSOCIATED_ELEMENTS.forEach(function (tagName) {
|
| + d = newHTMLDocument();
|
| +
|
| + var form = d.createElement('form');
|
| + var el = d.createElement(tagName);
|
| +
|
| + d.body.appendChild(form);
|
| + d.body.appendChild(el);
|
| +
|
| + form.setAttribute('id', 'form_id');
|
| + el.setAttribute('form', 'form_id');
|
| +
|
| + div = d.createElement('div');
|
| + d.body.appendChild(div);
|
| +
|
| + var s = div.createShadowRoot();
|
| + s.appendChild(form);
|
| + s.appendChild(el);
|
| +
|
| + assert_equals(el.form, form, 'Elements in shadow DOM must be accessible from ' +
|
| + 'shadow document ' + tagName + '.form attribute');
|
| + });
|
| +}, 'A_04_01_07_T02');
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|