blob: b248e03ea05fb85b89ab50e782d37ffec9075ea9 [file] [log] [blame]
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
document.addEventListener("DOMContentLoaded", () => {
window.find("A");
const range = document.createRange();
getSelection().addRange(range);
range.setEnd(document.querySelector("template").content, 0);
document.execCommand("enableInlineTableEditing", false, "true");
});
</script>
<body>
<template>
</template>
A
<time contenteditable></time>
</body>
</html>