aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout_2020/dom.rs
Commit message (Collapse)AuthorAgeFilesLines
* layout: Add support for `<object>` with image data URLs (#32069)Martin Robinson2024-04-151-2/+27
| | | | | This is enough support for `<object>` to get Acid2 working. Co-authored-by: Oriol Brufau <obrufau@igalia.com>
* script: Split style and layout data in DOM nodes (#31985)Martin Robinson2024-04-041-21/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change splits the style and layout data in DOM nodes that is populated by style and layout passes. This makes Servo's data design more like Gecko's. This allows: 1. Removing the various `StyleAndLayout` data structures used by layout. 2. Removing the `GetStyleAndLayoutData` and `GetStyleAndOpaqueLayoutData` traits. Accessing style and layout data are now just functions on the `LayoutNode` and `ThreadSafeLayoutNode` traits. 3. Styling now doesn't populate layout data. This is is postponed until layout itself. 4. Allows the DOM wrappers to no longer have to be generic over the layout data. This data was already stored using `std::any::Any` and the new code just makes layout responsible for downcasting. Cleaning up the generic type parameter in the DOM wrappers can happen in a followup change. The main benefit to all of this is that we should be able to remove unsafe creation of `ServoLayoutNode` in layout and `TrustedLayoutNodeAddress` entirely, because `ServoLayoutNode` will be able to be passed directly from script to layout. In addition, this removes one more abstraction layer from the layout DOM wrappers, making the code a lot more understandable. Note: This increases the measured size of DOM types, but the same data is stored. It's simply that before that data was stored behind a heap pointer.
* Treat video elements as replaced content and render the current frame. (#31412)Josh Matthews2024-02-231-0/+8
| | | | | * Treat video elements as replaced content and render the current frame. * Update test results.
* Lint layout_2020 with clippy (#31169)Oriol Brufau2024-01-251-2/+2
| | | cargo clippy --fix -p layout_2020 --allow-dirty --broken-code
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-9/+11
| | | | | * strict imports formatting * Reformat all imports
* Combine DOM-related concepts in Layout 2020 into dom.rsMartin Robinson2023-05-131-0/+203