Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 description("Test that calling setAttributeNS() with a prefixed qualifiedName an d null NS throws NAMESPACE_ERR."); | 1 description("Test that calling setAttributeNS() with a prefixed qualifiedName an d null NS throws NAMESPACE_ERR."); |
| 2 | 2 |
| 3 shouldThrow("document.createElement('test').setAttributeNS(null, 'foo:bar', 'baz ')", "'Error: NamespaceError: DOM Exception 14'"); | 3 shouldThrow("document.createElement('test').setAttributeNS(null, 'foo:bar', 'baz ')", "'NamespaceError: An attempt was made to create or change an object in a wa y which is incorrect with regard to namespaces.'"); |
| OLD | NEW |