blob: 1d1f2104225b234ac096814163331b8f0f203b1a [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
.composited {
will-change: transform;
}
.filter {
filter: invert(100%);
}
</style>
<!-- There should be a bright pink box on this page -->
<body>
<img class="composited" onload="load(this)" src="../../images/resources/green-256x256.jpg">
</body>
<script>
function load(element) {
element.classList.add('filter');
setTimeout(done, 0);
}
function done() {
if (window.testRunner)
testRunner.notifyDone();
}
if (window.testRunner) {
testRunner.waitUntilDone();
}
</script>
</html>