diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-12-05 12:10:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-05 11:10:45 +0000 |
commit | f0b41623286a010cb021cd2debfa6b1be3b36b5d (patch) | |
tree | 1619398a57fefa84a985bdb88010373232d5ebf9 /components/layout_2020/lib.rs | |
parent | 63701b338cd807dc237be4f3f0771a1fff933f09 (diff) | |
download | servo-f0b41623286a010cb021cd2debfa6b1be3b36b5d.tar.gz servo-f0b41623286a010cb021cd2debfa6b1be3b36b5d.zip |
Add initial support for table box tree construction (#30799)
This is the first part of constructing the box tree for table layout. No
layout is actually done and the construction of tables is now hidden
behind a flag (in order to not regress WPT). Notably, this does not
handle anonymous table part construction, when the DOM does not reflect
a fully-formed table. That's part two.
Progress toward #27459.
Co-authored-by: Oriol Brufau <obrufau@igalia.com>
Co-authored-by: Manish Goregaokar <manishsmail@gmail.com>
Diffstat (limited to 'components/layout_2020/lib.rs')
-rw-r--r-- | components/layout_2020/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/layout_2020/lib.rs b/components/layout_2020/lib.rs index 50294c3ad1c..6d2fdcb0375 100644 --- a/components/layout_2020/lib.rs +++ b/components/layout_2020/lib.rs @@ -23,6 +23,7 @@ pub mod query; mod replaced; mod sizing; mod style_ext; +pub mod table; pub mod traversal; pub use flow::BoxTree; |