Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <script> |
michael@0 | 4 | |
michael@0 | 5 | function boom() |
michael@0 | 6 | { |
michael@0 | 7 | var MATHML_NS = "http://www.w3.org/1998/Math/MathML"; |
michael@0 | 8 | |
michael@0 | 9 | var mtr = document.createElementNS(MATHML_NS, 'mtr'); |
michael@0 | 10 | var mtable = document.createElementNS(MATHML_NS, 'mtable'); |
michael@0 | 11 | |
michael@0 | 12 | document.body.appendChild(mtr); |
michael@0 | 13 | mtr.appendChild(mtable); |
michael@0 | 14 | } |
michael@0 | 15 | |
michael@0 | 16 | </script> |
michael@0 | 17 | </head> |
michael@0 | 18 | |
michael@0 | 19 | <body onload="boom()"> |
michael@0 | 20 | |
michael@0 | 21 | </body> |
michael@0 | 22 | </html> |