blob: c70243f94bffbeb089b9ea50f7bc69e54e58eb8f [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<div id="host">
<div>
<div id="inner"></div>
</div>
</div>
<script>
const root = host.attachShadow({mode:"open"});
root.innerHTML = "<slot></slot>";
test(() => {
host.offsetTop;
host.style.display = "inline";
inner.style.display = "inline";
host.offsetTop;
}, "This test should not leave the tree dirty, causing DCHECK failures.");
</script>