Bug 1324505 - Part 2. Add crash test. r=masayuki

MozReview-Commit-ID: 7NJr1fGKBZA

--HG--
extra : rebase_source : 7ffb4131ca5e1a4eac395d4cbdf230e30fb4914c
This commit is contained in:
Makoto Kato 2017-01-11 19:04:32 +09:00
parent 34ff40e936
commit 7aef46317d
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<script>
addEventListener("DOMContentLoaded", function(){
let root = document.documentElement;
while(root.firstChild) {
root.removeChild(root.firstChild);
}
let o_0 = document.createElement("body");
root.appendChild(o_0);
o_0.appendChild(document.createElement("table"));
o_0.appendChild(document.createElement("canvas"));
let o_1 = document.createElement("canvas");
o_0.appendChild(o_1);
o_1.setAttribute("contenteditable", "true");
setTimeout(function(){
document.execCommand("selectAll", false, "Marker felt");
document.designMode = 'on';
document.execCommand("insertorderedlist", false, null);
document.execCommand("insertorderedlist", false, null);
}, 0);
});
</script>
</html>

View File

@ -71,3 +71,4 @@ load 1264921.html
load 1272490.html
load 1317704.html
load 1317718.html
load 1324505.html