gecko-dev/layout/generic/crashtests/580504-1.xhtml
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

23 lines
601 B
HTML

<html xmlns="http://www.w3.org/1999/xhtml" style="-moz-column-width: 1px">
<head>
<script>
<![CDATA[
function boom()
{
document.getElementById("d").focus();
document.execCommand("inserthtml", false, "<i><font><html><form>a</form></font>");
document.execCommand("justifyright", false, "#ffddff");
}
window.addEventListener("load", boom);
]]>
</script>
</head>
<div style="position: relative;"><div style="float: left; padding: 10px 20px 0pt;"><div contenteditable="true" style="position: absolute;" id="d"></div></div><div style="clear: both; padding: 20px 20px 15px;"></div></div>
</html>