LibWeb: Add AccumulatedVisualContext debugging infrastructure

This commit is contained in:
Aliaksandr Kalenik
2026-01-13 20:40:48 +01:00
committed by Alexander Kalenik
parent 009ddd4823
commit a87b5c722d
Notes: github-actions[bot] 2026-01-15 18:52:19 +00:00
45 changed files with 1065 additions and 111 deletions

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<script src="../include.js"></script>
<style>
.perspective-container {
perspective: 500px;
width: 200px;
height: 200px;
}
.rotated {
width: 100px;
height: 100px;
background: blue;
transform: rotateY(30deg);
}
</style>
<div class="perspective-container">
<div class="rotated">3D</div>
</div>
<script>
test(() => {
println(internals.dumpDisplayList());
});
</script>