summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-09-29LibC: Some build fixes for strange platformsAndreas Kling
2019-09-29FileManager+LibGUI+html: Add an icon to represent HTML filesAndreas Kling
2019-09-29LibGUI: Fix crash in GAboutDialog::show()Andreas Kling
2019-09-29Demos: Remove useless PaintTest programAndreas Kling
2019-09-29LibHTML: Reduce debug spam in HtmlView mouse event handlersAndreas Kling
2019-09-29Base: Move HTML test pages into /home/anon/htmlAndreas Kling
2019-09-29LibHTML: Implement basic support for background-colorAndreas Kling
2019-09-29LibHTML: Add a simple <style> element for inline CSSAndreas Kling
2019-09-29LibHTML: Add inserted_into() and removed_from() TreeNode callbacksAndreas Kling
2019-09-29LibHTML: Make <div> elements display: blockAndreas Kling
2019-09-29LibHTML: Fix broken parsing of ID and class selectorsAndreas Kling
2019-09-29LibHTML: Non-element (Text) Nodes should get style from their parentAndreas Kling
2019-09-29html: Set the window title based on the HTML document's titleAndreas Kling
2019-09-29LibHTML: Add a way to get a Document's titleAndreas Kling
2019-09-29LibHTML: Add Node::text_content()Andreas Kling
2019-09-29Build: Add Libraries/LibHTML/ to the library search pathsAndreas Kling
2019-09-29AK: Add StringBuilder::length() and trim(int)Andreas Kling
2019-09-29Base: Add some title attributes to the small HTML test file :^)Andreas Kling
2019-09-29LibHTML: Add HTMLHeadingElement for <h1> through <h6>Andreas Kling
2019-09-29LibHTML: Implement basic HTMLElement.title supportAndreas Kling
2019-09-29LibHTML: Detect link clicksAndreas Kling
2019-09-29LibHTML: Detect hovering over linksAndreas Kling
2019-09-29LibHTML: Have Document track its hovered NodeAndreas Kling
2019-09-29LibHTML: Add LayoutNode::document() for easy accessAndreas Kling
2019-09-29LibHTML: Make sure every DOM Node belongs to a DocumentAndreas Kling
2019-09-29LibHTML: Make hit testing work for LayoutTextAndreas Kling
2019-09-29LibDraw: Implemented support for more PNG formats (#614)Brandon Scott
2019-09-28Base: Fix minor typos in man pagesAndreas Kling
2019-09-28LibHTML: Implement naive hit testingAndreas Kling
2019-09-28Base: Add a little hyperlink to the small HTML test pageAndreas Kling
2019-09-28LibHTML: Add virtual Node::tag_name()Andreas Kling
2019-09-28LibHTML: Make <a> tags blue and underline by defaultAndreas Kling
2019-09-28LibHTML: Implement basic support for "text-decoration: underline"Andreas Kling
2019-09-28LibHTML: Respect the CSS "color" property for textAndreas Kling
2019-09-28Meta: Tweak the Qt Creator project updater a bitAndreas Kling
2019-09-28TelnetServer: Accept arbitrary command with -cLarkin Nickle
2019-09-28SystemMonitor: Display whether an fd is cloexec and blockingSergey Bugaev
2019-09-28Kernel: Expose blocking and cloexec fd flags in ProcFSSergey Bugaev
2019-09-28Base: Add man pages for create_shared_buffer() and share_buffer_with()Andreas Kling
2019-09-28LibMarkdown: Support escaping of special charactersAndreas Kling
2019-09-28LibHTML: Make h1 and h2 tags use Pebbleton Bold by default :^)Andreas Kling
2019-09-28Base: Add a bold variant of the Pebbleton 11px fontAndreas Kling
2019-09-28Help: Don't crash on startup when non-md man pages are present :^)Andreas Kling
2019-09-28Applications: Add a new Help appSergey Bugaev
2019-09-28Userland+LibHTML: Add the html commandSergey Bugaev
2019-09-28LibHTML: Introduce the HtmlView widgetSergey Bugaev
2019-09-28LibHTML: Tweak the default CSS styleSergey Bugaev
2019-09-28LibHTML: Parse HTML escape sequencesSergey Bugaev
2019-09-28LibHTML: Hide debugging output unless HTML_DEBUG is definedSergey Bugaev
2019-09-28LibHTML: Implement renderingSergey Bugaev