Chromium Code Reviews| 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"); |
|
Raymond Toy
2016/10/03 20:19:20
Haven't you reduced test coverage by deleting this
hongchan
2016/10/03 20:31:19
This boils down to another question: do we need to
Raymond Toy
2016/10/03 20:36:38
Don't actually know. Probably should in the futur
|
| - shouldBeUndefined("onlineContext.startRendering"); |
| - |
| - // The offline context must have oncomplete and startRendering |
| - shouldBeDefined("offlineContext.oncomplete"); |
| - shouldBeDefined("offlineContext.startRendering"); |
| - |
| - } |
| - |
| - runTest(); |
| - successfullyParsed = true; |
| - </script> |
| - |
| - </body> |
| -</html> |