mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
521 B
HTML
22 lines
521 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Accessible events testing for document</title>
|
||
|
<script>
|
||
|
function hideIFrame()
|
||
|
{
|
||
|
var iframe = document.getElementById("iframe");
|
||
|
|
||
|
var accRetrieval = Components.classes["@mozilla.org/accessibleRetrieval;1"].
|
||
|
getService(Components.interfaces.nsIAccessibleRetrieval);
|
||
|
accRetrieval.getAccessibleFor(iframe.contentDocument);
|
||
|
|
||
|
iframe.style.display = 'none';
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="hideIFrame();">
|
||
|
<iframe id="iframe"></iframe>
|
||
|
</body>
|
||
|
</html>
|