Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that disables it given conditions:
- os == "android" : bug 1550895 (frequently fails on geckoview)
- This WPT test may be referenced by the following Test IDs:
- /mathml/relations/html5-tree/href-click-002.tentative.html - WPT Dashboard Interop Dashboard
<!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="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>