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

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

Issue 14358032: Web MIDI: implement MIDIConnectionEvent (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: (rebase) Created 7 years, 8 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
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
+
« no previous file with comments | « LayoutTests/fast/events/constructors/midi-connection-event-constructor.html ('k') | Source/bindings/v8/Dictionary.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698