blob: 15a790650a17e2c706ccefef8749e72ffabf2d11 [file] [log] [blame]
<!doctype html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
[
"getNamedItem()",
"getNamedItemNS()",
"getNamedItemNS('http://www.w3.org/2000/svg')",
"item()",
"removeNamedItem()",
"removeNamedItemNS()",
"removeNamedItemNS('http://www.w3.org/2000/svg')",
"setNamedItem()",
"setNamedItemNS()",
].forEach(function(expr)
{
window.attributes = document.body.attributes;
shouldThrow("attributes." + expr);
});
</script>
</body>
</html>