2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2025-01-15 12:37:30 -03:00
|
|
|
<b>foo<div>bar</div>baz</b>
|
|
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
const b = document.querySelector('b');
|
|
|
|
|
|
|
|
|
|
println(`b.offsetTop: ${b.offsetTop}`);
|
|
|
|
|
println(`b.offsetLeft: ${b.offsetLeft}`);
|
|
|
|
|
println(`b.offsetWidth: ${b.offsetWidth}`);
|
|
|
|
|
println(`b.offsetHeight: ${b.offsetHeight}`);
|
|
|
|
|
});
|
|
|
|
|
</script>
|