mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
22 lines
441 B
HTML
22 lines
441 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var table = document.createElement("table");
|
|
document.body.appendChild(table);
|
|
table.contentEditable = "true";
|
|
table.focus();
|
|
try {
|
|
// This will throw, since it's attempting to inject a list inside a table
|
|
document.execCommand("insertunorderedlist", false, null);
|
|
} catch (e) {}
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();"></body>
|
|
</html>
|