blob: ebd9caf3cd1e72dd42406c8a47ac15b3d5bc3dd3 [file] [log] [blame]
<html>
<head>
<style type="text/css">
.box {
width: 100px;
height: 100px;
background-color: green;
transform: rotate(30deg);
will-change: transform;
}
</style>
<script type="text/javascript">
if (window.testRunner)
testRunner.dumpAsText();
function doTest() {
if (window.testRunner && window.internals)
document.getElementById('layertree').innerText = internals.layerTreeAsText(document);
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<!-- Box with opaque background color and transform. -->
<!-- Layer transform does not affect the opaqueness of content. -->
<!-- GraphicsLayer::contentsOpaque for this box should be true. -->
<div class="box"></div>
<pre id="layertree"></pre>
</body>
</html>