diff options
author | Stephen Muss <stephenmuss@gmail.com> | 2025-03-19 18:57:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-19 07:57:43 +0000 |
commit | 07e06f5635b95b90144caa198a941fc024f606b7 (patch) | |
tree | c61ebe6a3f1f32dea92b2de62168fd2f87d68a6e /components/script_bindings/webidls/HTMLParagraphElement.webidl | |
parent | a442a113306906d89936aaa833c043bb3e651ba8 (diff) | |
download | servo-07e06f5635b95b90144caa198a941fc024f606b7.tar.gz servo-07e06f5635b95b90144caa198a941fc024f606b7.zip |
Support align attribute on HTMLParagraphElement interface (#36054)
Signed-off-by: Stephen Muss <stephenmuss@gmail.com>
Diffstat (limited to 'components/script_bindings/webidls/HTMLParagraphElement.webidl')
-rw-r--r-- | components/script_bindings/webidls/HTMLParagraphElement.webidl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/components/script_bindings/webidls/HTMLParagraphElement.webidl b/components/script_bindings/webidls/HTMLParagraphElement.webidl index d42533b9ef9..296bed6a938 100644 --- a/components/script_bindings/webidls/HTMLParagraphElement.webidl +++ b/components/script_bindings/webidls/HTMLParagraphElement.webidl @@ -12,6 +12,5 @@ interface HTMLParagraphElement : HTMLElement { // https://html.spec.whatwg.org/multipage/#HTMLParagraphElement-partial partial interface HTMLParagraphElement { - // [CEReactions] - // attribute DOMString align; + [CEReactions] attribute DOMString align; }; |