mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-21 18:42:53 +00:00
LibWeb/SVG: Stub SVGTransform.setScale
This commit is contained in:
parent
5d5f043631
commit
effb696eef
Notes:
sideshowbarker
2024-07-17 01:23:08 +09:00
Author: https://github.com/jamierocks
Commit: effb696eef
Pull-request: https://github.com/SerenityOS/serenity/pull/24231
Reviewed-by: https://github.com/MacDue ✅
3 changed files with 10 additions and 1 deletions
|
@ -51,4 +51,12 @@ void SVGTransform::set_translate(float tx, float ty)
|
|||
dbgln("FIXME: Implement SVGTransform::set_translate(float tx, float ty)");
|
||||
}
|
||||
|
||||
// https://svgwg.org/svg2-draft/single-page.html#coords-__svg__SVGTransform__setScale
|
||||
void SVGTransform::set_scale(float sx, float sy)
|
||||
{
|
||||
(void)sx;
|
||||
(void)sy;
|
||||
dbgln("FIXME: Implement SVGTransform::set_scale(float sx, float sy)");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue