haikuwebkit/LayoutTests/fast/dom/Document/compatMode-location.html

14 lines
468 B
HTML

<!DOCTYPE html>
<html>
<body>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description("Tests that the compatMode property getter is on Document and not HTMLDocument");
shouldBeUndefined("Object.getOwnPropertyDescriptor(HTMLDocument.prototype, 'compatMode')");
shouldBeType("Object.getOwnPropertyDescriptor(Document.prototype, 'compatMode').get", "Function");
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>