1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

LibWeb: Expose Element.{prefix,localName}

This commit is contained in:
Luke 2021-05-11 15:16:08 +01:00 committed by Andreas Kling
parent d42d984a2d
commit 56d7d28d41

View file

@ -1,5 +1,7 @@
interface Element : Node {
readonly attribute DOMString? namespaceURI;
readonly attribute DOMString? prefix;
readonly attribute DOMString localName;
readonly attribute DOMString tagName;
DOMString? getAttribute(DOMString qualifiedName);