40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!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>
|