mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add crashtest
This commit is contained in:
parent
3a0d1ea5fa
commit
32359a4e84
29
layout/base/crashtests/376223-1.xhtml
Normal file
29
layout/base/crashtests/376223-1.xhtml
Normal file
@ -0,0 +1,29 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
<head>
|
||||
<script>
|
||||
|
||||
function boom()
|
||||
{
|
||||
var listbox = document.getElementById("listbox");
|
||||
var td = document.getElementById("td");
|
||||
|
||||
var listitem = document.createElementNS(XUL_NS, "listitem");
|
||||
|
||||
listbox.appendChild(listitem);
|
||||
listbox.appendChild(td);
|
||||
}
|
||||
|
||||
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="boom();">
|
||||
|
||||
<table><tbody><tr><td id="td">X</td></tr></tbody></table>
|
||||
|
||||
<xul:listbox id="listbox"/>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -41,6 +41,7 @@ load 371681-1.xhtml
|
||||
load 372237-1.html
|
||||
load 372475-1.xhtml
|
||||
load 372550-1.html
|
||||
load 376223-1.xhtml
|
||||
load 379419-1.xhtml
|
||||
load 379799-1.html
|
||||
load 379920-1.svg
|
||||
|
Loading…
Reference in New Issue
Block a user