diff options
author | Sam Atkins <atkinssj@gmail.com> | 2021-07-22 17:51:07 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-31 00:18:11 +0200 |
commit | 7439fbd896627f1546bb4123a25e777de2de35c8 (patch) | |
tree | a76b820f10673d197eca5197fd1d02964550ebd1 /Base/res/html/misc/css-import-2.css | |
parent | 8b2e76b838757a7528ddb64de47ef10efe042f98 (diff) | |
download | serenity-7439fbd896627f1546bb4123a25e777de2de35c8.zip |
LibWeb: Get CSS @import rules working in new parser
Also added css-import.html, which tests the 3 syntax variations on
`@import` statements. Note that the optional media-query parameter to
`@import` is not handled yet.
Diffstat (limited to 'Base/res/html/misc/css-import-2.css')
-rw-r--r-- | Base/res/html/misc/css-import-2.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/res/html/misc/css-import-2.css b/Base/res/html/misc/css-import-2.css new file mode 100644 index 0000000000..46e72b7e48 --- /dev/null +++ b/Base/res/html/misc/css-import-2.css @@ -0,0 +1 @@ +p.second { background-color: lime; } |