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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/constructors/midi-message-event-constructor-expected.txt

Issue 2860613002: Enable SharedArrayBuffer feature by default. (Closed)
Patch Set: merge HEAD Created 3 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 unified diff | Download patch
OLDNEW
1 This tests the constructor for the MIDIMessageEvent DOM class. 1 This tests the constructor for the MIDIMessageEvent DOM class.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS new MIDIMessageEvent('eventType').bubbles is false 6 PASS new MIDIMessageEvent('eventType').bubbles is false
7 PASS new MIDIMessageEvent('eventType').cancelable is false 7 PASS new MIDIMessageEvent('eventType').cancelable is false
8 PASS new MIDIMessageEvent('eventType').data is null 8 PASS new MIDIMessageEvent('eventType').data is null
9 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false 9 PASS new MIDIMessageEvent('eventType', { bubbles: false }).bubbles is false
10 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true 10 PASS new MIDIMessageEvent('eventType', { bubbles: true }).bubbles is true
11 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e 11 PASS new MIDIMessageEvent('eventType', { cancelable: false }).cancelable is fals e
12 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true 12 PASS new MIDIMessageEvent('eventType', { cancelable: true }).cancelable is true
13 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 13 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
14 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).bubbles is true 14 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).bubbles is true
15 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).cancelable is true 15 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).cancelable is true
16 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).data == '0,0,0' is true 16 PASS new MIDIMessageEvent('eventType', { bubbles: true, cancelable: true, data: data }).data == '0,0,0' is true
17 PASS new MIDIMessageEvent('eventType', { data: data }) threw exception TypeError : Failed to construct 'MIDIMessageEvent': The provided ArrayBufferView value mus t not be shared..
17 PASS successfullyParsed is true 18 PASS successfullyParsed is true
18 19
19 TEST COMPLETE 20 TEST COMPLETE
20 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698