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

Side by Side Diff: LayoutTests/http/tests/security/contentSecurityPolicy/1.1/scriptnonce-separators-allowed.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; script-nonce 1/1;', 'resources/script.js ', '1/1'],
8 ['yes', 'script-src 127.0.0.1:8000; script-nonce {};', 'resources/script.js' , '{}'],
9 ['yes', 'script-src 127.0.0.1:8000; script-nonce /\\;', 'resources/script.js ', '/\\'],
10 ];
11 </script>
12 </head>
13 <body onload="testExperimentalPolicy()">
14 <p>
15 All of these scripts should execute, as all the nonces are valid.
16 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698