blob: d4e69df324a6cf78c1dd5c0a2e216c0703cc1ed2 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Unique Identifier</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">
<meta name="assert" content="Verify whether the getElementById() works for MathML elements.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
setup({ explicit_done: true });
window.addEventListener("DOMContentLoaded", function() {
var mtext = document.getElementById("MTEXT");
test(function() {
assert_equals(mtext, document.body.lastElementChild.lastElementChild);
}, "getElementById()");
done();
});
</script>
</head>
<body>
<div id="log"></div>
<math>
<mtext id="MTEXT_"></mtext>
<mtext id="MTEX"></mtext>
<mtext id="MTEXT"></mtext>
</math>
</body>
</html>
|