document-compatmode-04.xhtml (520B)
1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>document.compatMode: Standards</title> 5 <link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"/> 6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-compatmode"/> 7 </head> 8 <body> 9 <div id="log"></div> 10 <script src="/resources/testharness.js"></script> 11 <script src="/resources/testharnessreport.js"></script> 12 <script> 13 test(function() { 14 assert_equals(document.compatMode, "CSS1Compat"); 15 }) 16 </script> 17 </body> 18 </html>