| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../resources/testharness.js"></script> | 2 <script src="../resources/testharness.js"></script> |
| 3 <script src="../resources/testharnessreport.js"></script> | 3 <script src="../resources/testharnessreport.js"></script> |
| 4 <script src="resources/shadow-dom.js"></script> | 4 <script src="resources/shadow-dom.js"></script> |
| 5 | 5 |
| 6 <input id="input"></input> | 6 <input id="input"></input> |
| 7 <div id="sandbox"> | 7 <div id="sandbox"> |
| 8 <div id = "host"> | 8 <div id = "host"> |
| 9 <template> | 9 <template> |
| 10 <input id="target" value="test"></div> | 10 <input id="target" value="test"></div> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 assert_true(e.composedPath().includes(target)); | 53 assert_true(e.composedPath().includes(target)); |
| 54 assert_true(e.composedPath().includes(host)); | 54 assert_true(e.composedPath().includes(host)); |
| 55 t.done(); | 55 t.done(); |
| 56 }); | 56 }); |
| 57 } | 57 } |
| 58 }, 'Only certain trusted events should stop in bubbling.'); | 58 }, 'Only certain trusted events should stop in bubbling.'); |
| 59 | 59 |
| 60 target.select(); | 60 target.select(); |
| 61 var userError = new Event('error'); | 61 var userError = new Event('error'); |
| 62 target.dispatchEvent(userError); | 62 target.dispatchEvent(userError); |
| 63 |
| 64 function doubleClick(x, y) { |
| 65 eventSender.mouseMoveTo(x, y); |
| 66 eventSender.mouseDown(); |
| 67 eventSender.mouseUp(); |
| 68 eventSender.mouseDown(); |
| 69 eventSender.mouseUp(); |
| 70 } |
| 71 |
| 72 async_test((test) => { |
| 73 input.addEventListener('dblclick', test.step_func_done((e) => { |
| 74 assert_true(e.composed); |
| 75 })); |
| 76 }, 'A dblclick event should be a composed event'); |
| 77 |
| 78 doubleClick(input.offsetLeft, input.offsetTop); |
| 63 </script> | 79 </script> |
| OLD | NEW |