blob: 0a697409af594ce6f456415c042f0f6df05e11d5 [file] [log] [blame]
commit-queue@webkit.orgd933d412011-06-20 19:35:50 +00001<html xmlns='http://www.w3.org/1999/xhtml'>
2<head>
3<title>msubsup javascript superscript change test</title>
4</head>
5<body>
6<p>
7<math xmlns='http://www.w3.org/1998/Math/MathML'>
8<msubsup id="subsup"><mi>x</mi><mn>1</mn><mi>k</mi></msubsup>
9</math>
10</p>
11<script type='text/javascript'>
12var msubsup = document.getElementById("subsup");
13msubsup.removeChild(msubsup.firstChild.nextSibling.nextSibling);
14var sup = document.createElementNS("http://www.w3.org/1998/Math/MathML","mi");
15sup.appendChild(document.createTextNode("j"));
16msubsup.appendChild(sup);
17</script>
18</body>
19</html>