Chromium Code Reviews| Index: third_party/WebKit/Source/core/dom/StyleElement.cpp |
| diff --git a/third_party/WebKit/Source/core/dom/StyleElement.cpp b/third_party/WebKit/Source/core/dom/StyleElement.cpp |
| index 7a8f7123fadb7b69dd4027f986bb67901402d329..eaf59797c1145b9ba225faadf76d166f0ab2e9e1 100644 |
| --- a/third_party/WebKit/Source/core/dom/StyleElement.cpp |
| +++ b/third_party/WebKit/Source/core/dom/StyleElement.cpp |
| @@ -38,9 +38,9 @@ |
| namespace blink { |
| -static bool isCSS(Element* element, const AtomicString& type) |
| +static bool isCSS(const Element& element, const AtomicString& type) |
| { |
| - return type.isEmpty() || (element->isHTMLElement() ? equalIgnoringCase(type, "text/css") : (type == "text/css")); |
| + return type.isEmpty() || (element.isHTMLElement() ? equalIgnoringCase(type, "text/css") : (type == "text/css")); |
| } |
| StyleElement::StyleElement(Document* document, bool createdByParser) |
| @@ -57,11 +57,10 @@ StyleElement::~StyleElement() |
| { |
| } |
| -StyleElement::ProcessingResult StyleElement::processStyleSheet(Document& document, Element* element) |
| +StyleElement::ProcessingResult StyleElement::processStyleSheet(Document& document, Element& element) |
| { |
| TRACE_EVENT0("blink", "StyleElement::processStyleSheet"); |
| - DCHECK(element); |
| - DCHECK(element->isConnected()); |
| + DCHECK(element.isConnected()); |
| m_registeredAsCandidate = true; |
| document.styleEngine().addStyleSheetCandidateNode(element); |
| @@ -71,27 +70,27 @@ StyleElement::ProcessingResult StyleElement::processStyleSheet(Document& documen |
| return process(element); |
| } |
| -void StyleElement::insertedInto(Element* element, ContainerNode* insertionPoint) |
| +void StyleElement::insertedInto(Element& element, ContainerNode* insertionPoint) |
|
sashab
2016/09/21 01:33:29
insertionPoint could probably be a ContainerNode&
rune
2016/09/21 07:17:46
Yes, most likely.
|
| { |
| - if (!insertionPoint->isConnected() || !element->isInShadowTree()) |
| + if (!insertionPoint->isConnected() || !element.isInShadowTree()) |
| return; |
| - if (ShadowRoot* scope = element->containingShadowRoot()) |
| + if (ShadowRoot* scope = element.containingShadowRoot()) |
| scope->registerScopedHTMLStyleChild(); |
| } |
| -void StyleElement::removedFrom(Element* element, ContainerNode* insertionPoint) |
| +void StyleElement::removedFrom(Element& element, ContainerNode* insertionPoint) |
| { |
| if (!insertionPoint->isConnected()) |
| return; |
| - ShadowRoot* shadowRoot = element->containingShadowRoot(); |
| + ShadowRoot* shadowRoot = element.containingShadowRoot(); |
| if (!shadowRoot) |
| shadowRoot = insertionPoint->containingShadowRoot(); |
| if (shadowRoot) |
| shadowRoot->unregisterScopedHTMLStyleChild(); |
| - Document& document = element->document(); |
| + Document& document = element.document(); |
| if (m_registeredAsCandidate) { |
| document.styleEngine().removeStyleSheetCandidateNode(element, shadowRoot ? *toTreeScope(shadowRoot) : toTreeScope(document)); |
| m_registeredAsCandidate = false; |
| @@ -105,72 +104,69 @@ void StyleElement::removedFrom(Element* element, ContainerNode* insertionPoint) |
| document.styleEngine().setNeedsActiveStyleUpdate(removedSheet, AnalyzedStyleUpdate); |
| } |
| -StyleElement::ProcessingResult StyleElement::childrenChanged(Element* element) |
| +StyleElement::ProcessingResult StyleElement::childrenChanged(Element& element) |
| { |
| - DCHECK(element); |
| if (m_createdByParser) |
| return ProcessingSuccessful; |
| return process(element); |
| } |
| -StyleElement::ProcessingResult StyleElement::finishParsingChildren(Element* element) |
| +StyleElement::ProcessingResult StyleElement::finishParsingChildren(Element& element) |
| { |
| - DCHECK(element); |
| ProcessingResult result = process(element); |
| m_createdByParser = false; |
| return result; |
| } |
| -StyleElement::ProcessingResult StyleElement::process(Element* element) |
| +StyleElement::ProcessingResult StyleElement::process(Element& element) |
| { |
| - if (!element || !element->isConnected()) |
| + if (!element.isConnected()) |
| return ProcessingSuccessful; |
| - return createSheet(element, element->textFromChildren()); |
| + return createSheet(element, element.textFromChildren()); |
| } |
| -void StyleElement::clearSheet(Element* ownerElement) |
| +void StyleElement::clearSheet(Element& ownerElement) |
| { |
| DCHECK(m_sheet); |
| - if (ownerElement && m_sheet->isLoading()) |
| - ownerElement->document().styleEngine().removePendingSheet(ownerElement, m_styleEngineContext); |
| + if (m_sheet->isLoading()) |
| + ownerElement.document().styleEngine().removePendingSheet(ownerElement, m_styleEngineContext); |
| m_sheet.release()->clearOwnerNode(); |
| } |
| -static bool shouldBypassMainWorldCSP(Element* element) |
| +static bool shouldBypassMainWorldCSP(const Element& element) |
| { |
| // Main world CSP is bypassed within an isolated world. |
| - LocalFrame* frame = element->document().frame(); |
| + LocalFrame* frame = element.document().frame(); |
| if (frame && frame->script().shouldBypassMainWorldCSP()) |
| return true; |
| // Main world CSP is bypassed for style elements in user agent shadow DOM. |
| - ShadowRoot* root = element->containingShadowRoot(); |
| + ShadowRoot* root = element.containingShadowRoot(); |
| if (root && root->type() == ShadowRootType::UserAgent) |
| return true; |
| return false; |
| } |
| -StyleElement::ProcessingResult StyleElement::createSheet(Element* e, const String& text) |
| +StyleElement::ProcessingResult StyleElement::createSheet(Element& element, const String& text) |
| { |
| - DCHECK(e); |
| - DCHECK(e->isConnected()); |
| - Document& document = e->document(); |
| + DCHECK(element.isConnected()); |
| + Document& document = element.document(); |
| const ContentSecurityPolicy* csp = document.contentSecurityPolicy(); |
| - bool passesContentSecurityPolicyChecks = shouldBypassMainWorldCSP(e) |
| + bool passesContentSecurityPolicyChecks = shouldBypassMainWorldCSP(element) |
| || csp->allowStyleWithHash(text, ContentSecurityPolicy::InlineType::Block) |
| - || csp->allowInlineStyle(e->document().url(), e->fastGetAttribute(HTMLNames::nonceAttr), m_startPosition.m_line, text); |
| + || csp->allowInlineStyle(document.url(), element.fastGetAttribute(HTMLNames::nonceAttr), m_startPosition.m_line, text); |
|
sashab
2016/09/21 01:33:29
Nice additional fix with element.document.url()! :
|
| // Clearing the current sheet may remove the cache entry so create the new sheet first |
| CSSStyleSheet* newSheet = nullptr; |
| // If type is empty or CSS, this is a CSS style sheet. |
| const AtomicString& type = this->type(); |
| - if (isCSS(e, type) && passesContentSecurityPolicyChecks) { |
| + if (isCSS(element, type) && passesContentSecurityPolicyChecks) { |
| MediaQuerySet* mediaQueries = MediaQuerySet::create(media()); |
| MediaQueryEvaluator screenEval("screen", true); |
| @@ -178,14 +174,14 @@ StyleElement::ProcessingResult StyleElement::createSheet(Element* e, const Strin |
| if (screenEval.eval(mediaQueries) || printEval.eval(mediaQueries)) { |
| m_loading = true; |
| TextPosition startPosition = m_startPosition == TextPosition::belowRangePosition() ? TextPosition::minimumPosition() : m_startPosition; |
| - newSheet = document.styleEngine().createSheet(e, text, startPosition, m_styleEngineContext); |
| + newSheet = document.styleEngine().createSheet(element, text, startPosition, m_styleEngineContext); |
| newSheet->setMediaQueries(mediaQueries); |
| m_loading = false; |
| } |
| } |
| if (m_sheet) |
| - clearSheet(e); |
| + clearSheet(element); |
| m_sheet = newSheet; |
| if (m_sheet) |
| @@ -206,7 +202,7 @@ bool StyleElement::sheetLoaded(Document& document) |
| if (isLoading()) |
| return false; |
| - document.styleEngine().removePendingSheet(m_sheet->ownerNode(), m_styleEngineContext); |
| + document.styleEngine().removePendingSheet(*m_sheet->ownerNode(), m_styleEngineContext); |
| return true; |
| } |