|
30 | 30 | assert_true(event instanceof CommandEvent, "event is CommandEvent"); |
31 | 31 | assert_equals(event.type, "command", "type"); |
32 | 32 | assert_equals(event.bubbles, false, "bubbles"); |
33 | | - assert_equals(event.composed, true, "composed"); |
| 33 | + assert_equals(event.composed, false, "composed"); |
34 | 34 | assert_equals(event.isTrusted, true, "isTrusted"); |
35 | 35 | assert_equals(event.command, "--custom-command", "command"); |
36 | 36 | assert_equals(event.target, invokee, "target"); |
|
47 | 47 | assert_true(event instanceof CommandEvent, "event is CommandEvent"); |
48 | 48 | assert_equals(event.type, "command", "type"); |
49 | 49 | assert_equals(event.bubbles, false, "bubbles"); |
50 | | - assert_equals(event.composed, true, "composed"); |
| 50 | + assert_equals(event.composed, false, "composed"); |
51 | 51 | assert_equals(event.isTrusted, true, "isTrusted"); |
52 | 52 | assert_equals(event.command, "--custom-command", "command"); |
53 | 53 | assert_equals(event.target, invokee, "target"); |
|
66 | 66 | assert_true(event instanceof CommandEvent, "event is CommandEvent"); |
67 | 67 | assert_equals(event.type, "command", "type"); |
68 | 68 | assert_equals(event.bubbles, false, "bubbles"); |
69 | | - assert_equals(event.composed, true, "composed"); |
| 69 | + assert_equals(event.composed, false, "composed"); |
70 | 70 | assert_equals(event.isTrusted, true, "isTrusted"); |
71 | 71 | assert_equals(event.command, command, "command"); |
72 | 72 | assert_equals(event.target, invokee, "target"); |
|
82 | 82 | assert_true(event instanceof CommandEvent, "event is CommandEvent"); |
83 | 83 | assert_equals(event.type, "command", "type"); |
84 | 84 | assert_equals(event.bubbles, false, "bubbles"); |
85 | | - assert_equals(event.composed, true, "composed"); |
| 85 | + assert_equals(event.composed, false, "composed"); |
86 | 86 | assert_equals(event.isTrusted, true, "isTrusted"); |
87 | 87 | assert_equals(event.command, command, "command"); |
88 | 88 | assert_equals(event.target, invokee, "target"); |
|
178 | 178 | assert_true(event instanceof CommandEvent, "event is CommandEvent"); |
179 | 179 | assert_equals(event.type, "command", "type"); |
180 | 180 | assert_equals(event.bubbles, false, "bubbles"); |
181 | | - assert_equals(event.composed, true, "composed"); |
| 181 | + assert_equals(event.composed, false, "composed"); |
182 | 182 | assert_equals(event.isTrusted, true, "isTrusted"); |
183 | 183 | assert_equals(event.command, "--custom-command", "command"); |
184 | 184 | assert_equals(event.target, invokee, "target"); |
|
0 commit comments