Bug 1408456 - convert mochitest test_AudioContext.html to a web-platform-test r?padenot draft
authorp1509425
Fri, 05 Jan 2018 16:36:24 +0100
changeset 716367 23ae09c0899a652645042c3cd276b87d4d3c0e74
parent 716249 3a41f8538e2b806e6df889ae37b208a8533019b0
child 716371 3d0014d33648af14a9912f3c7594dc0a379222ed
push id94410
push userbmo:alan.guyoch@gmail.com
push dateFri, 05 Jan 2018 15:37:32 +0000
reviewerspadenot
bugs1408456
milestone59.0a1
Bug 1408456 - convert mochitest test_AudioContext.html to a web-platform-test r?padenot MozReview-Commit-ID: GhuGevb5Xxo
testing/web-platform/meta/MANIFEST.json
testing/web-platform/tests/webaudio/the-audio-api/the-audiocontext-interface/test_AudioContext.html
--- a/testing/web-platform/meta/MANIFEST.json
+++ b/testing/web-platform/meta/MANIFEST.json
@@ -348576,16 +348576,22 @@
     ]
    ],
    "webaudio/the-audio-api/the-audiobuffersourcenode-interface/test_audioBufferSourceNodeOffset.html": [
     [
      "/webaudio/the-audio-api/the-audiobuffersourcenode-interface/test_audioBufferSourceNodeOffset.html",
      {}
     ]
    ],
+   "webaudio/the-audio-api/the-audiocontext-interface/test_AudioContext.html": [
+    [
+     "/webaudio/the-audio-api/the-audiocontext-interface/test_AudioContext.html",
+     {}
+    ]
+   ],
    "webaudio/the-audio-api/the-audiodestinationnode-interface/idl-test.html": [
     [
      "/webaudio/the-audio-api/the-audiodestinationnode-interface/idl-test.html",
      {}
     ]
    ],
    "webaudio/the-audio-api/the-audionode-interface/audionode-connect-return-value.html": [
     [
@@ -576497,16 +576503,20 @@
   "webaudio/the-audio-api/the-audiobuffersourcenode-interface/test_audioBufferSourceNodeOffset.html": [
    "9c49750f889df8b10bdefb6d8ac008b97e8c200e",
    "testharness"
   ],
   "webaudio/the-audio-api/the-audiocontext-interface/.gitkeep": [
    "da39a3ee5e6b4b0d3255bfef95601890afd80709",
    "support"
   ],
+  "webaudio/the-audio-api/the-audiocontext-interface/test_AudioContext.html": [
+   "e8833ffc68e8a1dbee1fc48f15347f35dcca7a5a",
+   "testharness"
+  ],
   "webaudio/the-audio-api/the-audiodestinationnode-interface/.gitkeep": [
    "da39a3ee5e6b4b0d3255bfef95601890afd80709",
    "support"
   ],
   "webaudio/the-audio-api/the-audiodestinationnode-interface/idl-test.html": [
    "3e8b55e707434899be9af13334d935368579f1dc",
    "testharness"
   ],
new file mode 100644
--- /dev/null
+++ b/testing/web-platform/tests/webaudio/the-audio-api/the-audiocontext-interface/test_AudioContext.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta charset="utf-8">
+  <script src="/resources/testharness.js"></script>
+  <script src="/resources/testharnessreport.js"></script>
+  <script>
+var t = async_test();
+var ac = new AudioContext();
+assert_not_equals(ac, null, "Create a AudioContext object");
+assert_true(ac instanceof EventTarget, "AudioContexts must be EventTargets");
+t.done();
+  </script>
+</head>
+</body>
+</html>