0036ef7f0fc31c5a0232afa44c9f1e193163b251
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / w3c / web-platform-tests / shadow-dom / events / events-that-are-always-stopped / test-006.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_05_04_06</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/#events-that-are-always-stopped">
16 <meta name="assert" content="The following events must always be stopped at the nearest shadow boundary: abort, error, select, change, load, reset, resize, scroll, selectstart">
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 var A_05_04_06_T01 = async_test('A_05_04_06_T01');
26
27 A_05_04_06_T01.step(unit(function (ctx) {
28
29     var d = newRenderedHTMLDocument(ctx);
30
31     var host = d.createElement('div');
32     host.setAttribute('style', 'height:50%; width:100%');
33     host.setAttribute('id', 'host');
34     d.body.appendChild(host);
35
36     //Shadow root to play with
37     var s = host.createShadowRoot();
38
39     var inp1 = d.createElement('input');
40     inp1.setAttribute('id', 'inp1');
41     inp1.setAttribute('type', 'text');
42     inp1.setAttribute('value', '12345');
43     s.appendChild(inp1);
44
45     s.addEventListener('reset', A_05_04_06_T01.step_func(function(event) {
46         assert_equals(event.target.getAttribute('id'), 'inp1', 'Inside shadoe tree: Wrong target');
47     }), false);
48
49     d.body.addEventListener('reset', A_05_04_06_T01.step_func(function(event) {
50         assert_true(false, 'reset event should always be stopped at Shadow boundary');
51     }), false);
52
53     var event = d.createEvent('HTMLEvents');
54     event.initEvent ('reset', true, false);
55     inp1.dispatchEvent(event);
56
57     A_05_04_06_T01.done();
58 }));
59 </script>
60 </body>
61 </html>