summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/box-shadow-border-radius.html
blob: 8a6025863f9a2244decfc555a395d6ba266f0489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html class="reftest-wait">
<head>
<style>
div#blurred {
	box-shadow: 0 0 50px 0 #000;
	position: absolute;
	width: 100px;
	height: 100px;
	top: 30px;
	left: 30px;

	border-radius: 40px;
}
</style>
</head>
<body>
<div id="blurred"></div>
<script>
function doTest() {
	var div = document.getElementById("blurred");
	div.style.left = '60px';
	document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>