summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOMTreeModel.cpp
AgeCommit message (Collapse)Author
2020-02-06LibDraw: Put all classes in the Gfx namespaceAndreas Kling
I started adding things to a Draw namespace, but it somehow felt really wrong seeing Draw::Rect and Draw::Bitmap, etc. So instead, let's rename the library to LibGfx. :^)
2020-02-02LibGUI: Put all classes in the GUI namespace and remove the leading GAndreas Kling
This took me a moment. Welcome to the new world of GUI::Widget! :^)
2020-01-18Meta: Add license header to source filesAndreas 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.
2020-01-02LibHTML: Include element attributes in the DOMTreeModelAndreas Kling
We simply expand the attributes inside the element item name, so they look like natural "tags" :^)
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
Using int was a mistake. This patch changes String, StringImpl, StringView and StringBuilder to use size_t instead of int for lengths. Obviously a lot of code needs to change as a result of this.
2019-11-09LibHTML: Add document icon in DOMTreeModel and keep document aliveAndreas Kling
2019-11-09LibHTML+Browser: Add a simple DOM inspector popup windowAndreas Kling
LibHTML now provides a DOMTreeModel which can be used to view a given Document's DOM tree. :^)