| Index: third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-csp-appcache.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-csp-appcache.html b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-csp-appcache.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b77a776ee8ab1f427fcf40032bab622cbed14b1d
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-csp-appcache.html
|
| @@ -0,0 +1,27 @@
|
| +<!doctype html>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="./resources/addressspace-test.js"></script>
|
| +<script>
|
| + window.onload = function () {
|
| + addressSpaceTest("http://localhost:8000", "document+appcache+csp", "public",
|
| + // If we request the same resources again, we should load them from the
|
| + // memory cache with the same properties.
|
| + function () {
|
| + addressSpaceTest("http://localhost:8000", "document+appcache+csp", "public");
|
| + });
|
| + addressSpaceTest("http://127.0.0.1:8000", "document+appcache+csp", "public",
|
| + // If we request the same resources again, we should load them from the
|
| + // memory cache with the same properties.
|
| + function () {
|
| + addressSpaceTest("http://127.0.0.1:8000", "document+appcache+csp", "public");
|
| + });
|
| +
|
| + addressSpaceTest("http://example.test:8000", "document+appcache+csp", "public",
|
| + // If we request the same resources again, we should load them from the
|
| + // memory cache with the same properties.
|
| + function () {
|
| + addressSpaceTest("http://example.test:8000", "document+appcache+csp", "public");
|
| + });
|
| + };
|
| +</script>
|
|
|