summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/ResourceLoader.cpp
AgeCommit message (Collapse)Author
2019-10-10LibHTML+Browser: Show the number of pending resource loadsAndreas Kling
For now this is simply a counter+hook exposed by ResourceLoader and shown in the Browser status bar. This is not very nuanced, and it would be nice to expose more info so we could eventually do something like a progress bar.
2019-10-08LibHTML: Fire the file:// load completion callback asynchronouslyAndreas Kling
This makes it consistent with how http:// callbacks are fired. It would probably be fine to have file:// be synchronous, but at the same time it's nice to have consistency.
2019-10-08LibHTML: Add ResourceLoader to support protocol-agnostic URL loadingAndreas Kling
We now support loading both file:// and http:// URLs. Feel free to visit http://www.serenityos.org/ and enjoy the fancy good times. :^)