summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2021-02-15LibWeb: Move cursor along when drag-selecting in editable contentAndreas Kling
2021-02-10LibWeb: Relayout document on CharacterData data changeAndreas Kling
2021-02-10LibWeb: Start implementing <input type=text> using a shadow DOMAndreas Kling
2021-02-10LibWeb: Include shadow DOM subtrees in DOM dumpsAndreas Kling
2021-02-10LibWeb: Generate layout nodes for shadow subtreesAndreas Kling
2021-02-10LibWeb: Add a way to make a DOM::Text always editableAndreas Kling
2021-02-10LibWeb: Add DOM::Node::parent_or_shadow_host()Andreas Kling
2021-02-10LibWeb: Add a way to give DOM::Element a ShadowRootAndreas Kling
2021-02-10LibWeb: Add DOM::ShadowRoot to forwarding headerAndreas Kling
2021-02-10LibWeb: Use the DOM::Node::node_name() a bit more in dumpsAndreas Kling
2021-02-10LibWeb: Respect the bgcolor attribute on <marquee> elementsAndreas Kling
2021-02-10LibWeb: Remove WidgetBox layout nodeAndreas Kling
2021-02-10LibWeb+WebContent: Support window.confirm() in OOPWVAndreas Kling
2021-02-10LibWeb: Move window.confirm() to using a PageClient callbackAndreas Kling
2021-02-10LibWeb: Remove low-hanging LibGUI fruit from LibWebAndreas Kling
2021-02-10LibWeb: Remove a whole bunch of unnecessary #includesAndreas Kling
2021-02-09LibWeb+WebContent: Don't relayout page on every scroll eventAndreas Kling
2021-02-09LibWeb: Make OOPWV resizing flicker-free :^)Andreas Kling
2021-02-09LibWeb: Reset the HTML editing cursor blink cycle on arrow key movementAndreas Kling
2021-02-09LibWeb: Remove duplicated locals in EventHandler::handle_mousedown()Andreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-02-08LibWeb: Implement Element.getElementsBy{Tag,Class}Name()Linus Groh
2021-02-08LibWeb: Make getElementsByClassName() case-insensitive in quirks modeLinus Groh
2021-02-08LibWeb: Make getElementsByTagName() case-insensitive for HTML elementsLinus Groh
2021-02-07LibWeb: Don't assert on <colgroup> & friendsAndreas Kling
2021-02-07LibWeb: Reorganize Element::create_layout_node() into a switchAndreas Kling
2021-02-07LibWeb: Use any_of() for DOM::Element::has_class()Andreas Kling
2021-02-07LibWeb: Use move semantics for QualifiedName more oftenAndreas Kling
2021-02-07LibWeb: Honor font sizes specified by CSSAndreas Kling
2021-02-06LibWeb: Anonymous table cells should have colspan=1Andreas Kling
2021-02-03LibWeb: Basic implementation of global event handlers :^)Andreas Kling
2021-02-03LibWeb: Add enumerator macro for all the "global event handlers"Andreas Kling
2021-02-03LibWeb: Add a whole bunch of onfooevent names to HTML::AttributeNamesAndreas Kling
2021-02-03LibWeb: Move main thread JavaScript VM to its own fileAndreas Kling
2021-02-01LibIPC: Stop sending client ID to clientsAndreas Kling
2021-01-31LibWeb: Use URL::to_string_encoded() for the crash error page URL's hrefLinus Groh
2021-01-31LibIPC: Stop exchanging client/server PIDs in greeting handshakeAndreas Kling
2021-01-31Browser+LibWeb+WebContent: Make the "Debug" menu work in multi-processAndreas Kling
2021-01-30LibWeb: Don't try to create GUI::TextBox inside multi-process web viewsAndreas Kling
2021-01-30LibWeb: URL-encode/escape variables used in OOPWV's crash error pageLinus Groh
2021-01-30LibWeb: Handle WebContent process crashes gracefully :^)Andreas Kling
2021-01-30LibWeb: Add Frame::ViewportClient and use it for Layout::ImageBoxAndreas Kling
2021-01-29ImageDecoder+LibImageDecoder+LibWeb: Support animations in ImageDecoderAndreas Kling
2021-01-29LibWeb: Update the ICB's idea of the viewport rect after Frame resizeAndreas Kling
2021-01-29LibWeb: Flesh out prepare_script and execute_scriptLuke
2021-01-28LibWeb: Add simple implementation of Document.createElementNSLuke
2021-01-28LibWeb: Add simple implementation of Node.removeChild()Andreas Kling
2021-01-28LibWeb: Remove accidentally committed changes from b72f067f0daac88ebe66e3f714...Andreas Kling
2021-01-28Kernel+Userland: Remove unused "effective priority" from threadsAndreas Kling
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts