Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / imported / web-platform-tests / shadow-dom / user-interaction / ranges-and-selections / test-002.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_07_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/#ranges-and-selection">
16 <meta name="assert" content="User Interaction: The getSelection() method of the shadow root object must return the current selection in this shadow 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         var d = newRenderedHTMLDocument(ctx);
27
28         var host = d.createElement('div');
29         d.body.appendChild(host);
30         var s = host.createShadowRoot();
31
32         var span = d.createElement('span');
33         span.innerHTML = 'Some text';
34         s.appendChild(span);
35
36         var range = d.createRange();
37         range.setStart(span.firstChild, 0);
38         range.setEnd(span.firstChild, 3);
39
40         var selection = window.getSelection();
41     selection.removeAllRanges();
42     selection.addRange(range);
43
44     var sl = s.getSelection();
45     assert_equals(sl.toString(), 'Som', 'The getSelection() method of the shadow root object must return ' +
46                 'the current selection in this shadow tree');
47
48 }), 'A_07_01_02_T01');
49
50
51 //test distributed nodes
52 test(unit(function (ctx) {
53         var d = newRenderedHTMLDocument(ctx);
54
55         var host = d.createElement('div');
56         d.body.appendChild(host);
57
58         var span = d.createElement('span');
59         span.innerHTML = 'Some text';
60         host.appendChild(span);
61
62         var s = host.createShadowRoot();
63         s.innerHTML = '<content select="span"></content>';
64
65         var range = d.createRange();
66         range.setStart(span.firstChild, 0);
67         range.setEnd(span.firstChild, 3);
68
69         var selection = window.getSelection();
70     selection.removeAllRanges();
71     selection.addRange(range);
72
73     var sl = s.getSelection();
74     assert_equals(sl.toString(), 'Som', 'The getSelection() method of the shadow root object must return ' +
75                 'the current selection in this shadow tree');
76
77 }), 'A_07_07_02_T02');
78 </script>
79 </body>
80 </html>