diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /layout/reftests/bugs/1209603-1.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/bugs/1209603-1.html')
-rw-r--r-- | layout/reftests/bugs/1209603-1.html | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1209603-1.html b/layout/reftests/bugs/1209603-1.html new file mode 100644 index 0000000000..2d606f1377 --- /dev/null +++ b/layout/reftests/bugs/1209603-1.html @@ -0,0 +1,50 @@ +<!DOCTYPE HTML> +<title>Testcase, bug 1209603</title> +<style> + +p { + font-size: 2em; + + /* ensure font-size dependency in the margin struct; this is also in + the UA style sheet, but repeated here for clarity */ + margin: 1em 0; +} + +</style> + +<div style="font-size: 20px"><p id="a">Should be 40px font size.</p></div> + +<script> + +var a = document.getElementById("a"); + +// force computation of the margin struct on A (caching in rule tree) +getComputedStyle(a, "").marginTop; + +</script> + +<!-- will dynamically change font-size to 10px later; + also needs to be different from 20px now to avoid sibling-sharing --> +<div style="font-size: 30px"><p id="b">Should be 20px font size.</p></div> + +<script> +// Note that A and B share rule nodes, and note that the margin struct +// has been conditionally (on font size) cached on their shared rule node. +var b = document.getElementById("b"); + +// force ComputedStyle construction and computation of the font struct on +// B's parent +getComputedStyle(b.parentNode, "").fontSize; + +// force ComputedStyle construction (and computation of the color +// struct) on B, but not the margin struct or font struct +getComputedStyle(b, "").color; + +// restyle B and flush +b.parentNode.style.fontSize = "10px"; +getComputedStyle(b, "").marginTop; +// This flush will call CalcStyleDifference on B, which will find no +// cached font struct on the old context, but which will find a +// cached margin struct on the rule node. + +</script> |