summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/relations/html5-tree/href-click-002.tentative.html
blob: bc5b9a00cfa09410ccc2c5e09a806ff6b7fb4d28 (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
39
40
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="utf-8"/>
<title>href click</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#attributes-common-to-html-and-mathml-elements">
<link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript">
<link rel="match" href="href-click-002.tentative-ref.html"/>
<meta name="assert" content="Verify that a click on an element bubbles to an ancestor link.">
<script type="text/javascript">
  function test()
  {
    var event = new MouseEvent('click', {bubbles: true, cancelable: true});
    document.getElementById('space').dispatchEvent(event);
    document.documentElement.className = "";
  }
</script>
</head>
<body onload="test()">

  <p>This test passes if you see a green square.</p>

  <div style="width: 150px; height: 150px; overflow: hidden">
    <math>
      <mrow href="#target">
        <mrow>
          <mrow>
            <mspace id="space" width="150px" height="150px" style="background: red"/>
          </mrow>
        </mrow>
      </mrow>
    </math>
    <div style="height: 500px;"></div>
    <math id="target">
      <mspace width="150px" height="150px" style="background: green"/>
    </math>
  </div>

</body>
</html>