Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>*.x.y should match only hosts that end in .x.y</title> | |
| 5 <script src="/resources/testharness.js"></script> | |
| 6 <script src="/resources/testharnessreport.js"></script> | |
| 7 <meta http-equiv="Content-Security-Policy" content="script-src *.localho st:8000 'self' 'unsafe-inline'"> | |
| 8 </head> | |
| 9 <script> | |
| 10 window.result = false; | |
| 11 </script> | |
| 12 <script src="//localhost:8000/security/contentSecurityPolicy/resources/scrip t-set-value.js"></script> | |
| 13 <script> | |
| 14 assert_false(window.result); | |
| 15 done(); | |
| 16 </script> | |
| 17 </html> | |
| OLD | NEW |