gecko-dev/editor/libeditor/crashtests/1274050.html
2017-10-12 22:41:14 -04:00

12 lines
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>