mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 08:34:59 +00:00
12 lines
293 B
HTML
12 lines
293 B
HTML
<!DOCTYPE html>
|
|
<style type="text/css">
|
|
#box { display: none; }
|
|
</style>
|
|
<div id="box"></div>
|
|
<script src="include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const rect = document.getElementById("box").getBoundingClientRect();
|
|
println(JSON.stringify(rect));
|
|
});
|
|
</script>
|