summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM
AgeCommit message (Expand)Author
2020-02-15LibGUI: Remove more header dependencies from Widget.hAndreas Kling
2020-02-15LibCore: Replace manual forward declarations with <LibCore/Forward.h>Andreas Kling
2020-02-15LibGfx: Replace manual forward declarations with <LibGfx/Forward.h>Andreas Kling
2020-02-14LibGfx: More work on header dependency reductionAndreas Kling
2020-02-14LibCore: Add a forward declaration headerAndreas Kling
2020-02-14AK: Add a forward declaration headerAndreas Kling
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling
2020-02-06LibCore: Remove leading C from filenamesAndreas Kling
2020-02-06LibGfx: Prefer using Gfx::Bitmap::load_from_file instead of load_png()Andreas Kling
2020-02-06LibGfx: Rename GraphicsBitmap.{cpp,h} => Bitmap.{cpp,h}Andreas Kling
2020-02-06LibGfx: Rename from LibDraw :^)Andreas Kling
2020-02-06LibDraw: Put all classes in the Gfx namespaceAndreas Kling
2020-02-02LibGUI: Put all classes in the GUI namespace and remove the leading GAndreas Kling
2020-02-02LibCore: Put all classes in the Core namespace and remove the leading CAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
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-05LibHTML: Respect the system themeSergey Bugaev
2020-01-02LibHTML: Have element keep a pointer to their resolved styleAndreas 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: Ignore case of presentation attribute namesAndreas Kling
2019-12-11LibHTML: Rename HTMLImageElement::m_image_data => m_encoded_dataAndreas Kling
2019-11-30LibHTML: Don't bother updating layout in frameless documentsAndreas Kling
2019-11-25LibHTML: Implement basic <form> and <input> element supportAndreas Kling
2019-11-25LibHTML: Store the HTML parser input along with the created DocumentAndreas Kling
2019-11-19LibHTML+AK: Move URL completion from Document to AK::URLAndreas Kling
2019-11-09LibHTML: Paint a magenta rectangle around the currently inspected nodeAndreas Kling
2019-11-06LibHTML: Add DocumentFragmentAndreas Kling
2019-11-04LibHTML: Add a convenient way to get from any layout node to the rootAndreas Kling
2019-10-28LibHTML: Add Document::force_layout()Andreas Kling
2019-10-21LibHTML: Add Document::get_element_by_id() and get_elements_by_name()Andreas Kling
2019-10-20LibHTML: Rename HTMLImageElement::m_image_loader => m_image_decoderAndreas Kling
2019-10-20LibHTML: Add Element::name() convenience attribute getterAndreas Kling
2019-10-19LibHTML+Browser: Show target URL of hovered links in Browser statusbarAndreas Kling
2019-10-19LibHTML: DOM fixup should handle a completely empty documentAndreas Kling
2019-10-19LibDraw: Rename ImageLoader => ImageDecoderAndreas Kling
2019-10-19LibHTML: Make "display: inline-block" generate a LayoutBlock for nowAndreas Kling
2019-10-19LibHTML: Batch style updates and make them start from the rootAndreas Kling
2019-10-19LibHTML: Implement basic tiled background image supportAndreas Kling
2019-10-19LibHTML: Ignore completed image loads for already-destroyed <img>'sAndreas Kling
2019-10-17LibHTML: Only accumulate Text children's content in inline stylesheetsAndreas Kling
2019-10-17LibHTML: Add stub classes for basic table layoutAndreas Kling
2019-10-15LibHTML: Use ImageLoader for <img> elements to defer bitmap decodingAndreas Kling
2019-10-15LibHTML: Introduce LayoutBox and LayoutNodeWithStyleAndBoxModelMetricsAndreas Kling
2019-10-15LibHTML: Simplify Node::create_layout_node()Andreas Kling