Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: LayoutTests/http/tests/security/subresourceIntegrity/subresource-integrity-script-cors-bad-integrity.html

Issue 997153003: Recommit Enable SRI only for same origin and CORS content (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <title>SRI on cross origin CORS enabled script, with bad integrity</title>
4 </head>
5 <body>
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8 <script>
9 var result = '';
10 var scriptLoaded = function() {
11 assert_equals(result, '', 'Script did not run.');
12 done();
13 };
14 var scriptError = function() {
15 assert_unreached('Script error.');
16 done();
17 };
18 </script>
19 <script crossorigin integrity="ni:///sha256;deadbeef" src="http://localhost: 8000/security/resources/cors-script.php?value=ran" onload="scriptLoaded();" oner ror="scriptError();"></script>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698