summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
AgeCommit message (Expand)Author
2022-02-12LibWeb: Implement XMLHttpRequest.overrideMimeTypeLuke Wilde
2022-02-12LibWeb: Implement spec-compliant MIME type struct and parserLuke Wilde
2022-02-12LibWeb: Add support for 'arraybuffer' message types on WebSocketsserenitydev
2022-02-12LibWeb: Ignore malformed at-rules in CSS parserGuilherme Gonçalves
2022-02-11LibWeb: Rename Layout::Box absolute rect helpersAndreas Kling
2022-02-11LibWeb: Remove unused functions from Layout::BoxAndreas Kling
2022-02-11LibWeb: Clear the path of a SVGPathElement if the attribute changesSam Atkins
2022-02-11LibWeb: Make SVG AttributeParser::parse_path_data() staticSam Atkins
2022-02-11LibWeb: Use StringView instead of String in SVG::AttributeParserSam Atkins
2022-02-11LibWeb: Add SVG `<polygon>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Add SVG `<polyline>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Add SVG `<line>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Add SVG `<ellipse>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Add SVG `<circle>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Add SVG `<rect>` element and test case :^)Sam Atkins
2022-02-11LibWeb: Expose SVG length/coordinate parsing methodsSam Atkins
2022-02-11LibWeb: Move SVG::PathDataParser into its own file and rename itSam Atkins
2022-02-11LibWeb: Rename SVGPathBox -> SVGGeometryBoxSam Atkins
2022-02-11LibWeb: Move SVGPathElement methods into SVGGeometryElementSam Atkins
2022-02-11LibWeb: Add const versions of SVGBox::dom_node() and friendsSam Atkins
2022-02-11LibWeb: Remove CascadeOrigin::Any enum valueAndreas Kling
2022-02-11LibWeb: Remove unused CascadeOrigin::AnyAndreas Kling
2022-02-10LibWeb: Make :root selector match <html> element onlyAndreas Kling
2022-02-10LibWeb: Add "tag name" buckets to StyleComputer::RuleCacheAndreas Kling
2022-02-10LibWeb: Add "ID" buckets to StyleComputer::RuleCacheAndreas Kling
2022-02-10LibWeb: Cache CSS rules in buckets to reduce number of rules checkedAndreas Kling
2022-02-10LibWeb: Perform CSS custom property cascade once instead of per-propertyAndreas Kling
2022-02-10LibWeb: Fix a bunch of trivial clang-tidy warnings in StyleComputerAndreas Kling
2022-02-10LibWeb: Rename a CascadeOrigin parameter in StyleComputerAndreas Kling
2022-02-09LibWeb: Paint box-shadows more efficientlySam Atkins
2022-02-09LibWeb: Add initial implementation for WorkerGlobalScopeAndrew Kaster
2022-02-09LibWeb: Do not set Content-Length headers twice for POST requestsBrian Gianforcaro
2022-02-09LibWeb: Don't fill or stroke SVG <path> with transparent colorAndreas Kling
2022-02-09LibJS: Replace uses of MarkedValueList with MarkedVector<Value>Linus Groh
2022-02-08LibWeb: Implement EventHandler::focus_previous_element()Kenneth Myhra
2022-02-08Browser+LibWeb: Add "Dump Local Storage" item to Browser's Debug menuAndreas Kling
2022-02-08LibWeb: Add Storage interface and window.localStorageAndreas Kling
2022-02-08LibWeb: Allow using Origin as a HashMap keyAndreas Kling
2022-02-08LibWeb: Implement the JS host hooks for promises, job callbacks and moreLuke Wilde
2022-02-08LibWeb: Rewrite EventTarget to more closely match the specLuke Wilde
2022-02-08LibWeb: Make FormAssociatedElement inherit from HTMLElementLuke Wilde
2022-02-08LibWeb: Introduce the Environment Settings ObjectLuke Wilde
2022-02-08LibWeb: Support passing more parameter types to HTML::report_exception()Andreas Kling
2022-02-08LibWeb: Fixed disabled checkbox input behaviourRafał Babiarz
2022-02-08LibWeb: Incorporate spread-distance into box-shadow renderingSam Atkins
2022-02-08LibWeb: Render multiple box-shadowsSam Atkins
2022-02-08LibWeb: Parse multiple box-shadows :^)Sam Atkins
2022-02-08LibWeb: Parse spread-distance and `inset` parts of box-shadowSam Atkins
2022-02-08LibWeb: Reorganize box-shadow parsing codeSam Atkins
2022-02-08LibJS+Everywhere: Remove all VM::clear_exception() callsdavidot