blob: d2b9f5cc5569a7acf3a31a728cfb505011a00d05 [file] [log] [blame]
<html>
<head>
<style type="text/css">
.box {
width: 100px;
height: 100px;
}
.opaque-background {
background-color: green;
}
.translucent {
opacity: 0.5;
}
.composited {
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 but global opacity. -->
<!-- Global opacity does not affect the opaqueness of content. -->
<!-- GraphicsLayer::contentsOpaque for this box should be true. -->
<div class="box opaque-background translucent composited"></div>
<pre id="layertree"></pre>
</body>
</html>