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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/context-properties.html

Issue 2386303002: Expose BaseAudioContext prototype (Closed)
Patch Set: fixed cross-origin-objects Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/webaudio/context-properties.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/context-properties.html b/third_party/WebKit/LayoutTests/webaudio/context-properties.html
deleted file mode 100644
index 0caf4c9c97f4a193f7984c3ffe1185e3577cca34..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/webaudio/context-properties.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <script src="resources/compatibility.js"></script>
- <script src="../resources/js-test.js"></script>
- </head>
-
- <body>
- <script>
- description("Tests audio context for offline attributes and methods.");
-
- function runTest() {
- // Create an online and offline context for testing.
- onlineContext = new AudioContext();
- offlineContext = new OfflineAudioContext(1, 1000, 44100);
-
- // The online context cannot have oncomplete and startRendering
- shouldBeUndefined("onlineContext.oncomplete");
- shouldBeUndefined("onlineContext.startRendering");
-
- // The offline context must have oncomplete and startRendering
- shouldBeDefined("offlineContext.oncomplete");
- shouldBeDefined("offlineContext.startRendering");
-
- }
-
- runTest();
- successfullyParsed = true;
- </script>
-
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698