module-in-xhtml.xhtml (595B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 <head> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 </head> 8 <body> 9 <script type="module"> 10 window.evaluated_module_script = true; 11 </script> 12 <script> 13 var test = async_test("module script in XHTML documents should be evaluated."); 14 window.addEventListener("load", () => { 15 test.step(() => { assert_true(window.evaluated_module_script); }); 16 test.done(); 17 }); 18 </script> 19 </body> 20 </html>