mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Skip serialization of implicit grid lines created during layout
StyleValues created for grid-template-rows and grid-template-columns by GFC should not include `-start`/`-end` lines implicitly created by grid areas.
This commit is contained in:
committed by
Alexander Kalenik
parent
185be4011b
commit
594194eb60
Notes:
github-actions[bot]
2025-06-25 18:46:52 +00:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/LadybirdBrowser/ladybird/commit/594194eb608 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5212
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<body></body>
|
||||
<script src="../include.js"></script>
|
||||
<script>
|
||||
test(() => {
|
||||
const d = document.createElement("div");
|
||||
d.style.cssText = 'display: grid; grid-template: [a] "a" [c] "b" / 10px;';
|
||||
document.body.append(d);
|
||||
println(getComputedStyle(d).gridTemplateRows);
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user