Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/text/reftest.list
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
-->
<html class="reftest-wait">
<iframe style="width: 400px; height: 400px; border: 0" src="multiple-x-percentages-2-iframe.svg"></iframe>
<script>
function doTest() {
var iframe = document.querySelector("iframe");
iframe.style.width = "200px";
iframe.style.height = "200px";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
setTimeout(doTest, 4000); // fallback for running outside reftest
</script>