Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-07 | LibWeb: Rename directory LibHTML => LibWeb | Andreas Kling | |
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^) | |||
2020-03-07 | LibWeb: Move everything into the Web namespace | Andreas Kling | |
2020-01-18 | Meta: Add license header to source files | Andreas Kling | |
As suggested by Joshua, this commit adds the 2-clause BSD license as a comment block to the top of every source file. For the first pass, I've just added myself for simplicity. I encourage everyone to add themselves as copyright holders of any file they've added or modified in some significant way. If I've added myself in error somewhere, feel free to replace it with the appropriate copyright holder instead. Going forward, all new source files should include a license header. | |||
2019-10-17 | LibHTML: Only accumulate Text children's content in inline stylesheets | Andreas Kling | |
Some inline stylesheets use HTML comments like "<!--blah blah-->". The HTML parser currently generates a comment child node of the <style> element whenever this happens, and we don't want the comment itself to be interpreted as part of the stylesheet. | |||
2019-09-29 | LibHTML: Add a simple <style> element for inline CSS | Andreas Kling | |