Index: LayoutTests/fast/events/constructors/midi-connection-event-constructor-expected.txt |
diff --git a/LayoutTests/fast/events/constructors/midi-connection-event-constructor-expected.txt b/LayoutTests/fast/events/constructors/midi-connection-event-constructor-expected.txt |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1422cd5834d28f71761583d59e23a106a35638c5 |
--- /dev/null |
+++ b/LayoutTests/fast/events/constructors/midi-connection-event-constructor-expected.txt |
@@ -0,0 +1,18 @@ |
+This tests the constructor for the MIDIConnectionEvent DOM class. |
+ |
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
+ |
+ |
+PASS new MIDIConnectionEvent('eventType').bubbles is false |
+PASS new MIDIConnectionEvent('eventType').cancelable is false |
+PASS new MIDIConnectionEvent('eventType').port is null |
+PASS new MIDIConnectionEvent('eventType', { bubbles: false }).bubbles is false |
+PASS new MIDIConnectionEvent('eventType', { bubbles: true }).bubbles is true |
+PASS new MIDIConnectionEvent('eventType', { cancelable: false }).cancelable is false |
+PASS new MIDIConnectionEvent('eventType', { cancelable: true }).cancelable is true |
+PASS new MIDIConnectionEvent('eventType', { bubbles: true, cancelable: true }).bubbles is true |
+PASS new MIDIConnectionEvent('eventType', { bubbles: true, cancelable: true }).cancelable is true |
+PASS successfullyParsed is true |
+ |
+TEST COMPLETE |
+ |