| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Distributed under both the W3C Test Suite License [1] and the W3C | 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 | 4 3-clause BSD License [2]. To contribute to a W3C Test Suite, see the |
| 5 policies and contribution forms [3]. | 5 policies and contribution forms [3]. |
| 6 | 6 |
| 7 [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license | 7 [1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license |
| 8 [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license | 8 [2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license |
| 9 [3] http://www.w3.org/2004/10/27-testcases | 9 [3] http://www.w3.org/2004/10/27-testcases |
| 10 --> | 10 --> |
| 11 <html> | 11 <html> |
| 12 <head> | 12 <head> |
| 13 <title>Shadow DOM Test: A_05_04_09</title> | 13 <title>Shadow DOM Test: A_05_04_09</title> |
| 14 <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru"> | 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"> | 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, scro
ll, selectstart"> | 16 <meta name="assert" content="The following events must not be stopped at the nea
rest shadow boundary if created by users: abort, error, select, change, load, re
set, resize, scroll, selectstart"> |
| 17 <script src="../../../../../../resources/testharness.js"></script> | 17 <script src="../../../../../../resources/testharness.js"></script> |
| 18 <script src="../../../../../../resources/testharnessreport.js"></script> | 18 <script src="../../../../../../resources/testharnessreport.js"></script> |
| 19 <script src="../../testcommon.js"></script> | 19 <script src="../../testcommon.js"></script> |
| 20 <link rel="stylesheet" href="../../../../../../resources/testharness.css"> | 20 <link rel="stylesheet" href="../../../../../../resources/testharness.css"> |
| 21 </head> | 21 </head> |
| 22 <body> | 22 <body> |
| 23 <div id="log"></div> | 23 <div id="log"></div> |
| 24 <script> | 24 <script> |
| 25 var A_05_04_09_T01 = async_test('A_05_04_09_T01'); | 25 var A_05_04_09_T01 = async_test('A_05_04_09_T01'); |
| 26 | 26 |
| 27 A_05_04_09_T01.step(unit(function (ctx) { | 27 A_05_04_09_T01.step(unit(function (ctx) { |
| 28 | 28 |
| 29 var d = newRenderedHTMLDocument(ctx); | 29 var d = newRenderedHTMLDocument(ctx); |
| 30 | 30 |
| 31 var host = d.createElement('div'); | 31 var host = d.createElement('div'); |
| 32 host.setAttribute('style', 'height:50%; width:100%'); | 32 host.setAttribute('style', 'height:50%; width:100%'); |
| 33 host.setAttribute('id', 'host'); | 33 host.setAttribute('id', 'host'); |
| 34 d.body.appendChild(host); | 34 d.body.appendChild(host); |
| 35 | 35 |
| 36 //Shadow root to play with | 36 //Shadow root to play with |
| 37 var s = host.createShadowRoot(); | 37 var s = host.createShadowRoot(); |
| 38 | 38 |
| 39 var inp1 = d.createElement('input'); | 39 var inp1 = d.createElement('input'); |
| 40 inp1.setAttribute('id', 'inp1'); | 40 inp1.setAttribute('id', 'inp1'); |
| 41 inp1.setAttribute('type', 'text'); | 41 inp1.setAttribute('type', 'text'); |
| 42 inp1.setAttribute('value', '12345'); | 42 inp1.setAttribute('value', '12345'); |
| 43 s.appendChild(inp1); | 43 s.appendChild(inp1); |
| 44 | 44 |
| 45 s.addEventListener('selectstart', A_05_04_09_T01.step_func(function(event) { | 45 s.addEventListener('selectstart', A_05_04_09_T01.step_func(function(event) { |
| 46 » assert_equals(event.target.getAttribute('id'), 'inp1', 'Inside shadoe tr
ee: Wrong target'); | 46 » assert_equals(event.target.getAttribute('id'), 'inp1', 'Inside shadow tr
ee: Wrong target'); |
| 47 }), false); | 47 }), false); |
| 48 | 48 |
| 49 d.body.addEventListener('selectstart', A_05_04_09_T01.step_func(function(eve
nt) { | 49 d.body.addEventListener('selectstart', A_05_04_09_T01.step_func(function(eve
nt) { |
| 50 » assert_true(false, 'selectstart event should always be stopped at Shadow
boundary'); | 50 » assert_true(true, 'Selectstart event should not be stopped at Shadow bou
ndary if created by users'); |
| 51 }), false); | 51 }), true); |
| 52 | 52 |
| 53 var event = d.createEvent('UIEvent'); | 53 var event = d.createEvent('UIEvent'); |
| 54 event.initUIEvent ('selectstart', true, false); | 54 event.initUIEvent ('selectstart', true, false); |
| 55 inp1.dispatchEvent(event); | 55 inp1.dispatchEvent(event); |
| 56 | 56 |
| 57 A_05_04_09_T01.done(); | 57 A_05_04_09_T01.done(); |
| 58 })); | 58 })); |
| 59 </script> | 59 </script> |
| 60 </body> | 60 </body> |
| 61 </html> | 61 </html> |
| OLD | NEW |