summaryrefslogtreecommitdiff
path: root/Userland/Libraries
AgeCommit message (Expand)Author
2023-04-01LibCompress: Implement block size validation for XZ streamsTim Schumacher
2023-04-01LibCompress: Factor out the list of XZ check sizesTim Schumacher
2023-04-01LibCompress: Reduce indentation in CompressedBlock::try_read_more()Nico Weber
2023-04-01LibWeb: Don't churn HTML::EventLoop while in microtask checkpointAndreas Kling
2023-04-01LibCore: Remove colons from markdown header names in ArgsParserTim Ledbetter
2023-04-01LibCompress: Add a utility to GZIP compress an entire fileTimothy Flynn
2023-04-01gunzip+LibCompress: Move utility to decompress files to GzipDecompressorTimothy Flynn
2023-03-31LibCompress: Remove two needless heap allocationsNico Weber
2023-03-31LibWeb: Add HTMLAnchorElement.referrerPolicy propertySam Atkins
2023-03-31LibWeb: Add HTMLAnchorElement.text getter and setterSam Atkins
2023-03-31LibWeb: Add "CEReactions" to HTMLAnchorElement IDL as in specSam Atkins
2023-03-31LibGUI: Add gutter indicators to TextEditor :^)Sam Atkins
2023-03-31LibGUI: Rename TextEditor::LineVisualData -> LineDataSam Atkins
2023-03-31LibGUI: Extract repeated code for populating TextEditor per-line dataSam Atkins
2023-03-31AK+LibCompress: Remove the Deflate back-reference intermediate bufferTimothy Flynn
2023-03-31gunzip+LibCompress: Increase buffer sizes used by Deflate and gunzipTimothy Flynn
2023-03-31LibCrypto: Implement little endian CRC using the slicing-by-8 algorithmTimothy Flynn
2023-03-31LibCore: Don't assume ArgsParser arguments are non-emptyAli Mohammad Pur
2023-03-30LibWeb: Split CalculatedStyleValue out of StyleValue.{h,cpp}Sam Atkins
2023-03-30LibWeb: Move PercentageOr and subclasses into PercentageOr.{h,cpp}Sam Atkins
2023-03-30LibWeb: Make `absolutized_length()` helper a Length methodSam Atkins
2023-03-30LibWeb: Move to_gfx_scaling_mode() helperSam Atkins
2023-03-30LibWeb: Move PositionValue into its own filesSam Atkins
2023-03-30LibWeb: Move CSS::EdgeRect into its own filesSam Atkins
2023-03-30LibWeb: Move BackgroundSize enum to ComputedValues.hSam Atkins
2023-03-30LibWeb: Move FlexBasis enum to ComputedValues.hSam Atkins
2023-03-30LibWeb: Remove CalculatedStyleValue from LengthSam Atkins
2023-03-30LibWeb: Let CSS::Size contain a CalculatedStyleValueSam Atkins
2023-03-30LibWeb: Remove CalculatedStyleValue from TimeSam Atkins
2023-03-30LibWeb: Remove CalculatedStyleValue from FrequencySam Atkins
2023-03-30LibWeb: Remove CalculatedStyleValue from AngleSam Atkins
2023-03-30LibWeb: Introduce CalculatedOr typeSam Atkins
2023-03-30LibJS: Add fast path to Value::to_u32() if Value is a positive i32Andreas Kling
2023-03-30LibWeb: Actually visit rules and media queries in imported style sheetsAndreas Kling
2023-03-30LibCompress: Use LZMA context from preexisting dictionaryTim Schumacher
2023-03-30LibCompress: Avoid overflowing the size of uncompressed LZMA2 chunksTim Schumacher
2023-03-30LibCompress: Use the correct LZMA repetition offset in all casesTim Schumacher
2023-03-30LibCompress: Only require new LZMA2 properties after dictionary resetTim Schumacher
2023-03-30LibCompress: Reduce repeated code in the LZMA decompressorTim Schumacher
2023-03-30LibCompress: Implement support for multiple concatenated XZ streamsTim Schumacher
2023-03-30LibCompress: Move XZ header validation into the read functionTim Schumacher
2023-03-30LibWeb: Don't re-sort StyleSheetList on every new sheet insertionAndreas Kling
2023-03-30LibWeb: Make the Node.compareDocumentPosition() return value enum publicAndreas Kling
2023-03-30LibWeb: Remove redundant invocation of `children changed` in HTMLParserAndreas Kling
2023-03-30LibCompress: Implement proper handling of LZMA end-of-stream markersTim Schumacher
2023-03-30LibCompress: Move common LZMA end-of-file checks into helper functionsTim Schumacher
2023-03-29LibWeb: Implement CRC2D.imageSmoothingEnabledAndreas Kling
2023-03-29LibWeb: Resolve percentage vertical-align values against line-heightAndreas Kling
2023-03-29LibCompress: Decode non-self-referencing back-references in one shotTimothy Flynn
2023-03-29LibCompress: Use prefix tables to decode Huffman codes up to 8 bits longTimothy Flynn