| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>ServiceWorkerGlobalScope: scope property is an absolute url</title> | 2 <title>ServiceWorkerGlobalScope: scope property is an absolute url</title> |
| 3 <script src="../../resources/testharness.js"></script> | 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <script src="../resources/test-helpers.js"></script> | 5 <script src="../resources/test-helpers.js"></script> |
| 6 <script src="resources/scope.js"></script> | 6 <script src="resources/scope.js"></script> |
| 7 <script> | 7 <script> |
| 8 async_test(function(t) { | 8 async_test(function(t) { |
| 9 scope_test(t, 'resources/scope-worker.js', get_host_info().HTTP_ORIGIN); | 9 scope_test( |
| 10 t, 'resources/scope-worker.js', |
| 11 get_host_info().HTTP_ORIGIN + base_path() + 'resources/absolute_url/'); |
| 10 }, 'Verify the scope property: absolute url'); | 12 }, 'Verify the scope property: absolute url'); |
| 11 </script> | 13 </script> |
| OLD | NEW |