summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/the-window-object/window-indexed-properties-delete-no-cache.html
blob: 22262943aadd775424645d79b0dfb2429f837e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<meta charset=utf-8>
<title>Deletion of WindowProxy's indexed properties is not cached</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/window-object.html#windowproxy-delete">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
const iframe = document.createElement("iframe");
iframe.srcdoc = "";

test(() => {
  assert_equals(window.length, 0);
  for (let i = 0; i < 1e5; i++) {
    assert_true(delete window[0]);
  }

  document.body.append(iframe);
  assert_false(delete window[0]);
}, "Absence of index '0' is not cached");

test(() => {
  assert_equals(window.length, 1);
  for (let i = 0; i < 1e5; i++) {
    assert_false(delete window[0]);
  }

  iframe.remove();
  assert_true(delete window[0]);
}, "Presence of index '0' is not cached");
</script>