Index: LayoutTests/http/tests/security/media-element-audio-source-node-cross-origin-with-credentials.html |
diff --git a/LayoutTests/http/tests/security/media-element-audio-source-node-cross-origin-with-credentials.html b/LayoutTests/http/tests/security/media-element-audio-source-node-cross-origin-with-credentials.html |
deleted file mode 100644 |
index 9fbf85ad57ec7c96fcd1cfc036e932468d5bb18e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/http/tests/security/media-element-audio-source-node-cross-origin-with-credentials.html |
+++ /dev/null |
@@ -1,46 +0,0 @@ |
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
-<html> |
- <head> |
- <script src="resources/webaudio/compatibility.js"></script> |
- <script src="resources/webaudio/media-element-audio-source-node-test.js"></script> |
- <script src="resources/webaudio/js-test.js"></script> |
- </head> |
- |
- <body> |
- <div id="description"></div> |
- <div id="console"></div> |
- |
- <script> |
- description("MediaElementAudioSourceNode with cross-origin source with credentials"); |
- |
- var data; |
- |
- function checkResult (e) { |
- data = e.renderedBuffer.getChannelData(0); |
- var count = 0; |
- |
- // Count the number of non-zero values. Since this is a cross-origin source that is allowed |
- // with credentials, there should be at least one non-zero value. |
- for (var k = 0; k < data.length; ++k) { |
- if (data[k] != 0) { |
- ++count; |
- } |
- } |
- if (count > 0) { |
- testPassed("Correctly found some non-zero values."); |
- } else { |
- testFailed("All samples incorrectly zeroed."); |
- } |
- } |
- |
- function testFunction() { |
- audio.crossOrigin = "use-credentials"; |
- audio.src = |
- "http://localhost:8000/security/resources/webaudio/media-element-cross-origin-allow.php?with_credentials"; |
- } |
- |
- runTest(null, checkResult, testFunction); |
- |
- </script> |
- </body> |
-</html> |