OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title>Unique Identifier</title> |
| 6 <link rel="help" href="http://www.mathml-association.org/MathMLinHTML5/S2.html#S
S1.SSS2"> |
| 7 <meta name="assert" content="Verify whether the getElementById() works for MathM
L elements."> |
| 8 <script src="/resources/testharness.js"></script> |
| 9 <script src="/resources/testharnessreport.js"></script> |
| 10 <script> |
| 11 setup({ explicit_done: true }); |
| 12 window.addEventListener("DOMContentLoaded", function() { |
| 13 var mtext = document.getElementById("MTEXT"); |
| 14 test(function() { |
| 15 assert_equals(mtext, document.body.firstElementChild.lastElementChild); |
| 16 }, "getElementById()"); |
| 17 done(); |
| 18 }); |
| 19 </script> |
| 20 </head> |
| 21 <body> |
| 22 <math> |
| 23 <mtext id="MTEXT_"></mtext> |
| 24 <mtext id="MTEX"></mtext> |
| 25 <mtext id="MTEXT"></mtext> |
| 26 </math> |
| 27 </body> |
| 28 </html> |
OLD | NEW |