| OLD | NEW | 
|   1 <!DOCTYPE html> |   1 <!DOCTYPE html> | 
|   2 <title>Service Worker: canvas tainting of the fetched image using cached respons
    es</title> |   2 <title>Service Worker: canvas tainting of the fetched image using cached respons
    es</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?pipe=sub"></script> |   6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> | 
|   7 <body> |   7 <body> | 
|   8 <script> |   8 <script> | 
|   9 async_test(function(t) { |   9 async_test(function(t) { | 
|  10     var SCOPE = 'resources/fetch-canvas-tainting-iframe.html?cache'; |  10     var SCOPE = 'resources/fetch-canvas-tainting-iframe.html?cache'; | 
|  11     var SCRIPT = 'resources/fetch-rewrite-worker.js'; |  11     var SCRIPT = 'resources/fetch-rewrite-worker.js'; | 
|  12     var host_info = get_host_info(); |  12     var host_info = get_host_info(); | 
|  13  |  13  | 
|  14     login_https(t) |  14     login_https(t) | 
|  15       .then(function() { |  15       .then(function() { | 
| (...skipping 13 matching lines...) Expand all  Loading... | 
|  29                 }); |  29                 }); | 
|  30               frame.contentWindow.postMessage({}, |  30               frame.contentWindow.postMessage({}, | 
|  31                                               host_info['HTTPS_ORIGIN'], |  31                                               host_info['HTTPS_ORIGIN'], | 
|  32                                               [channel.port2]); |  32                                               [channel.port2]); | 
|  33             }); |  33             }); | 
|  34         }) |  34         }) | 
|  35       .catch(unreached_rejection(t)); |  35       .catch(unreached_rejection(t)); | 
|  36   }, 'Verify canvas tainting of fetched image in a Service Worker'); |  36   }, 'Verify canvas tainting of fetched image in a Service Worker'); | 
|  37 </script> |  37 </script> | 
|  38 </body> |  38 </body> | 
| OLD | NEW |