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