Aliaksandr Kalenik 9968c9f7a6 LibWeb: Fix hit-testing by excluding CSS transform from clip rect check 1 year ago
..
AudioPaintable.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
AudioPaintable.h ac2238ee70 LibWeb: Begin implementing the HTMLAudioElement for audio playback 2 years ago
BackgroundPainting.cpp 6eeda29642 LibWeb: Paint 1x1 backgrounds as color fill instead of tiling bitmap 1 year ago
BackgroundPainting.h 0233627545 LibWeb: Convert background painting to new pixel units 2 years ago
BorderPainting.cpp d1d6da6ab6 LibWeb: Resolve border radius during layout and save it in paintables 1 year ago
BorderPainting.h d1d6da6ab6 LibWeb: Resolve border radius during layout and save it in paintables 1 year ago
BorderRadiiData.cpp 0bf82f748f LibWeb: Move clip rect calculation to happen before painting 1 year ago
BorderRadiiData.h d4932196cc LibWeb: Account for all clipped border radii in containing block chain 1 year ago
BorderRadiusCornerClipper.cpp 64a48065b0 LibWeb: Check if corners have radius after converting to device pixels 1 year ago
BorderRadiusCornerClipper.h 177e7df1c5 LibWeb: Move border radius sampling config preparation into a function 1 year ago
BordersData.cpp 70353b79af LibWeb: Change paint_all_borders() to accept only device pixel values 1 year ago
BordersData.h 70353b79af LibWeb: Change paint_all_borders() to accept only device pixel values 1 year ago
ButtonPaintable.cpp 4a41a65ec5 LibWeb: Shift button paintable clip rectangle by scroll offset 1 year ago
ButtonPaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
CanvasPaintable.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
CanvasPaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
CheckBoxPaintable.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
CheckBoxPaintable.h cfc9966654 LibWeb: Add scaleable checkboxes (with theme/accent-color support) 2 years ago
ClipFrame.h d4932196cc LibWeb: Account for all clipped border radii in containing block chain 1 year ago
Command.cpp 11d746a67f LibWeb+WebContent: Separate painting command list from RecordingPainter 1 year ago
Command.h 11d746a67f LibWeb+WebContent: Separate painting command list from RecordingPainter 1 year ago
CommandExecutorCPU.cpp cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
CommandExecutorCPU.h cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
CommandExecutorGPU.cpp cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
CommandExecutorGPU.h cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
CommandList.cpp cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
CommandList.h cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
FilterPainting.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
FilterPainting.h 7803dcfcf9 LibWeb: Resolve backdrop filter length in apply_style() 1 year ago
GradientData.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
GradientPainting.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
GradientPainting.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
ImagePaintable.cpp 45a47cb32b LibWeb: Generalize ImageBox and ImagePaintable for any ImageProvider 1 year ago
ImagePaintable.h 5ff7448fee LibWeb: Move viewport subscriptions from BrowsingContext to Document 1 year ago
InlinePaintable.cpp 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
InlinePaintable.h 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
InputColors.h 56bc653e72 LibWeb: Move checkbox color palette computation to helper header 2 years ago
LabelablePaintable.cpp 31e5b5f5de LibWeb: Use paintable to represent event tracking node 1 year ago
LabelablePaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
LinearGradientData.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
MarkerPaintable.cpp bd9989b08a LibWeb: Don't pass StringView to RecordingPainter, to avoid copy 1 year ago
MarkerPaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
MediaPaintable.cpp 31e5b5f5de LibWeb: Use paintable to represent event tracking node 1 year ago
MediaPaintable.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
NestedBrowsingContextPaintable.cpp cc447c9c80 LibWeb+WebContent: Move paint recording init into Navigable 1 year ago
NestedBrowsingContextPaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
PaintContext.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
PaintContext.h 0bf82f748f LibWeb: Move clip rect calculation to happen before painting 1 year ago
PaintOuterBoxShadowParams.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
Paintable.cpp 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
Paintable.h 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
PaintableBox.cpp 9968c9f7a6 LibWeb: Fix hit-testing by excluding CSS transform from clip rect check 1 year ago
PaintableBox.h 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
PaintableFragment.cpp 8e20a44380 LibWeb: Avoid expensive containing_block lookups in PaintableFragment 1 year ago
PaintableFragment.h 1af466babf LibWeb: Fix invalidation of CSS properties that do not affect layout 1 year ago
RadioButtonPaintable.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
RadioButtonPaintable.h 4d401bf796 LibWeb: Make the paint tree GC-allocated 2 years ago
RecordingPainter.cpp 11d746a67f LibWeb+WebContent: Separate painting command list from RecordingPainter 1 year ago
RecordingPainter.h 11d746a67f LibWeb+WebContent: Separate painting command list from RecordingPainter 1 year ago
SVGGraphicsPaintable.cpp cb97eef2cf LibWeb+WebContent: Remove "Painting" prefix from command executor names 1 year ago
SVGGraphicsPaintable.h c93d367d95 LibWeb: Layout SVG <text> elements during layout (not while painting) 1 year ago
SVGPaintable.cpp 909bcfe9a4 LibWeb: Resolve and paint simple SVG masks 1 year ago
SVGPaintable.h 7d26383426 LibWeb: Remove SVGContext 2 years ago
SVGPathPaintable.cpp 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
SVGPathPaintable.h 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
SVGSVGPaintable.cpp d43dbe2842 LibWeb: Shift SVG paintable clip rectangle by scroll offset 1 year ago
SVGSVGPaintable.h 6b4062ab61 LibWeb: Make a handful of paintable leaf classes `final` 2 years ago
ShadowData.h 063e66cae9 LibWeb: Introduce RecordingPainter to serialize painting commands 1 year ago
ShadowPainting.cpp f9a7535fb8 LibWeb: Scale font per-glyph in paint_text_shadow() 1 year ago
ShadowPainting.h de32b77ceb LibWeb: Use separate structure to represent fragments in paintable tree 1 year ago
StackingContext.cpp 957c20b676 LibWeb: Avoid infinite recursion when hit testing SVGs 1 year ago
StackingContext.h 9c99182b1e LibWeb: Change StackingContext::hit_test() to accept callback 1 year ago
TableBordersPainting.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
TableBordersPainting.h d296992fb3 LibWeb: Make StackingContext point to paint tree instead of layout tree 1 year ago
TextPaintable.cpp 31e5b5f5de LibWeb: Use paintable to represent event tracking node 1 year ago
TextPaintable.h 0d76a9da17 LibWeb: Resolve `text-decoration-thickness` during layout commit 1 year ago
VideoPaintable.cpp 1b3223dd9e LibWeb: Rename painter() to recording_painter() in PaintContext 1 year ago
VideoPaintable.h ee48d7514f LibWeb: Extract media element timeline painting to a base class 2 years ago
ViewportPaintable.cpp 95d91a37d2 LibWeb: Resolve outline CSS property before paint commands recording 1 year ago
ViewportPaintable.h 76d1536307 LibWeb: Optimize scroll offset and clip state recalculation 1 year ago