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