diff options
author | Simon Wülker <simon.wuelker@arcor.de> | 2024-09-04 13:29:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 11:29:59 +0000 |
commit | fc5f8e9237f95153b642846f8d89682cc4061573 (patch) | |
tree | 9094fe1dfb9bf68546614908981d709b329cf40f /components/script/dom/webidls/HTMLQuoteElement.webidl | |
parent | febb4f24c444dd5c85ca2ed41b633ddadbf24eb5 (diff) | |
download | servo-fc5f8e9237f95153b642846f8d89682cc4061573.tar.gz servo-fc5f8e9237f95153b642846f8d89682cc4061573.zip |
Implement HTMLQuoteElement "cite" attribute (#33307)
Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
Diffstat (limited to 'components/script/dom/webidls/HTMLQuoteElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLQuoteElement.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/HTMLQuoteElement.webidl b/components/script/dom/webidls/HTMLQuoteElement.webidl index d7623fb47b9..8bc30cdb4c1 100644 --- a/components/script/dom/webidls/HTMLQuoteElement.webidl +++ b/components/script/dom/webidls/HTMLQuoteElement.webidl @@ -7,6 +7,6 @@ interface HTMLQuoteElement : HTMLElement { [HTMLConstructor] constructor(); - // [CEReactions] - // attribute DOMString cite; + [CEReactions] + attribute USVString cite; }; |