diff options
author | thesecretmaster <15304293+thesecretmaster@users.noreply.github.com> | 2023-08-08 11:30:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-08 16:30:55 +0000 |
commit | c28404e9fa57c134210b92a7736833f3ac04dd28 (patch) | |
tree | 359cb1e68e4a99d21041458bbc57dbffabf4f1c3 /components/script/dom/webidls/HTMLTableElement.webidl | |
parent | bce7622cde4cd10f6b3edf852d97ae9a540a0076 (diff) | |
download | servo-c28404e9fa57c134210b92a7736833f3ac04dd28.tar.gz servo-c28404e9fa57c134210b92a7736833f3ac04dd28.zip |
Return error when setting invalid <table> caption (#30020)
* Return error when setting invalid <table> caption
Signed-off-by: thesecretmaster <thesecretmaster@developingtechnician.com>
* Forgot to commit style changes
Signed-off-by: thesecretmaster <thesecretmaster@developingtechnician.com>
---------
Signed-off-by: thesecretmaster <thesecretmaster@developingtechnician.com>
Diffstat (limited to 'components/script/dom/webidls/HTMLTableElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLTableElement.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLTableElement.webidl b/components/script/dom/webidls/HTMLTableElement.webidl index 72a151fc858..c9342cc2722 100644 --- a/components/script/dom/webidls/HTMLTableElement.webidl +++ b/components/script/dom/webidls/HTMLTableElement.webidl @@ -7,7 +7,7 @@ interface HTMLTableElement : HTMLElement { [HTMLConstructor] constructor(); - [CEReactions] + [CEReactions, SetterThrows] attribute HTMLTableCaptionElement? caption; HTMLTableCaptionElement createCaption(); [CEReactions] |