summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML
AgeCommit message (Expand)Author
2019-12-11LibHTML: Rename HTMLImageElement::m_image_data => m_encoded_dataAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-11-30LibHTML: Allow resource loads to failAndreas Kling
2019-11-30LibHTML: Don't bother updating layout in frameless documentsAndreas Kling
2019-11-28LibHTML: Just swallow :not selectors for nowAndreas Kling
2019-11-28LibHTML: CSS parser should accept "foo>bar", not just "foo > bar"Andreas Kling
2019-11-28LibHTML: Update CSS parser with terminology from Selectors Level 4Andreas Kling
2019-11-27LibHTML: Respect "border-style: dotted"Andreas Kling
2019-11-27LibHTML: Add shorthand expansion for border-{style,width,color}Andreas Kling
2019-11-27LibHTML: Implement compound selectorsAndreas Kling
2019-11-25LibHTML: Implement basic <form> and <input> element supportAndreas Kling
2019-11-25LibHTML: Give Frame a (weak) back-pointer to the HtmlViewAndreas Kling
2019-11-25LibHTML: Improve CSS parser's handling of values somewhatAndreas Kling
2019-11-25LibHTML: Divide the "line spacing" evenly between lines of textAndreas Kling
2019-11-25LibHTML: Join border edges nicely when painting boxesAndreas Kling
2019-11-25LibHTML: Draw each CSS border edge separately with their own styleAndreas Kling
2019-11-25LibHTML: Decrement the pending loads counter when a load finishesAndreas Kling
2019-11-25LibHTML: Store the HTML parser input along with the created DocumentAndreas Kling
2019-11-24LibHTML: Use LibProtocol for HTTP requests :^)Andreas Kling
2019-11-21LibHTML: Handle stand-alone attribute selectorsAndreas Kling
2019-11-21LibHTML: Parse <element attribute=value> correctlyAndreas Kling
2019-11-21LibHTML: Implement some attribute selector supportAndreas Kling
2019-11-21LibHTML: Make the HTML parser handle <div attr> and <div attr="">Andreas Kling
2019-11-21LibHTML: Paint text background color before the underline decorationAndreas Kling
2019-11-19LibHTML: Render a background-color behind line box fragments if neededAndreas Kling
2019-11-19LibHTML: Fix bug in removal of trailing whitespace from line boxesAndreas Kling
2019-11-19LibHTML: Use LayoutText::text_for_rendering() in layout tree dumpsAndreas Kling
2019-11-19LibHTML: Failed font lookups should use a bold fallback when fittingAndreas Kling
2019-11-19LibHTML: Tolerate empty CSS rulesAndreas Kling
2019-11-19LibHTML: Implement the universal selector ("*")Andreas Kling
2019-11-19LibHTML: Don't crash when stringifying an unknown CSS propertyAndreas Kling
2019-11-19LibHTML: Add the CSS "position" property to CSS/Properties.jsonAndreas Kling
2019-11-19LibHTML+AK: Move URL completion from Document to AK::URLAndreas Kling
2019-11-18LibHTML: LayoutImage should not dereference a null bitmapAndreas Kling
2019-11-18LibHTML: Update tree dumping code now that everything is floating pointAndreas Kling
2019-11-18LibHTML: Respect the line-height property if setAndreas Kling
2019-11-18LibHTML: Implement some basic floating point CSS value parsingAndreas Kling
2019-11-18LibHTML: Use floating point numbers throughout the layout treeAndreas Kling
2019-11-18LibHTML: Let's just build host-side tools in makeall.sh insteadAndreas Kling
2019-11-18LibHTML: Make all .cpp files implicitly depend on the generated sourcesAndreas Kling
2019-11-18LibHTML: Get rid of dual Makefile setupAndreas Kling
2019-11-18LibHTML: Fix code generator dependencies for initial buildAndreas Kling
2019-11-18LibHTML: Expand the "padding" shorthand propertyAndreas Kling
2019-11-18LibHTML: Implement basic 'max-width' and 'min-width' supportAndreas Kling
2019-11-18LibHTML: Tolerate "px" suffix on CSS lengthsAndreas Kling
2019-11-18LibHTML: Implement the "margin" shorthand propertyAndreas Kling
2019-11-18LibHTML: Start building a simple code generator for CSS propertiesAndreas Kling
2019-11-09LibHTML: Paint a magenta rectangle around the currently inspected nodeAndreas Kling
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