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