blob: 6867d364141d26b755b65290a30f81d74660f700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function load() {
document.getElementById("spacer").addEventListener("DOMNodeInserted", () => {
document.getElementById("style").appendChild(
document.getElementById("table"));
document.documentElement.classList.remove("reftest-wait");
});
document.execCommand("insertOrderedList", false);
}
</script>
</head>
<body onload="load()">
<table id="table"></table>
<style id="style"></style>
<spacer id="spacer" contenteditable="true">
<p id="p"></p>
</body>
</html>
|