summaryrefslogtreecommitdiff
path: root/Userland/Libraries
AgeCommit message (Expand)Author
2021-09-25LibWeb: Provide a default DOM::EventTarget::dispatch_event()Andreas Kling
2021-09-25LibWeb: Use Core::EventLoop::spin_until() for the ad-hoc loop spinningAndreas Kling
2021-09-25LibCore: Add Core::EventLoop::spin_until(Function<bool()>)Andreas Kling
2021-09-25LibWeb: Move window.scroll{X,Y} from wrapper into DOM::WindowAndreas Kling
2021-09-25LibJS: Move has_constructor() from NativeFunction to FunctionObjectLinus Groh
2021-09-25LibJS: Add const Value::as_function()Linus Groh
2021-09-25LibJS: Remove unused FunctionObject::environment()Linus Groh
2021-09-25LibJS: Move [[BoundThis]] and [[BoundArguments]] to BoundFunctionLinus Groh
2021-09-25LibJS: Rename BoundFunction::m_target_function to match spec nameLinus Groh
2021-09-25LibJS: Move has_simple_parameter_list to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[Fields]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[HomeObject]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[ConstructorKind]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[ThisMode]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Add ECMAScriptFunctionObject forward declarationLinus Groh
2021-09-25LibJS: Rename ECMAScriptFunctionObject members to match spec namesLinus Groh
2021-09-25LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObjectLinus Groh
2021-09-24LibWeb: Skip decoding favicon.ico if downloaded data is emptyMandar Kulkarni
2021-09-24LibGfx: Forward declare Gfx::FontMetrics as a structAndreas Kling
2021-09-24LibWeb: Ignore `font-size: calc(...)` for nowAndreas Kling
2021-09-24LibWeb: Rename CSS::StyleResolver => StyleComputerAndreas Kling
2021-09-24LibWeb: Absolutize internal lengths in all StyleValuesAndreas Kling
2021-09-24LibWeb: Remove on-demand font resolutionAndreas Kling
2021-09-24LibWeb: Give DOM::Document some default style propertiesAndreas Kling
2021-09-24LibWeb: Make ListItemMarkerBox inherit style from ListItemBoxAndreas Kling
2021-09-24LibWeb: Add tightly-typed DOM node accessors for Layout::ListItemBoxAndreas Kling
2021-09-24LibWeb: Let <br> elements have styleAndreas Kling
2021-09-24LibWeb: Make HTML::EventLoop::process() a no-op if there are no tasksAndreas Kling
2021-09-24LibWeb: Start absolutizing lengths after performing the CSS cascadeAndreas Kling
2021-09-24LibGfx: Remove debug spam about not having some font installedAndreas Kling
2021-09-24LibGfx: Add a simple Gfx::FontMetrics and Gfx::Font::metrics(code_point)Andreas Kling
2021-09-24LibWeb: Rename "Computed" CSSStyleDeclaration => "Resolved"Andreas Kling
2021-09-24LibWeb: Replace last couple of StyleValue casts with `as_foo()`Sam Atkins
2021-09-24LibWeb: Use new StyleValue API in StyleResolverSam Atkins
2021-09-24LibWeb: Use new StyleValue API in StyleProperties.cppSam Atkins
2021-09-24LibWeb: Use new StyleValue API in ComputedCSSStyleDeclarationSam Atkins
2021-09-24LibWeb: Clarify StyleValue API with new naming schemeSam Atkins
2021-09-24LibWeb: Alphabetically sort StyleValuesSam Atkins
2021-09-24LibGUI: Categorize font families by variant instead of weightthankyouverycool
2021-09-24LibGfx: Make BitmapFont::variant() report a complete typefacethankyouverycool
2021-09-24LibGfx: Get weight from tables for TrueTypeFontsthankyouverycool
2021-09-24LibGfx: Support italic BitmapFontsthankyouverycool
2021-09-24LibDiff: Coalesce adjacent changes into the same HunkMustafa Quraish
2021-09-24LibDiff: Perform diffing-algorithm in reverse orderMustafa Quraish
2021-09-24LibWeb: Return undefined from event handler setters, not an empty valueLinus Groh
2021-09-24LibJS: Rename {Abstract,Typed => Loosely,Strictly}{Equals,Inequals}Linus Groh
2021-09-24LibJS: Rename abstract_relation() to is_less_than()Linus Groh
2021-09-24LibJS: Rename abstract_eq() to is_loosely_equal()Linus Groh
2021-09-24LibJS: Rename strict_eq() to is_strictly_equal()Linus Groh
2021-09-24LibJS: Close iterator on throw completion in Array.fromIdan Horowitz