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

Unified Diff: LayoutTests/fast/events/event-creation-expected.txt

Issue 250933005: Make createEvent do case-insensitive matches (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Do not use startsWith for Event(s) Created 6 years, 7 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
« no previous file with comments | « LayoutTests/fast/events/event-creation.html ('k') | Source/build/scripts/make_event_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/event-creation-expected.txt
diff --git a/LayoutTests/fast/events/event-creation-expected.txt b/LayoutTests/fast/events/event-creation-expected.txt
index c5c3c289931be878d253f0b9571d126516d5a517..0827bbd5352fe3b5f4a5608dc81b00976c18f998 100644
--- a/LayoutTests/fast/events/event-creation-expected.txt
+++ b/LayoutTests/fast/events/event-creation-expected.txt
@@ -8,16 +8,25 @@ PASS document.createEvent('AnimationEvent') instanceof window.Event is true
PASS document.createEvent('AnimationEvent').constructor === window.AnimationEvent is true
PASS document.createEvent('Event') instanceof window.Event is true
PASS document.createEvent('Event').constructor === window.Event is true
+PASS document.createEvent('EvENt') instanceof window.Event is true
+PASS document.createEvent('EvENt').constructor === window.Event is true
PASS document.createEvent('Events') instanceof window.Event is true
PASS document.createEvent('Events').constructor === window.Event is true
+PASS document.createEvent('EvENts') instanceof window.Event is true
+PASS document.createEvent('EvENts').constructor === window.Event is true
PASS document.createEvent('HTMLEvents') instanceof window.Event is true
PASS document.createEvent('HTMLEvents').constructor === window.Event is true
+PASS document.createEvent('HTMLEvENts') instanceof window.Event is true
+PASS document.createEvent('HTMLEvENts').constructor === window.Event is true
PASS document.createEvent('CompositionEvent') instanceof window.CompositionEvent is true
PASS document.createEvent('CompositionEvent') instanceof window.Event is true
PASS document.createEvent('CompositionEvent').constructor === window.CompositionEvent is true
PASS document.createEvent('CustomEvent') instanceof window.CustomEvent is true
PASS document.createEvent('CustomEvent') instanceof window.Event is true
PASS document.createEvent('CustomEvent').constructor === window.CustomEvent is true
+PASS document.createEvent('CustomEvENt') instanceof window.CustomEvent is true
+PASS document.createEvent('CustomEvENt') instanceof window.Event is true
+PASS document.createEvent('CustomEvENt').constructor === window.CustomEvent is true
PASS document.createEvent('ErrorEvent') instanceof window.ErrorEvent is true
PASS document.createEvent('ErrorEvent') instanceof window.Event is true
PASS document.createEvent('ErrorEvent').constructor === window.ErrorEvent is true
@@ -39,10 +48,18 @@ PASS document.createEvent('MouseEvent') instanceof window.MouseEvent is true
PASS document.createEvent('MouseEvent') instanceof window.UIEvent is true
PASS document.createEvent('MouseEvent') instanceof window.Event is true
PASS document.createEvent('MouseEvent').constructor === window.MouseEvent is true
+PASS document.createEvent('MouseEvENt') instanceof window.MouseEvent is true
+PASS document.createEvent('MouseEvENt') instanceof window.UIEvent is true
+PASS document.createEvent('MouseEvENt') instanceof window.Event is true
+PASS document.createEvent('MouseEvENt').constructor === window.MouseEvent is true
PASS document.createEvent('MouseEvents') instanceof window.MouseEvent is true
PASS document.createEvent('MouseEvents') instanceof window.UIEvent is true
PASS document.createEvent('MouseEvents') instanceof window.Event is true
PASS document.createEvent('MouseEvents').constructor === window.MouseEvent is true
+PASS document.createEvent('MouseEvENts') instanceof window.MouseEvent is true
+PASS document.createEvent('MouseEvENts') instanceof window.UIEvent is true
+PASS document.createEvent('MouseEvENts') instanceof window.Event is true
+PASS document.createEvent('MouseEvENts').constructor === window.MouseEvent is true
PASS document.createEvent('MutationEvent') instanceof window.MutationEvent is true
PASS document.createEvent('MutationEvent') instanceof window.Event is true
PASS document.createEvent('MutationEvent').constructor === window.MutationEvent is true
@@ -68,9 +85,15 @@ PASS document.createEvent('TextEvent').constructor === window.TextEvent is true
PASS document.createEvent('UIEvent') instanceof window.UIEvent is true
PASS document.createEvent('UIEvent') instanceof window.Event is true
PASS document.createEvent('UIEvent').constructor === window.UIEvent is true
+PASS document.createEvent('UIEvENt') instanceof window.UIEvent is true
+PASS document.createEvent('UIEvENt') instanceof window.Event is true
+PASS document.createEvent('UIEvENt').constructor === window.UIEvent is true
PASS document.createEvent('UIEvents') instanceof window.UIEvent is true
PASS document.createEvent('UIEvents') instanceof window.Event is true
PASS document.createEvent('UIEvents').constructor === window.UIEvent is true
+PASS document.createEvent('UIEvENts') instanceof window.UIEvent is true
+PASS document.createEvent('UIEvENts') instanceof window.Event is true
+PASS document.createEvent('UIEvENts').constructor === window.UIEvent is true
PASS document.createEvent('TransitionEvent') instanceof window.TransitionEvent is true
PASS document.createEvent('TransitionEvent') instanceof window.Event is true
PASS document.createEvent('TransitionEvent').constructor === window.TransitionEvent is true
« no previous file with comments | « LayoutTests/fast/events/event-creation.html ('k') | Source/build/scripts/make_event_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698