Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/loading/doc-write-sync-third-party-script-reload.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/loading/doc-write-sync-third-party-script-reload.html b/third_party/WebKit/LayoutTests/http/tests/loading/doc-write-sync-third-party-script-reload.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..badfafbe25f82cf885f6f4d6b7b2dc548bba4357 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/http/tests/loading/doc-write-sync-third-party-script-reload.html |
| @@ -0,0 +1,18 @@ |
| +<!DOCTYPE html> |
| +<script src="../resources/testharness.js"></script> |
| +<script src="../resources/testharnessreport.js"></script> |
| +<script> |
| + // This parameter will be used in testreload.js to indicate reload should |
| + // be from the cache. |
| + var reloadFromCache = false; |
|
jkarlin
2016/04/14 18:27:01
Instead, how about wrapping the code in testreload
shivanisha
2016/04/14 19:15:44
Changed the reload code for both variants to be in
|
| +</script> |
| + |
| +<script src="./resources/testreload.js"></script> |
| + |
| +<script> |
| + test(function () { |
| + assert_true(jsLoaded); |
| + assert_true(loadSuccess); |
| + assert_true(loadBlockedFirst); |
| + }, "cross origin doc.written scripts are not blocked in a page reload"); |
| +</script> |