author | Markus Stange <mstange@themasta.com> |
Mon, 15 Jun 2015 19:20:59 -0400 | |
changeset 249905 | 3f025568ad349d7b4a4da45feef6812c4e4d4101 |
parent 200218 | a357afff88300587c1905f01819c777f461af7eb |
permissions | -rw-r--r-- |
<!DOCTYPE html> <html> <head> <script> function boom() { var s = "x"; for (var i = 0; i < 15; ++i) s = s + s; var t = document.createTextNode(s); document.body.appendChild(t); window.getSelection().collapse(t, s.length); document.execCommand("insertText", false, "a"); } </script> </head> <body contenteditable="true" onload="boom();"></body> </html>