blob: 14196f8345c621ee002c707330a71c80f648893d [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test.js"></script>
</head>
<body>
<script>
description('This tests that items in a NodeList cannot be called indexed using [[Call]].');
var nodeList = document.getElementsByTagName('div');
shouldThrow("nodeList(0)");
</script>
</body>
</html>