summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-06-12LibIPC: Use create_single_shot to construct timerKevin Meyer
2020-06-12LibWeb: Remove absolutely positioned elements from the normal flowAndreas Kling
2020-06-12LibWeb: Remove absolute positioning logic from LayoutReplacedAndreas Kling
2020-06-12LibWeb: Add basic support for position:fixedAndreas Kling
2020-06-12LibWeb: Whine about unrecognized CSS properties in debug logAndreas Kling
2020-06-12LibWeb: Rename BoxModelMetrics::full_margin() => margin_box()Andreas Kling
2020-06-12LibWeb: Some improvements to absolute positioningAndreas Kling
2020-06-12LibWeb: Include class names in layout tree dumpsAndreas Kling
2020-06-12LibIPC: Actually use the new Core::Timer::restart() I just addedAndreas Kling
2020-06-11LibIPC+WindowServer+LibGUI: Detect and highlight unresponsive GUI appsAndreas Kling
2020-06-11LibCore: Fix typo in Forward.hAndreas Kling
2020-06-11LibCore: Add Timer::restart() convenience APIAndreas Kling
2020-06-11LibGfx: Return paint_button() earlier and replace overdrawn rectthankyouverycool
2020-06-11LibGfx: Fail PNG decoding on invalid scanline filterAndreas Kling
2020-06-11LibGfx: Minor tweaks in PNG decoderAndreas Kling
2020-06-11LibJS: Consolidate error messages into ErrorTypes.hMatthew Olsson
2020-06-10LibGfx: Return correct color for palette.hover_highlight()thankyouverycool
2020-06-10LibWeb: Don't try to expand shorthands from non-string CSS valuesAndreas Kling
2020-06-10LibGfx: Visual enhancement to buttonsthankyouverycool
2020-06-10LibGfx: Use size_t for the Streamer offset and sizesAndreas Kling
2020-06-10LibWeb: Expand "background: url()" into "background-image: url()"Andreas Kling
2020-06-10LibWeb: Expand 2-part border-width shorthand CSS propertiesAndreas Kling
2020-06-10LibWeb: Apply style rules in order of specificity (kinda)Andreas Kling
2020-06-10LibWeb: Expand border-{top,right,bottom-left} CSS shorthand propertiesAndreas Kling
2020-06-10LibWeb: Ignore backslashes (\) in attribute selectorsAndreas Kling
2020-06-10LibWeb: Parse and match basic "contains" attribute selectors (~=)Andreas Kling
2020-06-10LibWeb: Constrain block height by the max-height if specifiedAndreas Kling
2020-06-10LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSizeAndreas Kling
2020-06-10LibWeb: Rework the layout engine to use relative offsetsAndreas Kling
2020-06-10LibWeb: Fix parser interpreting """ as "&quot"Andreas Kling
2020-06-10LibGfx: Add FloatSize::to_int_size()Andreas Kling
2020-06-09LibWeb: Add LayoutTableRowGroup to implement display: table-row-groupAndreas Kling
2020-06-09LibWeb: Add some iteration helpers to LayoutNodeAndreas Kling
2020-06-08LibC: Don't assert on unknown mode character in fopen()Andreas Kling
2020-06-08LibC: Add nanosleep() wrapper around clock_nanosleep(CLOCK_REALTIME)Andreas Kling
2020-06-08LibC: Add IPPORT_RESERVED and IPPORT_USERRESERVEDAndreas Kling
2020-06-08LibC: Add ws_xpixel and ws_ypixel members to struct winsizeAndreas Kling
2020-06-08LibWeb: Unbreak favicon notifications after Page refactoringAndreas Kling
2020-06-08LibWeb: Remove unnecessary on_foo hooks from FrameAndreas Kling
2020-06-08LibJS: Make more Interpreter functions take a GlobalObject&Andreas Kling
2020-06-08LibJS: Interpreter::this_value() => this_value(GlobalObject&)Andreas Kling
2020-06-08LibJS: Pass GlobalObject& to AST node execute() functionsAndreas Kling
2020-06-08LibWeb: Add Page abstraction between PageView and main FrameAndreas Kling
2020-06-08LibJS+js: Support getting last value from "_" variableLinus Groh
2020-06-08LibCore: Make sure to disable notifiers when closing a socketSergey Bugaev
2020-06-08LibIPC+LibGfx+IPCCompiler: Drop some unused includesSergey Bugaev
2020-06-08LibJS+LibWeb: Remove a bunch of calls to Interpreter::global_object()Andreas Kling
2020-06-08LibJS: Always keep a reference to the global object in ShapeAndreas Kling
2020-06-08LibJS: BigInts and Symbols values are cells and the GC needs this infoAndreas Kling
2020-06-08LibJS: Add interpreter exception checksMatthew Olsson