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

Side by Side Diff: Source/core/css/RuleSet.cpp

Issue 19555002: Translate viewport related meta tags into @viewport descriptors as suggested by the CSS Device Adap… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved. 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r ights reserved.
6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 } else if (rule->isRegionRule() && resolver) { 386 } else if (rule->isRegionRule() && resolver) {
387 // FIXME (BUG 72472): We don't add @-webkit-region rules of scoped s tyle sheets for the moment. 387 // FIXME (BUG 72472): We don't add @-webkit-region rules of scoped s tyle sheets for the moment.
388 addRegionRule(static_cast<StyleRuleRegion*>(rule), hasDocumentSecuri tyOrigin); 388 addRegionRule(static_cast<StyleRuleRegion*>(rule), hasDocumentSecuri tyOrigin);
389 } else if (rule->isHostRule() && resolver) { 389 } else if (rule->isHostRule() && resolver) {
390 if (!isScopingNodeInShadowTree(scope)) 390 if (!isScopingNodeInShadowTree(scope))
391 continue; 391 continue;
392 bool enabled = resolver->buildScopedStyleTreeInDocumentOrder(); 392 bool enabled = resolver->buildScopedStyleTreeInDocumentOrder();
393 resolver->setBuildScopedStyleTreeInDocumentOrder(false); 393 resolver->setBuildScopedStyleTreeInDocumentOrder(false);
394 resolver->ensureScopedStyleResolver(scope->shadowHost())->addHostRul e(static_cast<StyleRuleHost*>(rule), hasDocumentSecurityOrigin, scope); 394 resolver->ensureScopedStyleResolver(scope->shadowHost())->addHostRul e(static_cast<StyleRuleHost*>(rule), hasDocumentSecurityOrigin, scope);
395 resolver->setBuildScopedStyleTreeInDocumentOrder(enabled); 395 resolver->setBuildScopedStyleTreeInDocumentOrder(enabled);
396 } else if (RuntimeEnabledFeatures::cssViewportEnabled() && rule->isViewp ortRule()) { 396 } else if (rule->isViewportRule()) {
397 // @viewport should not be scoped.
398 if (!isDocumentScope(scope)) 397 if (!isDocumentScope(scope))
399 continue; 398 continue;
400 addViewportRule(static_cast<StyleRuleViewport*>(rule)); 399 addViewportRule(static_cast<StyleRuleViewport*>(rule));
401 } 400 }
402 else if (rule->isSupportsRule() && static_cast<StyleRuleSupports*>(rule) ->conditionIsSupported()) 401 else if (rule->isSupportsRule() && static_cast<StyleRuleSupports*>(rule) ->conditionIsSupported())
403 addChildRules(static_cast<StyleRuleSupports*>(rule)->childRules(), m edium, resolver, scope, hasDocumentSecurityOrigin, addRuleFlags); 402 addChildRules(static_cast<StyleRuleSupports*>(rule)->childRules(), m edium, resolver, scope, hasDocumentSecurityOrigin, addRuleFlags);
404 } 403 }
405 } 404 }
406 405
407 void RuleSet::addRulesFromSheet(StyleSheetContents* sheet, const MediaQueryEvalu ator& medium, StyleResolver* resolver, const ContainerNode* scope) 406 void RuleSet::addRulesFromSheet(StyleSheetContents* sheet, const MediaQueryEvalu ator& medium, StyleResolver* resolver, const ContainerNode* scope)
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 compactPendingRules(pendingRules->shadowPseudoElementRules, m_shadowPseudoEl ementRules); 454 compactPendingRules(pendingRules->shadowPseudoElementRules, m_shadowPseudoEl ementRules);
456 m_linkPseudoClassRules.shrinkToFit(); 455 m_linkPseudoClassRules.shrinkToFit();
457 m_cuePseudoRules.shrinkToFit(); 456 m_cuePseudoRules.shrinkToFit();
458 m_focusPseudoClassRules.shrinkToFit(); 457 m_focusPseudoClassRules.shrinkToFit();
459 m_universalRules.shrinkToFit(); 458 m_universalRules.shrinkToFit();
460 m_pageRules.shrinkToFit(); 459 m_pageRules.shrinkToFit();
461 m_viewportRules.shrinkToFit(); 460 m_viewportRules.shrinkToFit();
462 } 461 }
463 462
464 } // namespace WebCore 463 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698