haikuwebkit/LayoutTests/compositing/layer-creation/assert-on-inline-element-wi...

22 lines
401 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>This tests that we make a self painting layer for the inline when will-change requires one.</title>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<style>
span {
outline: 5px solid green;
-webkit-columns: 100px 1;
will-change: opacity;
}
</style>
</head>
<body>
PASS if no assert in debug.
<span><div></div></span>
</body>
</html>