meta-commented-out.html (442B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <!--<meta charset="ISO-8859-8">--> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 </head> 8 <body> 9 <script> 10 "use strict"; 11 test(() => { 12 assert_not_equals(document.characterSet, "ISO-8859-8"); 13 }, "document.characterSet must not be determined by commented meta charset"); 14 </script> 15 </body> 16 </html>