gecko-dev/layout/reftests/svg/foreignObject-display-01.svg

23 lines
728 B
XML
Raw Normal View History

<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
onload="setTimeout(handleLoad, 0);">
<title>Testcase for removing display:none from foreignObject child</title>
<script type="application/ecmascript">
<![CDATA[
// This is from https://bugzilla.mozilla.org/show_bug.cgi?id=281260
// The setTimeout is necessary since it was _after_ loading that we failed
function handleLoad(event)
{
document.getElementById('div').style.display = 'block';
}
]]>
</script>
<rect width="100%" height="100%" fill="red"/>
<foreignObject width="100%" height="100%">
<div xmlns="http://www.w3.org/1999/xhtml" id="div"
style="display:none; background:lime; width:100%; height:100%;"/>
</foreignObject>
</svg>