зеркало из https://github.com/mozilla/gecko-dev.git
22 строки
575 B
HTML
22 строки
575 B
HTML
<!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>
|