blob: 918d99e2f1dc6bf8b431cb62a4221d4049bebc56 [file] [log] [blame]
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("Test Attr.isId where Attr is created without element.");
var attr = document.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
shouldBeFalse('attr.isId');
var attr = document.createAttributeNS("","id");
shouldBeTrue('attr.isId');
</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>
</html>