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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-blocked.html

Issue 2766913003: Fixed and improved content-security-policy/media-src tests (Closed)
Patch Set: Re-edited TestExpectations after a rebase-update to try to make the patch apply properly this time Created 3 years, 9 months 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/http/tests/security/contentSecurityPolicy/media-src-blocked.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-blocked.html b/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-blocked.html
deleted file mode 100644
index 3f7047b96b618edd4ace953767f3cbd3e5f6cb64..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/media-src-blocked.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<title>This tests that video is not loaded because of "Content-Security-Policy".</title>
-<meta http-equiv="Content-Security-Policy" content="media-src 'none'">
-<script src="/resources/testharness.js"></script>
-<script src="/resources/testharnessreport.js"></script>
-<script src="../../media-resources/media-file.js"></script>
-<video></video>
-<script>
-async_test(function(t) {
- var video = document.querySelector("video");
- video.onloadedmetadata = t.unreached_func();
-
- window.onload = t.step_func_done();
-
- // Find a supported media file.
- var mediaFile = findMediaFile("video", "content/test");
- var mimeType = mimeTypeForFile(mediaFile);
-
- video.src = "http://127.0.0.1:8000/resources/load-and-stall.php?name=../../../media/" + mediaFile + "&mimeType=" + mimeType + "&stallAt=100000";
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698