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