mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
13 lines
317 B
HTML
13 lines
317 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<div style="overflow: auto; transform:translate(100px,0);">
|
|
<div style="position: relative;"><div id="x" style="position:fixed; display:none"></div></div>
|
|
</div>
|
|
<script>
|
|
document.body.getBoundingClientRect();
|
|
document.getElementById('x').style.display = '';
|
|
</script>
|
|
</body>
|
|
</html>
|