summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2023-02-15LibWeb: Port CSS::MediaQuery to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Supports to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::UnicodeRange to new StringsSam Atkins
2023-02-15LibWeb: Use StringView in CSS::PreferredColorSchemeSam Atkins
2023-02-15LibWeb: Port CSS::Display to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Parser::Rule to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Parser::Declaration to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Parser::ComponentValue to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Parser::Function to new StringsSam Atkins
2023-02-15LibWeb: Port CSS::Parser::Block to new StringsSam Atkins
2023-02-15LibWeb: Port ComputedValues to new StringsSam Atkins
2023-02-15LibWeb: Remove unused includes for DeprecatedStringSam Atkins
2023-02-15LibWeb: Port CSS Tokenizer to new StringsSam Atkins
2023-02-15LibWeb: Implement ASCII case-insensitive matchingSam Atkins
2023-02-15AK+Tests+LibWeb: Make `URL::complete_url()` take a StringViewSam Atkins
2023-02-15LibWeb: Construct CSS Tokenizer and Parser with a StringView encodingSam Atkins
2023-02-15LibTextCodec+Everywhere: Make TextCodec::decoder_for() take a StringViewSam Atkins
2023-02-15LibJS: Keep escaping forward slashesNico Weber
2023-02-15HexEditor: Add selection strings to the value inspectorMetallicSquid
2023-02-15Piano: Fix insertion and deletion of notesFlorian Kaiser
2023-02-15LibGUI: Use Unicode's text segmentation for traversing word breaksTimothy Flynn
2023-02-15LibUnicode: Fix typos causing text segmentation on mid-word punctuationTimothy Flynn
2023-02-15LibUnicode: Support finding the next/previous text segmentation boundaryTimothy Flynn
2023-02-15LibUnicode: Allow iterating over text segmentation boundariesTimothy Flynn
2023-02-15LibUnicode: Implement text segmentation algorithms for all UTF encodingsTimothy Flynn
2023-02-15LibUnicode+LibJS: Move text segmentation algorithms to their own filesTimothy Flynn
2023-02-15LibGfx: Move ICC::Profile towards "Fallible Constructors" patternNico Weber
2023-02-15LibGfx: Move ICC::Profile::read_header() out of classNico Weber
2023-02-15LibGfx: Move ICC::Profile::read_tag_table() out of classNico Weber
2023-02-15LibGfx: Move ICC::Profile::read_tag() out of classNico Weber
2023-02-15LibRegex: Bail out of atomic rewrite if a block doesn't contain comparesAli Mohammad Pur
2023-02-15LibRegex: Consider the inverse=true case when finding pattern overlapAli Mohammad Pur
2023-02-15LibRegex: Make '.' reject matching LF / LS / PS as per the ECMA262 specAli Mohammad Pur
2023-02-15LibJS: Don't escape backslashes in RegExp.sourceAli Mohammad Pur
2023-02-14LibGfx: Validate ICC namedColor2Tag consistencyNico Weber
2023-02-14LibGfx: Add v2 "ncol" tag, expand commentNico Weber
2023-02-13Everywhere: Use /bin/Shell as the shebang for Shell scriptsAli Mohammad Pur
2023-02-13Shell: Use the POSIX parser if run as /bin/sh or passed the --posix flagAli Mohammad Pur
2023-02-13Shell: Start implementing a POSIX-compliant parserAli Mohammad Pur
2023-02-13LibGUI: Take gutter into account when measuring TextEditor content areaSam Atkins
2023-02-13LibGUI: Don't show caret cursor when hovering TextEditor's gutterSam Atkins
2023-02-13LibGUI: Combine wrapping/non-wrapping TextEditor code pathsSam Atkins
2023-02-13LibGUI: Fix typo in `span_consumed` variableSam Atkins
2023-02-13LibWeb: Convert CSS Token::to_debug_string() to ::to_string() :^)Sam Atkins
2023-02-13LibWeb: Convert CSS Token/ComponentValue::to_debug_string() to StringSam Atkins
2023-02-13LibWeb: Convert CSS Token value to new FlyStringSam Atkins
2023-02-13LibWeb: Return StringViews from CSS Token bracket-string gettersSam Atkins
2023-02-13LibWeb: Do not assume field element is always a HTMLInputElementKenneth Myhra
2023-02-13LibWeb: Avoid dereferencing null pointerKenneth Myhra
2023-02-13LibWeb: Clarify WebIDL::Promise as an alias for JS::PromiseCapabilitynetworkException