summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML
AgeCommit message (Expand)Author
2020-01-23AK: Let's call decrementing reference counts "unref" instead of "deref"Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-15Build: more IPCCompiler-generated dependenciesjoshua stein
2020-01-13LibDraw+LibHTML: Make link colors themeableAndreas Kling
2020-01-05LibHTML: Fix broken build after Element::computed_style() changeAndreas Kling
2020-01-05LibHTML: Make the Element::computed_style() return NonnullRefPtrMatrix89
2020-01-05LibHTML: Add four missing border properties to the computed styleMatrix89
2020-01-05LibHTML: Replace StyleProperties::create(StyleProperties) with clone()Matrix89
2020-01-05Browser+LibHTML: Change the way computed styles are queriedMatrix89
2020-01-05Browser+LibHTML: Deduplicate inspector codeMatrix89
2020-01-05Browser+LibHTML: Add "Computed" styles to the DOM inspectorMatrix89
2020-01-05LibHTML: Respect the system themeSergey Bugaev
2020-01-02Build: HOST_CXX -> USE_HOST_CXXjoshua stein
2020-01-02Browser+LibHTML: Add resolved element style to the DOM inspectorAndreas Kling
2020-01-02LibHTML: Include element attributes in the DOMTreeModelAndreas Kling
2020-01-02LibHTML: Have element keep a pointer to their resolved styleAndreas Kling
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