editor/libeditor/html/crashtests/414178-1.html

changeset 2
7e26c7da4463
equal deleted inserted replaced
-1:000000000000 0:bad3bbd0379e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script type="text/javascript">
5
6 function boom()
7 {
8 var table = document.createElement("table");
9 document.body.appendChild(table);
10 table.contentEditable = "true";
11 table.focus();
12 try {
13 // This will throw, since it's attempting to inject a list inside a table
14 document.execCommand("insertunorderedlist", false, null);
15 } catch (e) {}
16 }
17
18 </script>
19 </head>
20
21 <body onload="boom();"></body>
22 </html>

mercurial