dialog-enabled.html (365B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 </head> 7 <body> 8 <dialog></dialog> 9 <script> 10 test(function() { 11 dialog = document.querySelector('dialog') 12 assert_true(dialog instanceof HTMLDialogElement); 13 }, "The DIALOG element should be recognized"); 14 </script> 15 </body> 16 </html>