blob: da94ee226f34f2111f528c8bf650b6e7ed1d7b67 [file] [log] [blame]
<!DOCTYPE>
<html>
<head>
<title>Empty Render Surface</title>
<style type="text/css" media="screen">
.container {
position: relative;
height: 0x;
width: 0px;
opacity:0.5;
}
.child {
will-change: transform;
height: 0px;
width: 0px;
background-color: red;
}
</style>
<script type="text/javascript" charset="utf-8">
if (window.testRunner)
testRunner.dumpAsText();
</script>
</head>
<body>
<p>This page tests that an empty render surface does not crash as reported in <a href='https://bugs.webkit.org/show_bug.cgi?id=51432'>this bug</a>. Pass if this does not crash.</p>
<div class="container">
<div class="child"> </div>
</div>
</body>
</html>