diff options
author | Moonchild <moonchild@palemoon.org> | 2020-06-07 18:09:13 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-06-07 18:09:13 +0000 |
commit | fbab1f4f9eab329cc3c807ac4606afe194cea51b (patch) | |
tree | 8f887c2d12e6c30e484b6814c1d1d0be8c9ba07c /dom/base/nsDocument.cpp | |
parent | 90c42b7afda8ddab70e9fb67b006248afce8e083 (diff) | |
download | UXP-fbab1f4f9eab329cc3c807ac4606afe194cea51b.tar UXP-fbab1f4f9eab329cc3c807ac4606afe194cea51b.tar.gz UXP-fbab1f4f9eab329cc3c807ac4606afe194cea51b.tar.lz UXP-fbab1f4f9eab329cc3c807ac4606afe194cea51b.tar.xz UXP-fbab1f4f9eab329cc3c807ac4606afe194cea51b.zip |
[DOM] Hard-disable webcomponents and customelements prefs (redwood)
Diffstat (limited to 'dom/base/nsDocument.cpp')
-rw-r--r-- | dom/base/nsDocument.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dom/base/nsDocument.cpp b/dom/base/nsDocument.cpp index 380593737..81e2783a4 100644 --- a/dom/base/nsDocument.cpp +++ b/dom/base/nsDocument.cpp @@ -5709,9 +5709,9 @@ nsDocument::IsWebComponentsEnabled(JSContext* aCx, JSObject* aObject) { JS::Rooted<JSObject*> obj(aCx, aObject); - if (Preferences::GetBool("dom.webcomponents.enabled")) { - return true; - } + //if (Preferences::GetBool("dom.webcomponents.enabled")) { + // return true; + //} // Check for the webcomponents permission. See Bug 1181555. JSAutoCompartment ac(aCx, obj); @@ -5725,9 +5725,9 @@ nsDocument::IsWebComponentsEnabled(JSContext* aCx, JSObject* aObject) bool nsDocument::IsWebComponentsEnabled(dom::NodeInfo* aNodeInfo) { - if (Preferences::GetBool("dom.webcomponents.enabled")) { - return true; - } + //if (Preferences::GetBool("dom.webcomponents.enabled")) { + // return true; + //} nsIDocument* doc = aNodeInfo->GetDocument(); // Use GetScopeObject() here so that data documents work the same way as the @@ -5740,6 +5740,7 @@ nsDocument::IsWebComponentsEnabled(dom::NodeInfo* aNodeInfo) bool nsDocument::IsWebComponentsEnabled(nsPIDOMWindowInner* aWindow) { +/* if (aWindow) { nsresult rv; nsCOMPtr<nsIPermissionManager> permMgr = @@ -5753,7 +5754,7 @@ nsDocument::IsWebComponentsEnabled(nsPIDOMWindowInner* aWindow) return perm == nsIPermissionManager::ALLOW_ACTION; } - +*/ return false; } |