ladybird/Tests/LibWeb/Layout/data/import-a.css
Sam Atkins f29a95e2fe LibWeb: Assign linked style sheet location when parsing it
Before this change, we assigned the style sheet's location *after* its
content rules were parsed and added to it. This meant any `@import`s
would try to fetch their style sheet before they knew the URL they
should fetch it relative to.
2025-04-15 09:40:38 +01:00

5 lines
54 B
CSS

@import "import-b.css";
#target {
width: 50px;
}