1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 07:55:07 +00:00
serenity/Tests/LibWeb/Layout/input/table/propagate-style-update-to-wrapper.html

13 lines
No EOL
289 B
HTML

<script>
document.addEventListener("DOMContentLoaded", function () {
let t = document.querySelector("#t");
t.style.position = "absolute";
window.getComputedStyle(t).position;
}, false);
</script>
<table id="t">
<tr>
<td></td>
</tr>
</table>