gecko-dev/layout/reftests/invalidation/clip-path-invalidation-1a.html
Florian Quèze 85611a7b6d Bug 1331081 - script generated patch to omit addEventListener/removeEventListener's third parameter when it's false, r=jaws.
--HG--
extra : rebase_source : a22344ee1569f58f1f0a01017bfe0d46a6a14602
2017-01-17 11:50:25 +01:00

41 lines
1006 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta charset="utf-8">
<title>CSS Masking: clipPath invalidation.</title>
<style type="text/css">
div.outer {
position: absolute;
background-color: purple;
border: solid purple;
width: 10px;
height: 10px;
transform: scale(20);
transform-origin: top left;
}
div.clipped {
clip-path: url(#cp1);
}
</style>
</head>
<body>
<div id="d1" class="outer clipped"></div>
<script type="text/javascript">
function changeTransform()
{
document.getElementById("d1").style.transform = "scale(10)";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate",
changeTransform);
</script>
<svg height="0">
<clipPath id="cp1">
<rect x="10" y="10" width="5" height="5"/>
</clipPath>
</svg>
</body>
</html>