mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
11 lines
258 B
HTML
11 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>
|