mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
09128a75d3
--HG-- rename : js/xpconnect/tests/mochitest/test_bug462428.html => dom/bindings/test/test_lookupGetter.html
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<script>
|
|
document.childNodes.expando = "foo";
|
|
|
|
function getNodeList() {
|
|
var nodeList = document.createElement("select").options;
|
|
nodeList.expando = "foo";
|
|
return nodeList;
|
|
}
|
|
|
|
function tryToUseNodeList(nodeList, ok) {
|
|
function expectException(op, reason) {
|
|
try {
|
|
var result = op();
|
|
ok(false, "should have thrown an exception, got: " + result);
|
|
} catch (e) {
|
|
ok(/Permission denied/.test(e.toString()), reason);
|
|
}
|
|
}
|
|
|
|
expectException(function() { nodeList.length = 2; }, "should not be able to set attributes");
|
|
expectException(function() { nodeList.item(0); }, "should not have access to any functions");
|
|
expectException(function() { nodeList.foo = "foo"; }, "should not be able to add expandos");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|