Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: sky/engine/core/css/resolver/ScopedStyleResolver.cpp

Issue 851873002: Move @font-face logic from ScopedStyleResolver to StyleEngine. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sky/engine/core/css/resolver/ScopedStyleResolver.h ('k') | sky/engine/core/dom/StyleEngine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2012 Google Inc. All rights reserved. 4 * Copyright (C) 2012 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright 11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the 12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution. 13 * documentation and/or other materials provided with the distribution.
14 * 14 *
15 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y 15 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y 18 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y
19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
22 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #include "sky/engine/config.h" 27 #include "sky/engine/config.h"
28 #include "sky/engine/core/css/resolver/ScopedStyleResolver.h" 28 #include "sky/engine/core/css/resolver/ScopedStyleResolver.h"
29 29
30 #include "sky/engine/core/css/CSSFontSelector.h"
31 #include "sky/engine/core/css/CSSStyleSheet.h"
32 #include "sky/engine/core/css/FontFace.h"
33 #include "sky/engine/core/css/RuleFeature.h" 30 #include "sky/engine/core/css/RuleFeature.h"
34 #include "sky/engine/core/css/StyleRule.h" 31 #include "sky/engine/core/css/StyleRule.h"
35 #include "sky/engine/core/css/StyleSheetContents.h" 32 #include "sky/engine/core/css/StyleSheetContents.h"
36 #include "sky/engine/core/css/resolver/StyleResolver.h" 33 #include "sky/engine/core/css/resolver/StyleResolver.h"
37 #include "sky/engine/core/dom/Document.h" 34 #include "sky/engine/core/dom/Document.h"
38 #include "sky/engine/core/dom/StyleEngine.h" 35 #include "sky/engine/core/dom/StyleEngine.h"
39 #include "sky/engine/core/dom/TreeScope.h" 36 #include "sky/engine/core/dom/TreeScope.h"
40 #include "sky/engine/core/dom/shadow/ShadowRoot.h" 37 #include "sky/engine/core/dom/shadow/ShadowRoot.h"
41 #include "sky/engine/core/html/HTMLStyleElement.h" 38 #include "sky/engine/core/html/HTMLStyleElement.h"
42 39
(...skipping 10 matching lines...) Expand all
53 StyleResolver& styleResolver = document.ensureStyleResolver(); 50 StyleResolver& styleResolver = document.ensureStyleResolver();
54 MediaQueryEvaluator& medium = styleResolver.medium(); 51 MediaQueryEvaluator& medium = styleResolver.medium();
55 52
56 if (sheet.mediaQueries() && !medium.eval(sheet.mediaQueries(), &m_viewportDe pendentMediaQueryResults)) 53 if (sheet.mediaQueries() && !medium.eval(sheet.mediaQueries(), &m_viewportDe pendentMediaQueryResults))
57 return; 54 return;
58 55
59 styleResolver.addMediaQueryAffectedByViewportChange(m_viewportDependentMedia QueryResults); 56 styleResolver.addMediaQueryAffectedByViewportChange(m_viewportDependentMedia QueryResults);
60 57
61 const RuleSet& ruleSet = sheet.contents()->ensureRuleSet(); 58 const RuleSet& ruleSet = sheet.contents()->ensureRuleSet();
62 m_features.add(ruleSet.features()); 59 m_features.add(ruleSet.features());
63
64 if (m_scope.rootNode().isDocumentNode()) {
65 CSSFontSelector* fontSelector = document.styleEngine()->fontSelector();
66 RuleSet& ruleSet = sheet.contents()->ruleSet();
67 for (const auto& rule : ruleSet.fontFaceRules()) {
68 if (RefPtr<FontFace> fontFace = FontFace::create(&document, rule))
69 fontSelector->fontFaceCache()->add(fontSelector, rule, fontFace) ;
70 }
71 if (!ruleSet.fontFaceRules().isEmpty())
72 styleResolver.invalidateMatchedPropertiesCache();
73 }
74 } 60 }
75 61
76 void ScopedStyleResolver::updateActiveStyleSheets() 62 void ScopedStyleResolver::updateActiveStyleSheets()
77 { 63 {
78 Vector<RefPtr<CSSStyleSheet>> candidateSheets; 64 Vector<RefPtr<CSSStyleSheet>> candidateSheets;
79 collectStyleSheets(candidateSheets); 65 collectStyleSheets(candidateSheets);
80 m_authorStyleSheets.swap(candidateSheets); 66 m_authorStyleSheets.swap(candidateSheets);
81 67
82 Node& root = m_scope.rootNode(); 68 Node& root = m_scope.rootNode();
83 69
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 void ScopedStyleResolver::collectMatchingHostRules(ElementRuleCollector& collect or, CascadeOrder cascadeOrder) 132 void ScopedStyleResolver::collectMatchingHostRules(ElementRuleCollector& collect or, CascadeOrder cascadeOrder)
147 { 133 {
148 RuleRange ruleRange = collector.matchedResult().ranges.authorRuleRange(); 134 RuleRange ruleRange = collector.matchedResult().ranges.authorRuleRange();
149 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) { 135 for (size_t i = 0; i < m_authorStyleSheets.size(); ++i) {
150 MatchRequest matchRequest(&m_authorStyleSheets[i]->contents()->ruleSet() , m_authorStyleSheets[i].get(), i); 136 MatchRequest matchRequest(&m_authorStyleSheets[i]->contents()->ruleSet() , m_authorStyleSheets[i].get(), i);
151 collector.collectMatchingHostRules(matchRequest, ruleRange, cascadeOrder ); 137 collector.collectMatchingHostRules(matchRequest, ruleRange, cascadeOrder );
152 } 138 }
153 } 139 }
154 140
155 } // namespace blink 141 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/css/resolver/ScopedStyleResolver.h ('k') | sky/engine/core/dom/StyleEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698