OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE> | |
yosin_UTC9
2014/04/22 04:42:52
nit: Please use "<!DOCTYPE html>"
| |
2 <html> | |
3 <body> | |
4 <div> | |
5 <ul contenteditable><li>one</li><li></li><li id="li">three</li></ul> | |
6 </div> | |
7 <script src="../../resources/dump-as-markup.js"></script> | |
8 <script> | |
9 var li = document.getElementById("li"); | |
yosin_UTC9
2014/04/22 04:42:52
nit: Please use single quote in JavaScript.
https:
ojan
2014/04/30 01:59:59
For future reference, we don't use google style in
| |
10 var selection = window.getSelection(); | |
11 selection.collapse(li, 0); | |
12 document.execCommand("Delete"); | |
13 Markup.dump(document.querySelector('div')); | |
14 </script> | |
15 </body> | |
16 </html> | |
17 | |
OLD | NEW |