diff options
author | bptato <nincsnevem662@gmail.com> | 2025-05-03 17:30:56 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2025-05-03 17:49:32 +0200 |
commit | 015aa0fd92ece4bdc1f645131b96369f801ed961 (patch) | |
tree | 1563324b8e12ad6f9275704285fa0e91c941f3be /doc/architecture.md | |
parent | cdfa5ea9aa451b6be5790382881431eec2722394 (diff) | |
download | chawan-015aa0fd92ece4bdc1f645131b96369f801ed961.tar.gz |
layout, csstree: build stacking contexts together with tree
We often redo sub-layouts in layout, and this makes stacking contexts very hard to build reliably there. This fixes a bug where positioned descendants of flex items would sometimes mysteriously disappear.
Diffstat (limited to 'doc/architecture.md')
-rw-r--r-- | doc/architecture.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/architecture.md b/doc/architecture.md index ee856ed0..443cdc61 100644 --- a/doc/architecture.md +++ b/doc/architecture.md @@ -351,7 +351,7 @@ enough in most cases.) ### Layout Our layout engine is a rather "simple" procedural layout implementation. -It runs in two passes (but I'm working on eliminating the first one.) +It runs in two passes: 1. Build a layout tree. Anonymous block and table boxes are generated here. After this pass, the tree is no longer mutated, only the |