mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00

Had to do a bunch more hacking on WrapperGenerator to support this. We now support attribute setters as well.
10 lines
215 B
Text
10 lines
215 B
Text
interface Element : Node {
|
|
|
|
DOMString? getAttribute(DOMString qualifiedName);
|
|
void setAttribute(DOMString qualifiedName, DOMString value);
|
|
|
|
attribute DOMString innerHTML;
|
|
attribute DOMString id;
|
|
|
|
}
|
|
|