Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt

Issue 1586563005: Add Event.scoped (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove error from test case as it bubbles up and fails test\ Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 CONSOLE WARNING: Calling Element.createShadowRoot() for an element which already hosts a shadow root is deprecated. See https://www.chromestatus.com/features/46 68884095336448 for more details. 1 CONSOLE WARNING: Calling Element.createShadowRoot() for an element which already hosts a shadow root is deprecated. See https://www.chromestatus.com/features/46 68884095336448 for more details.
2 Tests to ensure that some kinds of events are stopeed at shadow boundary. 2 Tests to ensure that all kinds of events are not stopeed at shadow boundary if c reated by users.
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 Other events than "click" should be stopped at shadow boundary. A "click" is ad ded for the purpose of comparing results. 7 None of the events should be stopped at a Shadow boundary if created by users.
8 8
9 abort 9 abort
10 @target (target: target) 10 @target (target: target)
11 @parent-of-target (target: target) 11 @parent-of-target (target: target)
12 @host (target: host)
13 @top (target: host)
12 14
13 select 15 select
14 @target (target: target) 16 @target (target: target)
15 @parent-of-target (target: target) 17 @parent-of-target (target: target)
18 @host (target: host)
19 @top (target: host)
16 20
17 change 21 change
18 @target (target: target) 22 @target (target: target)
19 @parent-of-target (target: target) 23 @parent-of-target (target: target)
24 @host (target: host)
25 @top (target: host)
20 26
21 reset 27 reset
22 @target (target: target) 28 @target (target: target)
23 @parent-of-target (target: target) 29 @parent-of-target (target: target)
30 @host (target: host)
31 @top (target: host)
24 32
25 resize 33 resize
26 @target (target: target) 34 @target (target: target)
27 @parent-of-target (target: target) 35 @parent-of-target (target: target)
36 @host (target: host)
37 @top (target: host)
28 38
29 scroll 39 scroll
30 @target (target: target) 40 @target (target: target)
31 @parent-of-target (target: target) 41 @parent-of-target (target: target)
42 @host (target: host)
43 @top (target: host)
32 44
33 selectstart 45 selectstart
34 @target (target: target) 46 @target (target: target)
35 @parent-of-target (target: target) 47 @parent-of-target (target: target)
48 @host (target: host)
49 @top (target: host)
36 50
37 load 51 load
38 @target (target: target) 52 @target (target: target)
39 @parent-of-target (target: target) 53 @parent-of-target (target: target)
40 54 @host (target: host)
41 error 55 @top (target: host)
42 @target (target: target)
43 @parent-of-target (target: target)
44 56
45 click 57 click
46 @target (target: target) 58 @target (target: target)
47 @parent-of-target (target: target) 59 @parent-of-target (target: target)
48 @host (target: host) 60 @host (target: host)
49 @top (target: host) 61 @top (target: host)
50 62
51 An event fired on a distributed child should not be stopped at the shadow bounda ry of its host (host2), but should be stopped at the nearest shadow boundary (ho st1). 63 An event fired on a distributed child should not be stopped at the shadow bounda ry of its host (host2), but should be stopped at the nearest shadow boundary (ho st1).
52 64
53 selectstart 65 selectstart
54 @distributed-child (target: distributed-child) 66 @distributed-child (target: distributed-child)
55 @content (target: distributed-child) 67 @content (target: distributed-child)
56 @parent-of-content (target: distributed-child) 68 @parent-of-content (target: distributed-child)
57 @host2 (target: distributed-child) 69 @host2 (target: distributed-child)
70 @host1 (target: host1)
58 71
59 An event is dispatched on a node in an older shadow tree. The older and the youn ger shadow root should receive the event, however, the shadow host shouldn't 72 An event is dispatched on a node in an older shadow tree. The older and the youn ger shadow root should receive the event, however, the shadow host shouldn't
60 73
61 selectstart 74 selectstart
62 @target (target: target) 75 @target (target: target)
63 @older-shadow-root (target: target) 76 @older-shadow-root (target: target)
64 @shadow-insertion-point (target: target) 77 @shadow-insertion-point (target: target)
65 @younger-shadow-root (target: target) 78 @younger-shadow-root (target: target)
79 @shadow-host (target: shadow-host)
66 PASS successfullyParsed is true 80 PASS successfullyParsed is true
67 81
68 TEST COMPLETE 82 TEST COMPLETE
69 83
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698