| 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>
|
|
|