blob: 201a2d789aa5eef16045fc90fa44293aea9e7792 [file] [log] [blame]
<!DOCTYPE html>
<script>jsTestIsAsync = true;</script>
<script src="../../resources/js-test.js"></script>
<div id="root"></div>
<script>
onload = function() {
requestAnimationFrame(function() {
div = root.appendChild(document.createElement("div"));
div.textContent = "Test that implicit attach marks all ancestors on insert.";
shouldBeTrue("div.offsetTop > 0");
finishJSTest();
});
};
</script>