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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt
index 4507e182a868f0047386ad857e2473f37bbaf1e2..0f0ad68a0a071b44a950231e7bdfa3773b6473e4 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/events-stopped-at-shadow-boundary-expected.txt
@@ -1,46 +1,58 @@
CONSOLE WARNING: Calling Element.createShadowRoot() for an element which already hosts a shadow root is deprecated. See https://www.chromestatus.com/features/4668884095336448 for more details.
-Tests to ensure that some kinds of events are stopeed at shadow boundary.
+Tests to ensure that all kinds of events are not stopeed at shadow boundary if created by users.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-Other events than "click" should be stopped at shadow boundary. A "click" is added for the purpose of comparing results.
+None of the events should be stopped at a Shadow boundary if created by users.
abort
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
select
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
change
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
reset
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
resize
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
scroll
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
selectstart
@target (target: target)
@parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
load
@target (target: target)
@parent-of-target (target: target)
-
- error
- @target (target: target)
- @parent-of-target (target: target)
+ @host (target: host)
+ @top (target: host)
click
@target (target: target)
@@ -55,6 +67,7 @@ An event fired on a distributed child should not be stopped at the shadow bounda
@content (target: distributed-child)
@parent-of-content (target: distributed-child)
@host2 (target: distributed-child)
+ @host1 (target: host1)
An event is dispatched on a node in an older shadow tree. The older and the younger shadow root should receive the event, however, the shadow host shouldn't
@@ -63,6 +76,7 @@ An event is dispatched on a node in an older shadow tree. The older and the youn
@older-shadow-root (target: target)
@shadow-insertion-point (target: target)
@younger-shadow-root (target: target)
+ @shadow-host (target: shadow-host)
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698