mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:38:13 +00:00
18 lines
412 B
HTML
18 lines
412 B
HTML
<!DOCTYPE html>
|
|
<style type="text/css">
|
|
#box {
|
|
margin-top: 500px;
|
|
padding-top: 100px;
|
|
background-color: navy;
|
|
width: 100%;
|
|
height: 50px;
|
|
}
|
|
</style>
|
|
<div id="box"></div>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const rect = document.getElementById("box").getBoundingClientRect();
|
|
println(JSON.stringify(rect));
|
|
});
|
|
</script>
|