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

Unified Diff: LayoutTests/fast/events/constructors/message-event-constructor-expected.txt

Issue 22915005: MessageEvent constructor should accept a MessagePort as source (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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/constructors/message-event-constructor.html ('k') | Source/core/dom/MessageEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/events/constructors/message-event-constructor-expected.txt
diff --git a/LayoutTests/fast/events/constructors/message-event-constructor-expected.txt b/LayoutTests/fast/events/constructors/message-event-constructor-expected.txt
index 78da1a252251e7c4dafe17c894f4b313e0613c16..0678b46567254413feb7256d3c9d033e38b8ec0f 100644
--- a/LayoutTests/fast/events/constructors/message-event-constructor-expected.txt
+++ b/LayoutTests/fast/events/constructors/message-event-constructor-expected.txt
@@ -60,7 +60,7 @@ PASS new MessageEvent('eventType', { get lastEventId() { return 123; } }).lastEv
PASS new MessageEvent('eventType', { get lastEventId() { throw 'MessageEvent Error'; } }) threw exception MessageEvent Error.
PASS new MessageEvent('eventType', { source: window }).source is window
PASS new MessageEvent('eventType', { source: this }).source is this
-PASS new MessageEvent('eventType', { ports: [channel.port1], source: channel.port1 }).source is null
+PASS new MessageEvent('eventType', { ports: [channel.port1], source: channel.port1 }).source is channel.port1
PASS new MessageEvent('eventType', { source: test_object }).source is null
PASS new MessageEvent('eventType', { source: document }).source is null
PASS new MessageEvent('eventType', { source: document.body }).source is null
« no previous file with comments | « LayoutTests/fast/events/constructors/message-event-constructor.html ('k') | Source/core/dom/MessageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698