diff options
author | Moonchild <moonchild@palemoon.org> | 2020-08-18 12:17:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 12:17:17 +0000 |
commit | 7ca7fe802e62eb1e361f54b165a102b042e8c1f3 (patch) | |
tree | 074718a27d8e292409cc9f46199c78523e8809b2 /dom/base/nsContentSink.cpp | |
parent | 56f8262c8e4e84e9d6b0d6da72ab39cd8e0b2751 (diff) | |
parent | 2372e190256bef645b5dddb6af9b0c1ee14cf846 (diff) | |
download | uxp-7ca7fe802e62eb1e361f54b165a102b042e8c1f3.tar.gz |
Merge pull request #1632 from athenian200/link_element_disabled
Respond to disabled attribute set on <link> elements from HTML
Diffstat (limited to 'dom/base/nsContentSink.cpp')
-rw-r--r-- | dom/base/nsContentSink.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dom/base/nsContentSink.cpp b/dom/base/nsContentSink.cpp index 1e6465a1bf..59f4a9f9a8 100644 --- a/dom/base/nsContentSink.cpp +++ b/dom/base/nsContentSink.cpp @@ -789,13 +789,14 @@ nsContentSink::ProcessStyleLink(nsIContent* aElement, // If this is a fragment parser, we don't want to observe. // We don't support CORS for processing instructions bool isAlternate; + bool isExplicitlyEnabled; rv = mCSSLoader->LoadStyleLink(aElement, url, aTitle, aMedia, aAlternate, CORS_NONE, mDocument->GetReferrerPolicy(), integrity, mRunsToCompletion ? nullptr : this, - &isAlternate); + &isAlternate, &isExplicitlyEnabled); NS_ENSURE_SUCCESS(rv, rv); - if (!isAlternate && !mRunsToCompletion) { + if ((!isAlternate || isExplicitlyEnabled) && !mRunsToCompletion) { ++mPendingSheetCount; mScriptLoader->AddParserBlockingScriptExecutionBlocker(); } |