Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/selectall-after-enableobjectresizing.html - WPT Dashboard Interop Dashboard
<!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>