Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <script> | |
| 2 document.addEventListener("DOMSubtreeModified", | |
| 3 function () { | |
| 4 document.designMode = "on"; | |
| 5 document.execCommand("SelectAll"); | |
| 6 window.stop(); | |
| 7 document.execCommand("InsertOrderedList", false); | |
| 8 window.setTimeout(notifyFinish, 0); | |
| 9 }, true); | |
| 10 | |
| 11 window.onload = function () { | |
| 12 document.open(); | |
| 13 }; | |
| 14 | |
| 15 function notifyFinish() | |
| 16 { | |
| 17 window.parent.postMessage("FINISH", "*"); | |
| 18 } | |
| 19 </script> | |
| 20 <iframe> | |
| 21 </iframe><body class="class2"> | |
| OLD | NEW |