Reftest for bug 484677

This commit is contained in:
Robert Longson 2009-03-29 15:04:08 +01:00
parent b68be373db
commit 7c5e7b547d
2 changed files with 35 additions and 1 deletions

View File

@ -0,0 +1,33 @@
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
-->
<svg xmlns="http://www.w3.org/2000/svg"
onload="startTest()" reftest-zoom="1.5" class="reftest-wait">
<title>Testcase for zoomed foreignObject</title>
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=484677 -->
<style type="text/css">
* { margin:0;height:100%;width:100% }
</style>
<foreignObject width="100%" height="100%">
<html xmlns="http://www.w3.org/1999/xhtml">
<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>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -10,4 +10,5 @@ fails == xbl-grad-ref--grad-in-resources-01.svg pass.svg
fails == xbl-grad-ref--grad-in-resources-02.svg pass.svg
# Tests for zooming with the full page zoom UI
skip == zoomed-svg-with-viewBox-01.svg zoomed-svg-with-viewBox-01-ref.svg
== foreignObject-zoom-01.svg pass.svg
skip == zoomed-svg-with-viewBox-01.svg zoomed-svg-with-viewBox-01-ref.svg