summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/NodeList-static-length-getter-tampered-indexOf-1.html
blob: 5ce4146757199d0b0626f7b4867dab760b775dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<meta charset="utf-8">
<meta name=timeout content=long>
<title>NodeList (static collection) "length" getter tampered (Array.prototype.indexOf)</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<body>

<script src="support/NodeList-static-length-tampered.js"></script>
<script>
test(() => {
    const nodeList = makeStaticNodeList(100);

    for (var i = 0; i < 50; i++) {
        if (i === 25)
            Object.defineProperty(nodeList, "length", { get() { return 10; } });

        assert_equals(arrayIndexOfNodeList(nodeList), i >= 25 ? -1 : 50);
    }
});
</script>