summaryrefslogtreecommitdiffstats
path: root/dom/html/HTMLTemplateElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/html/HTMLTemplateElement.h')
-rw-r--r--dom/html/HTMLTemplateElement.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/dom/html/HTMLTemplateElement.h b/dom/html/HTMLTemplateElement.h
index be643d215b..f54967868b 100644
--- a/dom/html/HTMLTemplateElement.h
+++ b/dom/html/HTMLTemplateElement.h
@@ -51,12 +51,18 @@ class HTMLTemplateElement final : public nsGenericHTMLElement {
SetHTMLAttr(nsGkAtoms::shadowrootmode, aValue);
}
- bool ShadowRootDelegatesFocus() {
+ bool ShadowRootDelegatesFocus() const {
return GetBoolAttr(nsGkAtoms::shadowrootdelegatesfocus);
}
- void SetShadowRootDelegatesFocus(bool aValue) {
- SetHTMLBoolAttr(nsGkAtoms::shadowrootdelegatesfocus, aValue,
- IgnoredErrorResult());
+ void SetShadowRootDelegatesFocus(bool aValue, ErrorResult& aRv) {
+ SetHTMLBoolAttr(nsGkAtoms::shadowrootdelegatesfocus, aValue, aRv);
+ }
+
+ bool ShadowRootClonable() const {
+ return GetBoolAttr(nsGkAtoms::shadowrootclonable);
+ }
+ void SetShadowRootClonable(bool aValue, ErrorResult& aRv) {
+ SetHTMLBoolAttr(nsGkAtoms::shadowrootclonable, aValue, aRv);
}
MOZ_CAN_RUN_SCRIPT