summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-09-13LibJS: Convert Intl.NumberFormat.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.Locale.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.ListFormat.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Convert Intl.DisplayNames.prototype to be a PrototypeObjectLinus Groh
2021-09-13LibJS: Remove leftover typed_this() declarationsLinus Groh
2021-09-13LibC: Upgrade memmove() to memcpy() when possibleAndreas Kling
2021-09-13Browser: Add some UI padding in the Inspector widgetAndreas Kling
2021-09-13LibJS: Evaluate function arguments before checking callee typeLinus Groh
2021-09-13LibWeb: Identical sub-expression bug in URLSearchParams::setBrian Gianforcaro
2021-09-13LibJS: Extract exception check duplication in iso_month_day_from_fieldsBrian Gianforcaro
2021-09-13FileOperation: Deduplicate destination file names on copyTetsui Ohkubo
2021-09-13LibWeb: Add handful of CSS properties and identifiersAndreas Kling
2021-09-13PixelPaint: Fix Line/Rectangle second paint alignment with pixelsMustafa Quraish
2021-09-13PixelPaint: Call `Layer::did_modify_bitmap()` after drawing EllipseMustafa Quraish
2021-09-13PixelPaint: Update editor after drawing shapes to clear outsideMustafa Quraish
2021-09-13PixelPaint: Ensure thickness of shapes is never 0 when drawingMustafa Quraish
2021-09-13PixelPaint: Allowing drawing line from center, like other shapesMustafa Quraish
2021-09-13PixelPaint: Adjust menu ampersand shortcut charactersMustafa Quraish
2021-09-13PixelPaint: Properly transfer active tool to editor on tab closeMustafa Quraish
2021-09-13PixelPaint: Have `ToolboxWidget` keep track of active toolMustafa Quraish
2021-09-13PixelPaint: Call `Layer::did_modify_bitmap()` when applying filtersMustafa Quraish
2021-09-13PixelPaint: Add keyboard shortcut for Invert filterMustafa Quraish
2021-09-13PixelPaint: Draw layers from the top of LayerListMustafa Quraish
2021-09-13LibWeb: Implement Node.isEqualNode(Node? otherNode)Andreas Kling
2021-09-13LibWeb: Implement Node.isSameNode(Node? otherNode)Andreas Kling
2021-09-13AK: Make Span::operator==() comply with the ISO C++ idea of operator==Ali Mohammad Pur
2021-09-13AK: Switch Span.h to east-const styleAli Mohammad Pur
2021-09-13AK: Give BumpAllocator a single-block cacheAli Mohammad Pur
2021-09-13LibRegex: Set a signpost on every executed regular expressionAli Mohammad Pur
2021-09-13LibRegex: Add a basic optimization passAli Mohammad Pur
2021-09-13AK: Allow RBTree::find_largest_not_above_iterator() to failAli Mohammad Pur
2021-09-13AK+Kernel: Avoid unescaped control chars in append_escaped_for_json()Ali Mohammad Pur
2021-09-13Kernel: Deduplicate signpost perf event stringsAli Mohammad Pur
2021-09-13Kernel: Specialize Traits<(Nonnull)OwnPtr<T>> for KStringAli Mohammad Pur
2021-09-13AK: Make traits for NonnullOwnPtr use ptr_hash instead of int_hashAli Mohammad Pur
2021-09-13LibWeb: Make requestAnimationFrame() work in multi-process modeAndreas Kling
2021-09-13LibWeb: Add the URLSearchParams built-inIdan Horowitz
2021-09-13LibWeb: Add URL::url_decode for decoding form url encoded parametersIdan Horowitz
2021-09-13LibWeb: Add the Web::URL namespace and move URLEncoder to itIdan Horowitz
2021-09-13LibWeb: Add support for generating a stringifier method/attributeIdan Horowitz
2021-09-13LibWeb: Escape reserved names of generated wrapper functionsIdan Horowitz
2021-09-13LibWeb: Implement MediaQueryList.{addListener,removeListener}Luke Wilde
2021-09-12LibJS: Set OrdinaryFunctionObject's realm from the TnterpreterLinus Groh
2021-09-13LibCrypto: Fix MacOS build by replacing explicit_bzero with secure_zeroBrian Gianforcaro
2021-09-13LibCore: Switch to AK::secure_zero instead of platform specific APIsBrian Gianforcaro
2021-09-13LibC: Implement explicit_bzero with AK::secure_zeroBrian Gianforcaro
2021-09-13AK: Add secure_zero() implementation so it can be used on all platformsBrian Gianforcaro
2021-09-12LibWeb: Log classic script start, finish, and durationAndreas Kling
2021-09-12AudioServer: Fix deadlock when playing two audio streamskleines Filmröllchen
2021-09-12LibThreading: Add ConditionVariable wrapperkleines Filmröllchen