Index: third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt b/third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt |
index 2c2019c32e70cd51a512e906c8d24bef0460b44c..5e399a27895c8d70ca8197ea84776dcc086d119c 100644 |
--- a/third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt |
+++ b/third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt |
@@ -1,4 +1,3 @@ |
-CONSOLE WARNING: line 1: MIDIMessageEvent.receivedTime is deprecated and will be removed in M56, around January 2017. See https://www.chromestatus.com/features/5665772797952000 for more details. |
This tests the constructor for the MIDIMessageEvent DOM class. |
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
@@ -6,18 +5,15 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE |
PASS new MIDIMessageEvent('eventType').bubbles is false |
PASS new MIDIMessageEvent('eventType').cancelable is false |
-PASS new MIDIMessageEvent('eventType').receivedTime is 0.0 |
PASS new MIDIMessageEvent('eventType').data is null |
PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false |
PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true |
PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is false |
PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true |
-PASS new MIDIMessageEvent('eventType', { receivedTime: 3.14 }).receivedTime is 3.14 |
PASS new MIDIMessageEvent('eventType', { data: data }).data == '0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0' is true |
-PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receivedTime: 1976.0501, data: data }).bubbles is true |
-PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receivedTime: 1976.0501, data: data }).cancelable is true |
-PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receivedTime: 1976.0501, data: data }).receivedTime is 1976.0501 |
-PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, receivedTime: 1976.0501, data: data }).data == '0,0,0' is true |
+PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).bubbles is true |
+PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).cancelable is true |
+PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).data == '0,0,0' is true |
PASS successfullyParsed is true |
TEST COMPLETE |