mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
955 B
HTML
43 lines
955 B
HTML
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/licenses/publicdomain/
|
||
|
-->
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
||
|
<head>
|
||
|
|
||
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=294086 -->
|
||
|
|
||
|
<title>SVG embedded by reference by dynamic--object-svg-unloaded.xhtml</title>
|
||
|
|
||
|
<style type="text/css">
|
||
|
|
||
|
html {
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
margin: 0;
|
||
|
background: lime;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
var embedding_element;
|
||
|
|
||
|
function handle_load(e)
|
||
|
{
|
||
|
embedding_element = e.originalTarget.defaultView.frameElement;
|
||
|
setTimeout(notify_test_finished, 50); // allow some time for layout and rendering
|
||
|
}
|
||
|
|
||
|
function notify_test_finished()
|
||
|
{
|
||
|
embedding_element.ownerDocument.documentElement.removeAttribute('class');
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body onload="handle_load(event);" style="display:none;"></body>
|
||
|
</html>
|