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