Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/moz-only/foreignObject-zoom-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
onload="startTest()" reftest-zoom="2" class="reftest-wait"
style="width:50%; height:50%;">
<title>Testcase for zoomed foreignObject</title>
<style type="text/css">
* { margin:0;height:100%;width:100% }
</style>
<foreignObject width="100%" height="100%">
<body>
<div id="div" style="width:20px;height:20px;background:yellow;"/>
</body>
</html>
</foreignObject>
<script type="text/javascript">
function startTest() {
document.addEventListener("MozReftestInvalidate", doTest, false);
}
function doTest() {
var elem = document.elementFromPoint(25, 25);
var div = document.getElementById("div");
div.setAttribute("style", "background:" + ((elem == div) ? "red" : "lime") + ";");
document.documentElement.removeAttribute("class");
}
</script>
</svg>