mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
10 lines
232 B
HTML
10 lines
232 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
:read-only { color: red; }
|
|
:read-write { color: green; }
|
|
</style>
|
|
<body onload="document.designMode='on';document.designMode='off'">
|
|
<div contenteditable>test</div>
|
|
</body>
|
|
</html>
|