file_meta_whitespace_skipping.html (1004B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <!-- Test all the different space characters within the meta csp: 6 * U+0020 space |   7 * U+0009 tab | 	 8 * U+000A line feed | 
 9 * U+000C form feed |  10 * U+000D carriage return | 
 11 !--> 12 <meta http-equiv="Content-Security-Policy" 13 content= " 14 img-src  'none';   15 script-src 'unsafe-inline' 
 16 ; 17 style-src		 https://example.com
 18 https://foo.com;;;;;; child-src foo.com 19 bar.com 20 
;
 21 font-src 'none'"> 22 <title>Bug 1261634 - Update whitespace skipping for meta csp</title> 23 </head> 24 <body> 25 <script type="application/javascript"> 26 // notify the including document that we are done parsing the meta csp 27 window.parent.postMessage({result: "meta-csp-parsed"}, "*"); 28 </script> 29 30 </body> 31 </html>