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