gecko/layout/reftests/svg/sizing/dynamic--object-svg-unloaded-b.xhtml
Daniel Holbert 783f0d51f8 (No code changes) Change a bunch of non-executable files in layout/ to have non-executable mode.
Filetypes changed: .cpp .gif .h .html .list .png .svg .x-ccmap .xbl .xhtml .xul
2008-07-11 11:54:06 -07:00

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>