mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-29 13:46:31 +00:00
Tests: Add some tests for partial layout tree updates
This commit is contained in:
parent
add8bf4790
commit
b798b1c07d
Notes:
github-actions[bot]
2025-01-18 20:02:29 +00:00
Author: https://github.com/awesomekling
Commit: b798b1c07d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3274
10 changed files with 180 additions and 0 deletions
|
@ -0,0 +1,38 @@
|
|||
<!doctype html>
|
||||
<style>
|
||||
* {
|
||||
outline: 1px solid black;
|
||||
}
|
||||
#foo {
|
||||
width: max-content;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
#foo div {
|
||||
background: green;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
#foo #c {
|
||||
background: orange;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
}
|
||||
#container {
|
||||
display: contents;
|
||||
}
|
||||
</style>
|
||||
<script src="../include.js"></script>
|
||||
<body><div id="foo"><div id="container"><div id="a"></div></div><div id="c"></div></body>
|
||||
<script>
|
||||
test(() => {
|
||||
println("foo width: " + getComputedStyle(foo).width);
|
||||
let b = document.createElement("div");
|
||||
b.setAttribute("id", "b");
|
||||
container.appendChild(b);
|
||||
println("a width: " + getComputedStyle(a).width);
|
||||
println("b width: " + getComputedStyle(b).width);
|
||||
println("c width: " + getComputedStyle(c).width);
|
||||
println("foo width: " + getComputedStyle(foo).width);
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue