18 lines
328 B
HTML
18 lines
328 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
"use strict";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
document.execCommand("enableObjectResizing");
|
|
document.execCommand("selectAll");
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<figcaption contenteditable="true">
|
|
<canvas>
|
|
</canvas></figcaption></body>
|
|
</html>
|