gecko-dev/editor/libeditor/crashtests/1274050.html

12 строки
283 B
HTML

<body>
<table contenteditable="true"></table>
</body>
<script>
window.onload = function() {
document.execCommand("useCSS", false, false);
document.designMode = 'on';
document.execCommand("insertunorderedlist", false);
document.execCommand("justifyfull", false);
};
</script>