summaryrefslogtreecommitdiff
path: root/Userland/Libraries
AgeCommit message (Expand)Author
2022-02-22LibSoftGPU: Apply regular cartesian coordinate systemJelle Raaijmakers
2022-02-22LibGL: East-const two methods in `Texture2D`Jelle Raaijmakers
2022-02-22LibGL+LibSoftGPU: Use more expressive `is_power_of_two`Jelle Raaijmakers
2022-02-22LibSoftGPU: Rename `rgba` to `bgra` to reflect actual valueJelle Raaijmakers
2022-02-22LibGL: Use `clamp<float>` for depth rangeJelle Raaijmakers
2022-02-22LibSoftGPU: Generalize pixel buffers and standardize on BGRA8888Jelle Raaijmakers
2022-02-22LibGL: Remove superfluous `AK::dbgln` aliasJelle Raaijmakers
2022-02-22LibSoftGPU: Remove `Device::wait_for_all_threads()`Jelle Raaijmakers
2022-02-22LibSoftGPU: Remove unused `AK/Function.h` includeJelle Raaijmakers
2022-02-22LibSoftGPU: Use `fabsf` instead of `fabs` for `float`Jelle Raaijmakers
2022-02-22LibGL: Allow all primitives in `glBegin()`Jelle Raaijmakers
2022-02-23LibTest+Spreadsheet: Add some basic spreadsheet runtime behaviour testsAli Mohammad Pur
2022-02-23LibJS: Print the expected and received value on expect.toEqual() failureAli Mohammad Pur
2022-02-21LibWeb: Support CSSStyleDeclaration.cssFloatAndreas Kling
2022-02-21LibWeb: Implement Node.removeChild() in terms of "pre-remove"Andreas Kling
2022-02-21LibWeb: Make document.write() work while document is parsingAndreas Kling
2022-02-21LibWeb: Use correct coordinate space when measuring space between floatsAndreas Kling
2022-02-21LibWeb: Calculate edge of containing block correctly when floating rightAndreas Kling
2022-02-21LibWeb: Don't shift right-floated boxes too much to the leftAndreas Kling
2022-02-21LibWeb: Fix floating boxes getting stacked on top of each otherAndreas Kling
2022-02-21LibWeb: Compute table cell height after doing its inside layoutAndreas Kling
2022-02-21LibWeb: Rename FormattingState::ensure() -> get_mutable()Andreas Kling
2022-02-21LibWeb: Add hack to avoid crashing on !child_display.is_flow_inside()Andreas Kling
2022-02-21LibWeb: Respect font-size specified by CSS in "em" length calculationsAndreas Kling
2022-02-21LibWeb: Store overflow data in the FormattingStateAndreas Kling
2022-02-21LibWeb: Create list-item markers during layout tree constructionAndreas Kling
2022-02-21LibWeb: Start making our layout system "transactional"Andreas Kling
2022-02-21LibWeb: Add Layout::FormattingStateAndreas Kling
2022-02-21LibWeb: Assign correct viewport dimensions when making style for ICBAndreas Kling
2022-02-21LibWeb: Add basic support for dynamic markup insertionLorenz Steinert
2022-02-21LibJS: Define the Intl.Collator's compare function name to be emptyTimothy Flynn
2022-02-21LibWeb: SVG parse signed numbers in eliptical arcSimon Danner
2022-02-21LibGUI: Add 'remove_all_actions' method to 'Menu'Marco Cutecchia
2022-02-21LibWeb: Fix 'Comment end state' in HTML TokenizerAdam Hodgen
2022-02-21LibWeb: Implement tokenization newline preprocessingAdam Hodgen
2022-02-21LibWeb: Fix off by one error in HTML TokenizerAdam Hodgen
2022-02-21LibWeb: Implement `Node.nodeValue` DOM attributeAdam Hodgen
2022-02-20LibJS: Re-implement String.localeCompare using the StringCompare AOIdan Horowitz
2022-02-20LibJS: Implement get Intl.Collator.prototype.compareIdan Horowitz
2022-02-20LibJS: Add an initial implementation of Collator Compare FunctionsIdan Horowitz
2022-02-20LibJS: Capture values as handles in Promise.prototype.finally callbacksLinus Groh
2022-02-20LibJS: Use new NativeFunction::create() in most placesLinus Groh
2022-02-20LibJS: Add NativeFunction::create() overload for CreateBuiltinFunctionLinus Groh
2022-02-20LibJS: Add [[InitialName]] and use it in Function.prototype.toString()Linus Groh
2022-02-20LibAudio: Simplify empty Audio::Buffer state to be truly emptyAndrew Kaster
2022-02-20LibJS: Remove unused FunctionNode::set_name()Linus Groh
2022-02-20LibJS: Remove unused BoundFunction.h include from FunctionObject.cppLinus Groh
2022-02-20LibRegex: Make codegen+optimisation for alternatives much fasterAli Mohammad Pur
2022-02-20LibRegex: Make parse_disjunction() consume all disjunctions in one frameAli Mohammad Pur
2022-02-20LibRegex: Allow quantifiers after quantifiable assertionsAli Mohammad Pur