diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-09-21 15:32:17 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 18:29:42 +0200 |
commit | fd0aa5dd43bdf9b3184a891481157113496de4cb (patch) | |
tree | 6aa9442e2e68c78d794e6d93f8b7ac3a9e0c6e47 /Libraries/LibHTML/Makefile.shared | |
parent | a9ebd676e5446f2d1da1c93c5dd4e2dc98f2b1ba (diff) | |
download | serenity-fd0aa5dd43bdf9b3184a891481157113496de4cb.zip |
LibHTML: Get rid of the style tree
We now create a layout tree directly from the DOM tree.
This way we don't actually lose text nodes ^)
Diffstat (limited to 'Libraries/LibHTML/Makefile.shared')
-rw-r--r-- | Libraries/LibHTML/Makefile.shared | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTML/Makefile.shared b/Libraries/LibHTML/Makefile.shared index e93ccf54c7..00c045ef3e 100644 --- a/Libraries/LibHTML/Makefile.shared +++ b/Libraries/LibHTML/Makefile.shared @@ -9,7 +9,7 @@ LIBHTML_OBJS = \ CSS/StyleRule.o \ CSS/StyleDeclaration.o \ CSS/StyleValue.o \ - CSS/StyledNode.o \ + CSS/StyleProperties.o \ CSS/StyleResolver.o \ CSS/DefaultStyleSheetSource.o \ Parser/HTMLParser.o \ |