summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/dom/document_fragment.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/dom/document_fragment.h')
-rw-r--r--chromium/third_party/blink/renderer/core/dom/document_fragment.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/chromium/third_party/blink/renderer/core/dom/document_fragment.h b/chromium/third_party/blink/renderer/core/dom/document_fragment.h
index a573910a923..518ebbf2067 100644
--- a/chromium/third_party/blink/renderer/core/dom/document_fragment.h
+++ b/chromium/third_party/blink/renderer/core/dom/document_fragment.h
@@ -50,13 +50,6 @@ class CORE_EXPORT DocumentFragment : public ContainerNode {
bool CanContainRangeEndPoint() const final { return true; }
virtual bool IsTemplateContent() const { return false; }
- bool allowDeclarativeShadowDom() const {
- return allow_declarative_shadow_dom_;
- }
- void setAllowDeclarativeShadowDom(bool value) {
- allow_declarative_shadow_dom_ = value;
- }
-
// This will catch anyone doing an unnecessary check.
bool IsDocumentFragment() const = delete;
@@ -67,8 +60,6 @@ class CORE_EXPORT DocumentFragment : public ContainerNode {
NodeType getNodeType() const final;
Node* Clone(Document&, CloneChildrenFlag) const override;
bool ChildTypeAllowed(NodeType) const override;
-
- bool allow_declarative_shadow_dom_{false};
};
template <>