Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-basic.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-basic.html b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-basic.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f2074640f42befe46775b46149d89fe65ffa802f |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/addressspace-document-basic.html |
| @@ -0,0 +1,11 @@ |
| +<!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 () { |
|
philipj_slow
2016/03/04 10:47:14
If the onload is just to get a <body>, you can als
|
| + addressSpaceTest("http://localhost:8000", "document", "local"); |
| + addressSpaceTest("http://127.0.0.1:8000", "document", "local"); |
| + addressSpaceTest("http://example.test:8000", "document", "private"); |
| + }; |
| +</script> |