blob: d32a322d0b2693329ebe2777b0b3d2f19ebb7bac [file] [edit]
<style>
.hidden { visibility: hidden }
.square { width: 100px; height: 100px; }
</style>
<div id=c class=hidden>
<div id=t class=square></div>
</div>
<script>
// Save to match result cache.
t.style.backgroundColor = "red";
document.body.offsetLeft;
// Trigger fast-path inheritance.
c.classList.remove("hidden");
document.body.offsetLeft;
// Retrieve from match result cache.
t.style.backgroundColor = "green";
</script>