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