blob: 959db0e16c5427fa237ec220d4ed68f8ce648ca1 [file] [log] [blame]
<!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 not be recognized if the dialog feature is off.");
if (window.internals)
internals.settings.setDialogElementEnabled(false);
dialog = document.getElementById('mydialog');
shouldBeTrue("typeof dialog.show == 'undefined'");
</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>
</html>