OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <dialog id="mydialog"></dialog> | 7 <dialog id="mydialog"></dialog> |
8 <script> | 8 <script> |
9 description("The DIALOG element should be recognized if the dialog feature is on
."); | 9 description("The DIALOG element should be recognized if the dialog feature is on
."); |
10 dialog = document.getElementById('mydialog'); | 10 dialog = document.getElementById('mydialog'); |
11 shouldBeTrue("typeof dialog.show == 'function'"); | 11 shouldBeTrue("typeof dialog.show == 'function'"); |
12 </script> | 12 </script> |
13 <script src="../../js/resources/js-test-post.js"></script> | |
14 </body> | 13 </body> |
15 </html> | 14 </html> |
OLD | NEW |