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

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

Issue 13646013: Enable support for CSS Conditional Rules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « Source/core/css/StyleRule.cpp ('k') | Source/core/inspector/InspectorStyleSheet.cpp » ('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 * (C) 1999-2003 Lars Knoll (knoll@kde.org) 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2006, 2007, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 if (childRulesHaveFailedOrCanceledSubresources(static_cast<const Sty leRuleHost*>(rule)->childRules())) 445 if (childRulesHaveFailedOrCanceledSubresources(static_cast<const Sty leRuleHost*>(rule)->childRules()))
446 return true; 446 return true;
447 break; 447 break;
448 case StyleRuleBase::Import: 448 case StyleRuleBase::Import:
449 ASSERT_NOT_REACHED(); 449 ASSERT_NOT_REACHED();
450 case StyleRuleBase::Page: 450 case StyleRuleBase::Page:
451 case StyleRuleBase::Keyframes: 451 case StyleRuleBase::Keyframes:
452 case StyleRuleBase::Unknown: 452 case StyleRuleBase::Unknown:
453 case StyleRuleBase::Charset: 453 case StyleRuleBase::Charset:
454 case StyleRuleBase::Keyframe: 454 case StyleRuleBase::Keyframe:
455 #if ENABLE(CSS3_CONDITIONAL_RULES)
456 case StyleRuleBase::Supports: 455 case StyleRuleBase::Supports:
457 #endif
458 #if ENABLE(CSS_DEVICE_ADAPTATION) 456 #if ENABLE(CSS_DEVICE_ADAPTATION)
459 case StyleRuleBase::Viewport: 457 case StyleRuleBase::Viewport:
460 #endif 458 #endif
461 case StyleRuleBase::Filter: 459 case StyleRuleBase::Filter:
462 break; 460 break;
463 } 461 }
464 } 462 }
465 return false; 463 return false;
466 } 464 }
467 465
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 info.addMember(m_originalURL, "originalURL"); 514 info.addMember(m_originalURL, "originalURL");
517 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule"); 515 info.addMember(m_encodingFromCharsetRule, "encodingFromCharsetRule");
518 info.addMember(m_importRules, "importRules"); 516 info.addMember(m_importRules, "importRules");
519 info.addMember(m_childRules, "childRules"); 517 info.addMember(m_childRules, "childRules");
520 info.addMember(m_namespaces, "namespaces"); 518 info.addMember(m_namespaces, "namespaces");
521 info.addMember(m_parserContext, "parserContext"); 519 info.addMember(m_parserContext, "parserContext");
522 info.addMember(m_clients, "clients"); 520 info.addMember(m_clients, "clients");
523 } 521 }
524 522
525 } 523 }
OLDNEW
« no previous file with comments | « Source/core/css/StyleRule.cpp ('k') | Source/core/inspector/InspectorStyleSheet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698