mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
719 B
Plaintext
26 lines
719 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
|
||
|
<?xml-stylesheet href="chrome://global/skin/" 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>
|