summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML
AgeCommit message (Expand)Author
2020-01-01AK: Move the userspace SharedBuffer from LibC to AKAndreas Kling
2019-12-30LibHTML: Ignore all CSS rules starting with "@" for nowAndreas Kling
2019-12-29LibHTML: RenderingContext should keep the Palette aliveAndreas Kling
2019-12-28LibHTML: Add missing flock to Makefile (thanks jcs)Andreas Kling
2019-12-28Build: Fix missing IPC dependency for LibHTMLStefano Cristiano
2019-12-28Build: wrap make invocations with flock(1)joshua stein
2019-12-26LibHTML: Remove fixed FIXMEShannon Booth
2019-12-25Build: support library and generator dependenciesjoshua stein
2019-12-24LibGUI+LibDraw: Add "Palette" concept for scoped color themingAndreas Kling
2019-12-20Build: clean up build system, use one shared Makefilejoshua stein
2019-12-18LibHTML: Ignore layout repaints outside the visible viewportAndreas Kling
2019-12-18LibHTML: Add TreeNode::for_each_in_subtree_of_type<T>()Andreas Kling
2019-12-18LibHTML: Mark image bitmaps outside the visible viewport as volatileAndreas Kling
2019-12-18LibHTML: Push the visible viewport rect from HtmlView to FrameAndreas Kling
2019-12-18LibHTML: Add LayoutNode::is_image() and is<LayoutImage> helperAndreas Kling
2019-12-18LibHTML: Insert a new linebox for every newline in "white-space: pre"Andreas Kling
2019-12-18LibHTML: Ignore case of presentation attribute namesAndreas Kling
2019-12-18LibHTML: Don't insert line breaks between multiple <pre>'s on a lineAndreas Kling
2019-12-18LibHTML: Let's display <basefont> as block-level elements for nowAndreas Kling
2019-12-18LibHTML: Use a fixed-width font for <pre> tags, duh!Andreas Kling
2019-12-16LibHTML: Support the :only-child pseudo classAndreas Kling
2019-12-16LibHTML: Support the :empty pseudo classAndreas Kling
2019-12-16LibHTML: Support the :first-child and :last-child pseudo classesAndreas Kling
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