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

Side by Side Diff: third_party/WebKit/LayoutTests/virtual/sharedarraybuffer/webmidi/send-messages-expected.txt

Issue 2876293002: Revert "Enable SharedArrayBuffer feature by default." (Closed)
Patch Set: 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 Test if various kinds of MIDI messages can be validated. 1 Test if various kinds of MIDI messages can be validated.
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 navigator.requestMIDIAccess is defined. 6 PASS navigator.requestMIDIAccess is defined.
7 PASS output.send([0x00, 0x01]) threw exception TypeError: Failed to execute 'sen d' on 'MIDIOutput': Running status is not allowed at index 0 (0).. 7 PASS output.send([0x00, 0x01]) threw exception TypeError: Failed to execute 'sen d' on 'MIDIOutput': Running status is not allowed at index 0 (0)..
8 PASS output.send([0xf7]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Unexpected end of system exclusive message at index 0 (247).. 8 PASS output.send([0xf7]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Unexpected end of system exclusive message at index 0 (247)..
9 PASS output.send([0xf4]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Reserved status is not allowed at index 0 (244).. 9 PASS output.send([0xf4]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Reserved status is not allowed at index 0 (244)..
10 PASS output.send([0xf5]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Reserved status is not allowed at index 0 (245).. 10 PASS output.send([0xf5]) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': Reserved status is not allowed at index 0 (245)..
(...skipping 28 matching lines...) Expand all
39 PASS output.send([], NaN) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': The provided double value is non-finite.. 39 PASS output.send([], NaN) threw exception TypeError: Failed to execute 'send' on 'MIDIOutput': The provided double value is non-finite..
40 PASS output.send([], Infinity) threw exception TypeError: Failed to execute 'sen d' on 'MIDIOutput': The provided double value is non-finite.. 40 PASS output.send([], Infinity) threw exception TypeError: Failed to execute 'sen d' on 'MIDIOutput': The provided double value is non-finite..
41 PASS output.send(new Uint8Array(), NaN) threw exception TypeError: Failed to exe cute 'send' on 'MIDIOutput': The provided double value is non-finite.. 41 PASS output.send(new Uint8Array(), NaN) threw exception TypeError: Failed to exe cute 'send' on 'MIDIOutput': The provided double value is non-finite..
42 PASS output.send(new Uint8Array(), Infinity) threw exception TypeError: Failed t o execute 'send' on 'MIDIOutput': The provided double value is non-finite.. 42 PASS output.send(new Uint8Array(), Infinity) threw exception TypeError: Failed t o execute 'send' on 'MIDIOutput': The provided double value is non-finite..
43 PASS output.send(new Uint8Array(new SharedArrayBuffer(4))) threw exception TypeE rror: Failed to execute 'send' on 'MIDIOutput': The provided ArrayBufferView val ue must not be shared.. 43 PASS output.send(new Uint8Array(new SharedArrayBuffer(4))) threw exception TypeE rror: Failed to execute 'send' on 'MIDIOutput': The provided ArrayBufferView val ue must not be shared..
44 PASS output.send(new Uint8Array(new SharedArrayBuffer(4), 0)) threw exception Ty peError: Failed to execute 'send' on 'MIDIOutput': The provided ArrayBufferView value must not be shared.. 44 PASS output.send(new Uint8Array(new SharedArrayBuffer(4), 0)) threw exception Ty peError: Failed to execute 'send' on 'MIDIOutput': The provided ArrayBufferView value must not be shared..
45 PASS successfullyParsed is true 45 PASS successfullyParsed is true
46 46
47 TEST COMPLETE 47 TEST COMPLETE
48 48
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698