694880-3.html (232B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 :read-only { color: red; } 5 :read-write { color: green; } 6 </style> 7 <body onload="document.designMode='on';document.designMode='off'"> 8 <div contenteditable>test</div> 9 </body> 10 </html>