Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html lang="en" class="reftest-wait">
<meta charset="utf-8">
<title>Changes to border-radius bounding rect should invalidate correctly.</title>
<style>
body {
margin: 0;
}
#background {
width: 200px;
height: 200px;
border-radius: 100px;
overflow:hidden;
}
#inner {
width: 400px;
height: 400px;
background-color: red;
}
</style>
<div id="background">
<div id="inner"></div>
</div>
<script>
function doTest() {
document.querySelector("#background").style.width = "300px";
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>