mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
LibPDF: Implement marked renderer operations as nops
This commit is contained in:
parent
544e44eec1
commit
6f1cfcf217
Notes:
sideshowbarker
2024-07-17 17:50:37 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/6f1cfcf217 Pull-request: https://github.com/SerenityOS/serenity/pull/12920
1 changed files with 31 additions and 5 deletions
|
@ -534,11 +534,37 @@ RENDERER_TODO(inline_image_begin)
|
|||
RENDERER_TODO(inline_image_begin_data)
|
||||
RENDERER_TODO(inline_image_end)
|
||||
RENDERER_TODO(paint_xobject)
|
||||
RENDERER_TODO(marked_content_point)
|
||||
RENDERER_TODO(marked_content_designate)
|
||||
RENDERER_TODO(marked_content_begin)
|
||||
RENDERER_TODO(marked_content_begin_with_property_list)
|
||||
RENDERER_TODO(marked_content_end)
|
||||
|
||||
RENDERER_HANDLER(marked_content_point)
|
||||
{
|
||||
// nop
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(marked_content_designate)
|
||||
{
|
||||
// nop
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(marked_content_begin)
|
||||
{
|
||||
// nop
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(marked_content_begin_with_property_list)
|
||||
{
|
||||
// nop
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(marked_content_end)
|
||||
{
|
||||
// nop
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_TODO(compatibility_begin)
|
||||
RENDERER_TODO(compatibility_end)
|
||||
|
||||
|
|
Loading…
Reference in a new issue