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

Side by Side Diff: LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scriptnonce-scriptsrc-blocked.html

Issue 14949017: Implementation of W3C compliant CSP script-src nonce. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor fixes based on Adam's comments Created 7 years, 7 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 <html>
3 <head>
4 <script src='../resources/multiple-iframe-test.js'></script>
5 <script>
6 var tests = [
7 ['yes', 'script-src 127.0.0.1:8000', 'resources/script.js', 'nonce'],
8 ['yes', 'script-src 127.0.0.1:8000; script-nonce nonce', 'resources/script.j s', 'nonce'],
9 ['no', 'script-src 127.0.0.1:8000; script-nonce nonce', 'resources/script.js ', 'notnonce'],
10 ['no', 'script-src 127.0.0.1:8000; script-nonce notnonce', 'resources/script .js', 'nonce'],
11 ];
12 </script>
13 </head>
14 <body onload="testExperimentalPolicy()">
15 <p>
16 None of these scripts should execute even though there are parse errors in t he policy.
17 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698