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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/security/contentSecurityPolicy/1.1/reflected-xss-parsing.html

Issue 2428473004: Remove the 'reflected-xss' directive from CSP. (Closed)
Patch Set: Test. Created 4 years, 1 month 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', 'reflected-xss allow', 'resources/script.js'],
8 ['yes', 'reflected-xss filter', 'resources/script.js'],
9 ['yes', 'reflected-xss block', 'resources/script.js'],
10 ['yes', 'reflected-xss', 'resources/script.js'],
11 ['yes', 'reflected-xss blah', 'resources/script.js'],
12 ['yes', 'reflected-xss allow blah', 'resources/script.js'],
13 ['yes', 'reflected-xss blah allow', 'resources/script.js'],
14 ];
15 </script>
16 </head>
17 <body onload="testExperimentalPolicy()">
18 <p>
19 Invalid 'reflected-xss' headers should generate console messages.
20 </p>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698