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