Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLDialogElement / dialog-enabled.html
blob3f64751b86e72af99fa7d14921611462f506f296
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <dialog id="mydialog"></dialog>
8 <script>
9 description("The DIALOG element should be recognized if the dialog feature is on.");
10 dialog = document.getElementById('mydialog');
11 shouldBeTrue("typeof dialog.show == 'function'");
12 </script>
13 </body>
14 </html>