mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:28:11 +00:00
LibWeb: Move HTML object model stuff into LibWeb/HTML/
Take a hint from SVG and more all the HTML classes into HTML instead of mixing them with the DOM classes.
This commit is contained in:
parent
fbc54a2dba
commit
a565121793
77 changed files with 159 additions and 152 deletions
7
Libraries/LibWeb/HTML/HTMLCanvasElement.idl
Normal file
7
Libraries/LibWeb/HTML/HTMLCanvasElement.idl
Normal file
|
@ -0,0 +1,7 @@
|
|||
interface HTMLCanvasElement : HTMLElement {
|
||||
|
||||
CanvasRenderingContext2D? getContext(DOMString contextId);
|
||||
readonly attribute unsigned long width;
|
||||
readonly attribute unsigned long height;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue