summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-10-11Libc: make library internal includes come from private include namespaceVincent Sanders
2019-10-10LibHTML+Browser: Show the number of pending resource loadsAndreas Kling
2019-10-10LibHTML: Show a hand cursor when hovering over a clickable link :^)Andreas Kling
2019-10-10LibGUI+WindowServer: Add a "Hand" cursor to the standard cursorsAndreas Kling
2019-10-10LibHTML: Fix relative URL completion when document URL ends in a slashAndreas Kling
2019-10-09LibHTML: Have TreeNode deref its children before deleting itselfAndreas Kling
2019-10-09LibHTML: Tear down the layout tree before changing the Frame's documentAndreas Kling
2019-10-09LibHTML: Document::detach_from_frame() should actually detachAndreas Kling
2019-10-09LibHTML: Move is_ancestor_of() from LayoutNode to TreeNodeAndreas Kling
2019-10-09LibHTML: Implement the <blink> elementAndreas Kling
2019-10-09LibGUI: Add GScrollableWidget::to_widget_position()Andreas Kling
2019-10-09LibHTML: Add basic <!DOCTYPE> parsing and a DocumentType classAndreas Kling
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
2019-10-09LibHTML: Handle CSS declarations that don't end in ';'Andreas Kling
2019-10-09LibHTML: Collapse whitespace in LayoutText unless white-space: pre;Andreas Kling
2019-10-09LibC: Add a missing mbstowcs() declarationSergey Bugaev
2019-10-09LibHTML: Use ResourceLoader in HTMLLinkElementAndreas Kling
2019-10-08LibGUI: Let's say that Alt+Home is the "go home" keyboard shortcutAndreas Kling
2019-10-08LibHTML: Fire the file:// load completion callback asynchronouslyAndreas Kling
2019-10-08LibHTML: Add ResourceLoader to support protocol-agnostic URL loadingAndreas Kling
2019-10-08LibCore: CHttpJob::start() should fail asynchronouslyAndreas Kling
2019-10-08LibHTML: Use an enum for CSS property ID'sAndreas Kling
2019-10-08LibHTML: Move selector matching into a SelectorEngine namespaceAndreas Kling
2019-10-07LibHTML: Don't crash when calling set_document(nullptr)Andreas Kling
2019-10-07LibHTML: Make the CSS and HTML parsers take StringViewsAndreas Kling
2019-10-07LibHTML: Start adding support for <link rel="stylesheet">Andreas Kling
2019-10-07LibHTML: Add LayoutNodeWithStyle class, make LayoutText style-lessAndreas Kling
2019-10-07LibHTML: Rename "style_properties" to "style" everywhereAndreas Kling
2019-10-06LibGUI: Add "Go home" to GCommonActionsAndreas Kling
2019-10-06LibDraw: Parse some more color string formats found on the webAndreas Kling
2019-10-06LibHTML: Optionally pass document URL to the HTML parserAndreas Kling
2019-10-06LibHTML: Add Node::first_ancestor_of_type<T>()Andreas Kling
2019-10-06GFilePicker: Fix crash in get_save_filepath()Andreas Kling
2019-10-06LibHTML: Templatize Node::first_child_of_type<T>()Andreas Kling
2019-10-06LibHTML: Add is<ElementType> and to<ElementType> helper functionsAndreas Kling
2019-10-06LibHTML: Add adjacent (+) and general (~) sibling combinatorsAndreas Kling
2019-10-06LibHTML: Add Node::{next,previous}_element_sibling()Andreas Kling
2019-10-06LibHTML: Implement immediate-child selectors (#foo > #bar)Andreas Kling
2019-10-06LibHTML: Implement matching for descendant selectorsAndreas Kling
2019-10-06LibHTML: Fall back to the system default font if we can't find a fontAndreas Kling
2019-10-06LibHTML: Add a little bit of margin around <hr> elementsAndreas Kling
2019-10-06LibHTML: Use current style's text colour for alt text on imagesConrad Pankoff
2019-10-06LibHTML: Trim image alt text to the right if necessaryConrad Pankoff
2019-10-06LibHTML: Support width/height attributes on imagesConrad Pankoff
2019-10-06LibHTML: Draw image alt text as black rather than whiteConrad Pankoff
2019-10-06LibHTML: Use image URL as alt text if alt is missingConrad Pankoff
2019-10-06LibHTML: Load image resource when src attribute is setConrad Pankoff
2019-10-06LibHTML: Add function for invalidating the document layoutConrad Pankoff
2019-10-06LibGUI: Define supported functions for using command line argumentsConrad Pankoff
2019-10-06LibHTML: Make the text-decoration inheritance quirk actually workAndreas Kling