1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> |
---|
5 | <title>test</title> |
---|
6 | </head> |
---|
7 | <body> |
---|
8 | <h1>Editable section</h1> |
---|
9 | <div contenteditable="true" style="margin-bottom:25px; border:5px solid black;"> |
---|
10 | |
---|
11 | <span style="font-weight:bold;">Put cursor before one, press SHIFT+down arrow and delete - Safari, Chrome, IE and FF have problems here.</span> |
---|
12 | <ul> |
---|
13 | <li> |
---|
14 | one |
---|
15 | <ul> |
---|
16 | <li> |
---|
17 | one one</li> |
---|
18 | <li> |
---|
19 | one two</li> |
---|
20 | </ul> |
---|
21 | </li> |
---|
22 | <li> |
---|
23 | two</li> |
---|
24 | </ul> |
---|
25 | </div> |
---|
26 | |
---|
27 | </body> |
---|
28 | </html> |
---|