OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <head> | 2 <head> |
3 <title>SRI on cross origin CORS disabled script</title> | 3 <title>SRI on cross origin CORS disabled script</title> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <script src="/resources/testharness.js"></script> | 6 <script src="/resources/testharness.js"></script> |
7 <script src="/resources/testharnessreport.js"></script> | 7 <script src="/resources/testharnessreport.js"></script> |
8 <script> | 8 <script> |
9 var result = ''; | 9 var result = ''; |
10 var scriptLoaded = function() { | 10 var scriptLoaded = function() { |
11 assert_unreached('Script ran.'); | 11 assert_unreached('Script ran.'); |
12 done(); | 12 done(); |
13 }; | 13 }; |
14 var scriptError = function() { | 14 var scriptError = function() { |
| 15 assert_equals(result, '', 'Script did not run.'); |
15 done(); | 16 done(); |
16 }; | 17 }; |
17 </script> | 18 </script> |
18 <script crossorigin integrity="ni:///sha256;mk_DwEwGGoyrh4sgi9t0nYTO1Lrft3w6
vzaNuMaZrtQ=" src="http://localhost:8000/security/resources/cors-script.php?cors
=false&value=ran" onload="scriptLoaded();" onerror="scriptError();"></script> | 19 <script crossorigin integrity="ni:///sha256;mk_DwEwGGoyrh4sgi9t0nYTO1Lrft3w6
vzaNuMaZrtQ=" src="http://localhost:8000/security/resources/cors-script.php?cors
=false&value=ran" onload="scriptLoaded();" onerror="scriptError();"></script> |
19 </body> | 20 </body> |
20 </html> | 21 </html> |
OLD | NEW |