summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/321058-2.xhtml
blob: 44b2a3456b05d14f719782344a10fed4721ef9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>

<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait" onload="setTimeout(boom, 30);">
        
<script><![CDATA[
        
function boom()
{
  var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";

  var popupgroup = document.createElementNS(XUL_NS, 'popupgroup');
  document.documentElement.appendChild(popupgroup);
  document.documentElement.removeChild(popupgroup);

  var tooltip = document.createElementNS(XUL_NS, 'tooltip');
  document.documentElement.appendChild(tooltip);
  
  document.documentElement.removeAttribute("class");
}

]]></script>

</window>