mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
LibWeb: Allow setting the width & height properties on <canvas> elements
This commit is contained in:
parent
47edd6ae89
commit
778268b1a5
3 changed files with 15 additions and 2 deletions
|
@ -37,6 +37,16 @@ unsigned HTMLCanvasElement::height() const
|
|||
return attribute(HTML::AttributeNames::height).to_uint().value_or(150);
|
||||
}
|
||||
|
||||
void HTMLCanvasElement::set_width(unsigned value)
|
||||
{
|
||||
set_attribute(HTML::AttributeNames::width, String::number(value));
|
||||
}
|
||||
|
||||
void HTMLCanvasElement::set_height(unsigned value)
|
||||
{
|
||||
set_attribute(HTML::AttributeNames::height, String::number(value));
|
||||
}
|
||||
|
||||
RefPtr<Layout::Node> HTMLCanvasElement::create_layout_node()
|
||||
{
|
||||
auto style = document().style_computer().compute_style(*this);
|
||||
|
|
|
@ -28,6 +28,9 @@ public:
|
|||
unsigned width() const;
|
||||
unsigned height() const;
|
||||
|
||||
void set_width(unsigned);
|
||||
void set_height(unsigned);
|
||||
|
||||
String to_data_url(const String& type, Optional<double> quality) const;
|
||||
|
||||
private:
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
interface HTMLCanvasElement : HTMLElement {
|
||||
|
||||
CanvasRenderingContext2D? getContext(DOMString contextId);
|
||||
readonly attribute unsigned long width;
|
||||
readonly attribute unsigned long height;
|
||||
attribute unsigned long width;
|
||||
attribute unsigned long height;
|
||||
|
||||
USVString toDataURL(optional DOMString type = "image/png", optional double quality);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue