blob: d1253bb0b2f0980ed260c37d42b3f84a0e1a5ecc [file]
<!DOCTYPE html>
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
</head>
<body>
<dialog id="mydialog"></dialog>
<script>
description("The DIALOG element should be recognized if the dialog feature is on.");
if (window.internals)
internals.settings.setDialogElementEnabled(true);
dialog = document.getElementById('mydialog');
shouldBeTrue("typeof dialog.show == 'function'");
</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>
</html>