Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / imported / web-platform-tests / shadow-dom / elements-and-dom-objects / extensions-to-element-interface / methods / test-003.html
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_10_02_02_03</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/#shadow-aware-methods">
16 <meta name="assert" content="Extensions to Element Interface: createShadowRoot method">
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 host = d.createElement('div');
30     d.body.appendChild(host);
31
32     var span = d.createElement('span');
33     span.setAttribute('id', 'sp0');
34     span.innerHTML = 'Some text';
35     host.appendChild(span);
36
37     //old tree
38     var s1 = host.createShadowRoot();
39     s1.innerHTML = '<span id="sp1">Span 1</span>';
40     //young tree
41     var s2 = host.createShadowRoot();
42     s2.innerHTML = '<span id="sp2">Span 2</span>';
43
44     // span should become invisible as shadow root content
45     assert_equals(span.offsetTop, 0, 'Point 1:createShadowRoot() method should add ' +
46                 'the ShadowRoot object at the top of the tree stack of its host');
47     assert_equals(s1.querySelector('#sp1').offsetTop, 0, 'Point 2:createShadowRoot() method should add ' +
48                 'the ShadowRoot object at the top of the tree stack of its host');
49     assert_true(s2.querySelector('#sp2').offsetTop > 0, 'Point 3:createShadowRoot() method should add ' +
50                 'the ShadowRoot object at the top of the tree stack of its host');
51
52
53 }), 'A_10_02_02_03_T01');
54 </script>
55 </body>
56 </html>