1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

LibWeb: Add a non-DeprecatedString version of Element::prefix()

Renaming the old DeprecatedString version of this function to
deprecated_prefix().
This commit is contained in:
Shannon Booth 2023-10-01 17:15:57 +13:00 committed by Andreas Kling
parent e5e4920e66
commit ebe01b51c8
4 changed files with 6 additions and 4 deletions

View file

@ -24,7 +24,7 @@ dictionary ScrollIntoViewOptions : ScrollOptions {
[Exposed=Window, UseDeprecatedAKString]
interface Element : Node {
readonly attribute DOMString? namespaceURI;
readonly attribute DOMString? prefix;
[ImplementedAs=deprecated_prefix] readonly attribute DOMString? prefix;
readonly attribute DOMString localName;
readonly attribute DOMString tagName;