summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Parser/HTMLParser.h
AgeCommit message (Collapse)Author
2020-06-26LibWeb+Browser: Remove old HTML parser :^)Andreas Kling
The new parser is now used everywhere and it's working pretty well!
2020-06-21LibWeb: Remove most uses of the old HTML parserAndreas Kling
The only remaining client of the old parser is the fragment parser used by the Element.innerHTML setter. We'll need to implement a bit more stuff in the new parser before we can switch that over.
2020-05-03LibWeb: Handle iso-8859-1 web content a little bit betterAndreas Kling
We now look at the HTTP response headers for a Content-Type header and try to parse it if present to find the text encoding. If the text encoding is iso-8859-1, we turn all non-ASCII characters into question marks. This makes Swedish Google load on my machine! :^)
2020-03-07LibWeb: Rename directory LibHTML => LibWebAndreas Kling
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^)