meta-http-equiv-double-quotes.html (549B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <!--<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-8">--> 5 <meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-5"> 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 </head> 9 <body> 10 <script> 11 "use strict"; 12 test(() => { 13 assert_equals(document.characterSet, "ISO-8859-5"); 14 }, "document.characterSet must be determined by meta http-equiv"); 15 </script> 16 </body> 17 </html>