| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 StyleEngine::StyleEngine(Document& document) | 54 StyleEngine::StyleEngine(Document& document) |
| 55 : m_document(&document) | 55 : m_document(&document) |
| 56 , m_isMaster(!document.importsController() || document.importsController()->
master() == &document) | 56 , m_isMaster(!document.importsController() || document.importsController()->
master() == &document) |
| 57 , m_pendingStylesheets(0) | 57 , m_pendingStylesheets(0) |
| 58 , m_documentStyleSheetCollection(DocumentStyleSheetCollection::create(docume
nt)) | 58 , m_documentStyleSheetCollection(DocumentStyleSheetCollection::create(docume
nt)) |
| 59 , m_documentScopeDirty(true) | 59 , m_documentScopeDirty(true) |
| 60 , m_usesSiblingRules(false) | 60 , m_usesSiblingRules(false) |
| 61 , m_usesFirstLineRules(false) | 61 , m_usesFirstLineRules(false) |
| 62 , m_usesWindowInactiveSelector(false) | 62 , m_usesWindowInactiveSelector(false) |
| 63 , m_usesRemUnits(false) | 63 , m_usesRemUnits(false) |
| 64 , m_usesVariables(false) |
| 64 , m_maxDirectAdjacentSelectors(0) | 65 , m_maxDirectAdjacentSelectors(0) |
| 65 , m_ignorePendingStylesheets(false) | 66 , m_ignorePendingStylesheets(false) |
| 66 , m_didCalculateResolver(false) | 67 , m_didCalculateResolver(false) |
| 67 // We don't need to create CSSFontSelector for imported document or | 68 // We don't need to create CSSFontSelector for imported document or |
| 68 // HTMLTemplateElement's document, because those documents have no frame. | 69 // HTMLTemplateElement's document, because those documents have no frame. |
| 69 , m_fontSelector(document.frame() ? CSSFontSelector::create(&document) : nul
lptr) | 70 , m_fontSelector(document.frame() ? CSSFontSelector::create(&document) : nul
lptr) |
| 70 { | 71 { |
| 71 if (m_fontSelector) | 72 if (m_fontSelector) |
| 72 m_fontSelector->registerForInvalidationCallbacks(this); | 73 m_fontSelector->registerForInvalidationCallbacks(this); |
| 73 } | 74 } |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 } else { | 330 } else { |
| 330 for (TreeScope* treeScope : m_dirtyTreeScopes) | 331 for (TreeScope* treeScope : m_dirtyTreeScopes) |
| 331 updateActiveStyleSheetsInShadow(updateMode, treeScope, treeScope
sRemoved); | 332 updateActiveStyleSheetsInShadow(updateMode, treeScope, treeScope
sRemoved); |
| 332 } | 333 } |
| 333 for (TreeScope* treeScope : treeScopesRemoved) | 334 for (TreeScope* treeScope : treeScopesRemoved) |
| 334 m_activeTreeScopes.remove(treeScope); | 335 m_activeTreeScopes.remove(treeScope); |
| 335 } | 336 } |
| 336 | 337 |
| 337 InspectorInstrumentation::activeStyleSheetsUpdated(m_document); | 338 InspectorInstrumentation::activeStyleSheetsUpdated(m_document); |
| 338 m_usesRemUnits = documentStyleSheetCollection()->usesRemUnits(); | 339 m_usesRemUnits = documentStyleSheetCollection()->usesRemUnits(); |
| 340 m_usesVariables = documentStyleSheetCollection()->usesVariables(); |
| 339 | 341 |
| 340 m_dirtyTreeScopes.clear(); | 342 m_dirtyTreeScopes.clear(); |
| 341 m_documentScopeDirty = false; | 343 m_documentScopeDirty = false; |
| 342 } | 344 } |
| 343 | 345 |
| 344 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>> StyleEngine::activeSty
leSheetsForInspector() const | 346 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>> StyleEngine::activeSty
leSheetsForInspector() const |
| 345 { | 347 { |
| 346 if (m_activeTreeScopes.isEmpty()) | 348 if (m_activeTreeScopes.isEmpty()) |
| 347 return documentStyleSheetCollection()->activeAuthorStyleSheets(); | 349 return documentStyleSheetCollection()->activeAuthorStyleSheets(); |
| 348 | 350 |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 722 visitor->trace(m_dirtyTreeScopes); | 724 visitor->trace(m_dirtyTreeScopes); |
| 723 visitor->trace(m_activeTreeScopes); | 725 visitor->trace(m_activeTreeScopes); |
| 724 visitor->trace(m_fontSelector); | 726 visitor->trace(m_fontSelector); |
| 725 visitor->trace(m_textToSheetCache); | 727 visitor->trace(m_textToSheetCache); |
| 726 visitor->trace(m_sheetToTextCache); | 728 visitor->trace(m_sheetToTextCache); |
| 727 #endif | 729 #endif |
| 728 CSSFontSelectorClient::trace(visitor); | 730 CSSFontSelectorClient::trace(visitor); |
| 729 } | 731 } |
| 730 | 732 |
| 731 } | 733 } |
| OLD | NEW |