mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
12 lines
258 B
HTML
12 lines
258 B
HTML
|
<!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>
|