[w3c/editing] Can EditContext works as normally even in designMode if set to the documentElement and/or body? (Issue #450)

```
<script>
addEventListener("load", () => {
  document.designMode = "on";
  document.documentElement.editContext = new EditContext();
}, {once: true});
</script>
```
and/or
```
<script>
addEventListener("load", () => {
  document.designMode = "on";
  document.body.editContext = new EditContext();
}, {once: true});
</script>
```
Then, the document should work as currently? Or should it work as `EditContext` application? (I think that the latter is terrible if the document has multiple `<body>` elements.)

-- 
Reply to this email directly or view it on GitHub:
https://github.com/w3c/editing/issues/450
You are receiving this because you are subscribed to this thread.

Message ID: <w3c/editing/issues/450@github.com>

Received on Friday, 13 October 2023 05:48:05 UTC