| Index: LayoutTests/fast/dom/Element/script-tests/attr-param-typechecking.js
|
| diff --git a/LayoutTests/fast/dom/Element/script-tests/attr-param-typechecking.js b/LayoutTests/fast/dom/Element/script-tests/attr-param-typechecking.js
|
| index 198dc6611a6218c4532e8355888ba4d02d410577..88061fa11f3e1d62b4350b7a6ba658551234789b 100644
|
| --- a/LayoutTests/fast/dom/Element/script-tests/attr-param-typechecking.js
|
| +++ b/LayoutTests/fast/dom/Element/script-tests/attr-param-typechecking.js
|
| @@ -12,3 +12,7 @@ shouldThrow('element.removeAttributeNode("style");');
|
| shouldThrow('element.removeAttributeNode(null);');
|
| shouldThrow('element.removeAttributeNode(undefined);');
|
| shouldThrow('element.removeAttributeNode(new Object);');
|
| +shouldThrow('element.setAttributeNodeNS("style");');
|
| +shouldThrow('element.setAttributeNodeNS(null);');
|
| +shouldThrow('element.setAttributeNodeNS(undefined);');
|
| +shouldThrow('element.setAttributeNodeNS(new Object);');
|
|
|