summaryrefslogtreecommitdiff
path: root/Userland/Libraries
AgeCommit message (Expand)Author
2022-07-19LibPthread: Move the pthread and semaphore implementation to LibCTim Schumacher
2022-07-19Everywhere: Refer to `pthread.h` by its non-prefixed nameTim Schumacher
2022-07-19LibGUI: Add MoveLineUpOrDownCommandLucas CHOLLET
2022-07-19LibGUI: Remove wrong casts in TextDocument.cppLucas CHOLLET
2022-07-19LibGUI: Add TextDocument::take_line(size_t line_index)Lucas CHOLLET
2022-07-19LibGUI: Add a default virtual destructor to virtual classesLucas CHOLLET
2022-07-19LibGUI: Add VerticalDirection::operator!Lucas CHOLLET
2022-07-19LibCore: Add support for compiling for Android with API Version >= 30Andrew Kaster
2022-07-19LibWeb: Implement '5.1. Headers class' from the Fetch API :^)Linus Groh
2022-07-19LibWeb: Implement HeaderList::sort_and_combine()Linus Groh
2022-07-19LibWeb: Implement CaseInsensitiveBytesTraits::equals()Linus Groh
2022-07-19LibWeb: Move Fetch infra into the Web::Fetch::Infrastructure namespaceLinus Groh
2022-07-18LibJS: Implement Intl.NumberFormat V3's [[RoundingIncrement]] changesTimothy Flynn
2022-07-18LibJS: Implement Intl.NumberFormat V3's [[RoundingMode]] changesTimothy Flynn
2022-07-18LibJS: Relax integer size requirements on some NumberFormat helpersTimothy Flynn
2022-07-18LibJS: Add missing VERIFY_NOT_REACHED in string-to-enum conversionTimothy Flynn
2022-07-18LibWeb: Add support for Blob to XHR::send()Kenneth Myhra
2022-07-18LibWeb: Move extract_body() towards spec complianceKenneth Myhra
2022-07-18LibWeb: XHR::extra_body() rewrite to use Variant::visit()Kenneth Myhra
2022-07-18LibWeb: Mark body argument of extract_body() as const referenceKenneth Myhra
2022-07-18LibWeb: Mark URLSearchParams::to_string() as constKenneth Myhra
2022-07-18LibWeb: Rename safely_extract_body() to extract_body()Kenneth Myhra
2022-07-18LibWeb: Replace LibGfx gradient painting with new GradientPaintingMacDue
2022-07-18LibWeb: Add GradientPainting for painting linear-gradientsMacDue
2022-07-18LibWeb: Calculate to <corner> angles for linear-gradientsMacDue
2022-07-18LibJS/Bytecode: Get result from accumulator in PerformEvalLuke Wilde
2022-07-18LibJS/Bytecode: Implement initializers for array binding patternsLuke Wilde
2022-07-18LibJS/Bytecode: Implement destructuring assignmentLuke Wilde
2022-07-18LibJS/Bytecode: Evaluate LHS of assignment before RHSLuke Wilde
2022-07-18LibJS/Bytecode: Don't begin breakable scope before variable scope in forLuke Wilde
2022-07-18LibJS/Bytecode: Check for lexical bindings only in current scopeLuke Wilde
2022-07-18LibJS/Bytecode: Create global variables before setting themLuke Wilde
2022-07-18LibJS/Bytecode: Make setting failures throw only in strict modeLuke Wilde
2022-07-18LibJS/Bytecode: Determine strict mode on an executable basisLuke Wilde
2022-07-18LibJS: Implement Intl.NumberFormat V3's [[TrailingZeroDisplay]] changesTimothy Flynn
2022-07-18LibJS: Replace comparisons of "0"_bigint with SignedBigInteger::is_zeroTimothy Flynn
2022-07-18LibCrypto: Expose UnsignedBigInteger's is_zero() in SignedBigIntegerTimothy Flynn
2022-07-18LibJS: Implement Intl.NumberFormat V3's [[RoundingPriority]] changesTimothy Flynn
2022-07-18LibJS: Prevent i64 overflow when computing large NumberFormat exponentsTimothy Flynn
2022-07-18LibJS: Remove accidentally duplicated [[RoundingType]] enumerationTimothy Flynn
2022-07-18LibWeb: Update incorrect Fetch namespacesLinus Groh
2022-07-18LibWeb: Add Blob to Fetch's Body::SourceType variantLinus Groh
2022-07-18LibWeb: Use Fetch's HeaderList::get_decode_and_split() in XMLHttpRequestLinus Groh
2022-07-17LibWeb: Add & use TRY_OR_RETURN_OOM macroLinus Groh
2022-07-17LibGfx: Fix direction of vertical gradientsMacDue
2022-07-17LibGfx: Support alpha blending on gradientsMacDue
2022-07-17LibWeb: Support painting simple linear-gradientsMacDue
2022-07-17LibWeb: Allow having a linear-gradient() as a background-imageMacDue
2022-07-17LibWeb: Parse the linear-gradient() CSS functionMacDue
2022-07-17LibWeb: Add LinearGradientStyleValueMacDue