haikuwebkit/LayoutTests/css3/filters/huge-region-composited.html

22 lines
413 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.big {
width: 50px;
height: 50px;
padding-bottom: 65536%;
-webkit-filter: blur(2147483648px);
-webkit-transform: translate3d(0, 0, 0);
}
</style>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<div class="big">This element is too big to filter.</div>
</body>
</html>