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

Side by Side Diff: LayoutTests/inspector/console/only-one-deprecation-warning.html

Issue 149953007: CSP 1.1: Remove last bits of 'X-WebKit-CSP'. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Test. Created 6 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
5 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
6 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
7 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
8 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
9 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
10 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
11 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
12 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
13 <meta http-equiv="X-WebKit-CSP" content="img-src http://127.0.0.1:*">
14 <script> 4 <script>
15 if (window.testRunner) 5 if (window.testRunner)
16 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7
8 // These three all map to PrefixedPerformanceTimeline
9 var x = window.performance.webkitGetEntries();
10 x = window.performance.webkitGetEntriesByName('');
11 x = window.performance.webkitGetEntriesByType('');
17 </script> 12 </script>
18 </head> 13 </head>
19 <body> 14 <body>
20 This test passes if only one deprecation warning is presented in the console. 15 This test passes if only one deprecation warning is presented in the console.
21 </body> 16 </body>
22 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698