mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
429 B
Plaintext
16 lines
429 B
Plaintext
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
||
|
onload="setTimeout(doTest, 0)"
|
||
|
class="reftest-wait">
|
||
|
<script>
|
||
|
function doTest() {
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
<menulist>
|
||
|
<menupopup>
|
||
|
<html:embed type="application/x-test"></html:embed>
|
||
|
</menupopup>
|
||
|
</menulist>
|
||
|
</window>
|