| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Service Worker: Clients.get across origins</title> | 2 <title>Service Worker: Clients.get across origins</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/get-host-info.sub.js"></script> | 5 <script src="/common/get-host-info.sub.js"></script> |
| 6 <script src="resources/test-helpers.sub.js"></script> | 6 <script src="resources/test-helpers.sub.js"></script> |
| 7 <script> | 7 <script> |
| 8 var host_info = get_host_info(); | 8 var host_info = get_host_info(); |
| 9 | 9 |
| 10 var scope = 'resources/blank.html?clients-get'; | 10 var scope = 'resources/blank.html?clients-get'; |
| 11 var t = async_test('Test Clients.get() cross origin'); | 11 var t = async_test('Test Clients.get() cross origin'); |
| 12 var other_origin_iframe = host_info['HTTPS_REMOTE_ORIGIN'] + base_path() + | 12 var other_origin_iframe = host_info['HTTPS_REMOTE_ORIGIN'] + base_path() + |
| 13 'resources/clients-get-other-origin.html'; | 13 'resources/clients-get-other-origin.html'; |
| 14 var myOriginClientId; | 14 var myOriginClientId; |
| 15 t.step(function() { | 15 t.step(function() { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 33 host_info['HTTPS_REMOTE_ORIGIN']); | 33 host_info['HTTPS_REMOTE_ORIGIN']); |
| 34 }) | 34 }) |
| 35 .catch(unreached_rejection(t)); | 35 .catch(unreached_rejection(t)); |
| 36 }); | 36 }); |
| 37 | 37 |
| 38 function on_message_other_origin(e) { | 38 function on_message_other_origin(e) { |
| 39 assert_equals(e.data.result, undefined); | 39 assert_equals(e.data.result, undefined); |
| 40 t.done(); | 40 t.done(); |
| 41 } | 41 } |
| 42 </script> | 42 </script> |
| OLD | NEW |