summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/resetting-a-form/reset-form-event-realm.html
blob: 6c125c46d06a59a3abccbed6d3101866c920f480 (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
32
33
34
35
36
37
38
<!DOCTYPE html>
<meta charset="utf-8">
<title>reset() event firing realm</title>
<link rel="help" href="https://html.spec.whatwg.org/#resetting-a-form">
<link rel="help" href="https://dom.spec.whatwg.org/#concept-event-fire">
<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<iframe src="support/reset-form-event-realm.html"></iframe>
<iframe></iframe>

<script>
"use strict";

async_test(t => {
  window.onload = t.step_func_done(() => {
    const frame0Form  = frames[0].document.forms[0];
    const frame1Body = frames[1].document.body;

    frame1Body.appendChild(frame0Form);

    let resetCalled = false;
    frame0Form.onreset = t.step_func(ev => {
      resetCalled = true;

      const functionConstructorInEvRealm = ev.constructor.constructor;
      const functionConstructorInFormRealm = frame0Form.constructor.constructor;

      assert_equals(functionConstructorInEvRealm, functionConstructorInFormRealm,
        "the event must be created in the realm of the target");
    });

    frame0Form.reset();
    assert_true(resetCalled, "The reset event handler must have been called");
  });
}, "reset()'s event must be fired in the Realm of the target")
</script>