File: crossiframe.html

package info (click to toggle)
firefox-esr 78.15.0esr-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,301,156 kB
  • sloc: cpp: 5,665,905; javascript: 4,798,386; ansic: 2,878,233; python: 977,004; asm: 270,347; xml: 181,456; java: 111,756; sh: 72,926; makefile: 21,819; perl: 13,380; cs: 4,725; yacc: 4,565; objc: 3,026; pascal: 1,787; lex: 1,720; ada: 1,681; exp: 505; php: 436; lisp: 260; awk: 152; ruby: 103; csh: 80; sed: 53; sql: 45
file content (95 lines) | stat: -rw-r--r-- 3,546 bytes parent folder | download | duplicates (4)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>

<head>
  <meta charset=utf-8 />
  <title>Event Timing: entries should be observable by its own frame.</title>
  <meta name="timeout" content="long">
</head>

<body>
<button id='button'>Generate a 'click' event</button>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/testdriver.js></script>
<script src=/resources/testdriver-actions.js></script>
<script src=/resources/testdriver-vendor.js></script>

<script src=resources/event-timing-test-utils.js></script>
<iframe id='iframe' src=resources/crossiframe-childframe.html></iframe>
<script>
  let clickTimeMin;
  let clickDone;

  function validateEntries(entries) {
    assert_equals(entries.length, 1, "Only 1 entry should be received");
    const entry = entries[0];
    verifyClickEvent(entry, 'button', true);

    assert_less_than(entry.processingStart, clickDone,
        "The entry's processing start should be before clickDone.");
    assert_greater_than(entry.startTime, clickTimeMin,
        "The entry's start time should be later than clickTimeMin.");
  }

  function validateChildFrameEntries(childFrameData) {
    if (childFrameData === "failed") {
      assert_unreached("Did not receive exactly one entry from child as expected");
    }
    // |childFrameData| has properties with the same names as its
    // PerformanceEventTiming counterpart.
    verifyClickEvent(childFrameData, null);
    assert_equals(childFrameData.target, 'iframe_div');

    assert_less_than(childFrameData.processingStart, childFrameData.clickDone,
        "The entry's processing start should be before than the child frame's clickDone.");
    assert_greater_than(childFrameData.startTime, childFrameData.clickTimeMin,
        "The entry's start time should be later than the child frame's \
        clickTimeMin.");
  }

  promise_test(async t => {
    assert_implements(window.PerformanceEventTiming, "Event Timing is not supported");
    clickTimeMin = performance.now();
    let observedMouseDown = false;
    const observerPromise = new Promise(resolve => {
      new PerformanceObserver(t.step_func(entries => {
        const mouseDowns = entries.getEntriesByName('mousedown');
        // Ignore the callback if there were no mousedown entries.
        if (mouseDowns.length === 0)
          return;

        assert_false(observedMouseDown,
            "Observer of main frames should only capture main-frame event-timing entries");
        validateEntries(mouseDowns);
        observedMouseDown = true;
        resolve();
      })).observe({type: 'event'});
    });
    await clickAndBlockMain('button');
    clickDone = performance.now();
    await observerPromise;
    const childFrameEntriesPromise = new Promise(resolve => {
      window.addEventListener("message", (event) => {
        resolve(event.data);
      }, false);
    });

    let iframe = document.getElementById('iframe');
    const iframeX = document.getElementById('iframe').offsetLeft;
    const iframeY = document.getElementById('iframe').offsetTop;
    // Tap on the iframe, with an offset of 10 to target the div inside it.
    const actions = new test_driver.Actions()
        .pointerMove(iframeX + 10, iframeY + 10)
        .pointerDown()
        .pointerUp()
    actions.send();
    const childFrameData = await childFrameEntriesPromise;
    t.step(() => {
      validateChildFrameEntries(childFrameData);
    });
  }, "Event Timing: entries should only be observable by its own frame.");

</script>
</body>
</html>