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

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: Modify layout test results Created 4 years, 11 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)
54 @host (target: host)
55 @top (target: host)
40 56
41 error 57 error
42 @target (target: target) 58 @target (target: target)
43 @parent-of-target (target: target) 59 @parent-of-target (target: target)
60 @host (target: host)
61 @top (target: host)
44 62
45 click 63 click
46 @target (target: target) 64 @target (target: target)
47 @parent-of-target (target: target) 65 @parent-of-target (target: target)
48 @host (target: host) 66 @host (target: host)
49 @top (target: host) 67 @top (target: host)
50 68
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). 69 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 70
53 selectstart 71 selectstart
54 @distributed-child (target: distributed-child) 72 @distributed-child (target: distributed-child)
55 @content (target: distributed-child) 73 @content (target: distributed-child)
56 @parent-of-content (target: distributed-child) 74 @parent-of-content (target: distributed-child)
57 @host2 (target: distributed-child) 75 @host2 (target: distributed-child)
76 @host1 (target: host1)
58 77
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 78 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 79
61 selectstart 80 selectstart
62 @target (target: target) 81 @target (target: target)
63 @older-shadow-root (target: target) 82 @older-shadow-root (target: target)
64 @shadow-insertion-point (target: target) 83 @shadow-insertion-point (target: target)
65 @younger-shadow-root (target: target) 84 @younger-shadow-root (target: target)
66 PASS successfullyParsed is true 85 @shadow-host (target: shadow-host)
86 FAIL successfullyParsed should be true. Was false.
hayato 2016/01/22 07:16:25 Looks something is wrong. Could you check this?
yuzuchan 2016/01/25 07:23:49 Found out that I was missing a semicolon. After ad
67 87
68 TEST COMPLETE 88 TEST COMPLETE
69 89
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698