| <html> |
| <head> |
| <link rel="stylesheet" href="../../js/resources/js-test-style.css"> |
| <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'); |
| |
| var successfullyParsed = true; |
| </script> |
| <script src="../../js/resources/js-test-post.js"></script> |
| </body> |
| </html> |