mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 07:55:07 +00:00
13 lines
No EOL
289 B
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> |