mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
10 lines
321 B
HTML
10 lines
321 B
HTML
<!DOCTYPE html>
|
|
<link rel="help" href="https://crbug.com/958381">
|
|
<table style="position: relative; max-height: 10px;">
|
|
<caption>caption</caption>
|
|
<td><div id=target style="position: absolute;"></div></td>
|
|
</table>
|
|
<script>
|
|
document.body.offsetTop;
|
|
document.getElementById('target').style.top = '10px';
|
|
</script>
|