blob: b03a01761aad9e6973dd81926a0341d04458b02a [file] [log] [blame]
<!DOCTYPE html>
<style>
.container {
contain: paint;
}
.fixed {
position: fixed;
}
</style>
<div class="container" id="test">
<div class="fixed">Test passes if no crash.</div>
</div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var test = document.querySelector("#test");
test.style.display = "inline"
</script>