| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 function log(str) { | 4 function log(str) { |
| 5 var li = document.createElement("li"); | 5 var li = document.createElement("li"); |
| 6 li.appendChild(document.createTextNode(str)); | 6 li.appendChild(document.createTextNode(str)); |
| 7 var console = document.getElementById("console"); | 7 var console = document.getElementById("console"); |
| 8 console.appendChild(li); | 8 console.appendChild(li); |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 //should be rendered as "\u0958\u0909 \u00e4" in html. | 39 //should be rendered as "\u0958\u0909 \u00e4" in html. |
| 40 assertEqual("devanagari + a with diaeresis", string, "\u0915\u093c\u0909\u00
09a\u0308"); | 40 assertEqual("devanagari + a with diaeresis", string, "\u0915\u093c\u0909\u00
09a\u0308"); |
| 41 } | 41 } |
| 42 </script> | 42 </script> |
| 43 </head> | 43 </head> |
| 44 <body> | 44 <body> |
| 45 <div id="div">क़उ	ä</div> | 45 <div id="div">क़उ	ä</div> |
| 46 <ul id="console"></ul> | 46 <ul id="console"></ul> |
| 47 </body> | 47 </body> |
| 48 </html> | 48 </html> |
| OLD | NEW |