| OLD | NEW |
| 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 | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All |
| 6 * rights reserved. | 6 * rights reserved. |
| 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 7 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 8 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 9 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
| 10 * (http://www.torchmobile.com/) | 10 * (http://www.torchmobile.com/) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "core/css/CSSSelectorList.h" | 36 #include "core/css/CSSSelectorList.h" |
| 37 #include "core/css/SelectorFilter.h" | 37 #include "core/css/SelectorFilter.h" |
| 38 #include "core/css/StyleRuleImport.h" | 38 #include "core/css/StyleRuleImport.h" |
| 39 #include "core/css/StyleSheetContents.h" | 39 #include "core/css/StyleSheetContents.h" |
| 40 #include "core/html/track/TextTrackCue.h" | 40 #include "core/html/track/TextTrackCue.h" |
| 41 #include "platform/RuntimeEnabledFeatures.h" | 41 #include "platform/RuntimeEnabledFeatures.h" |
| 42 #include "platform/heap/HeapTerminatedArrayBuilder.h" | 42 #include "platform/heap/HeapTerminatedArrayBuilder.h" |
| 43 #include "platform/instrumentation/tracing/TraceEvent.h" | 43 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 44 #include "platform/weborigin/SecurityOrigin.h" | 44 #include "platform/weborigin/SecurityOrigin.h" |
| 45 | 45 |
| 46 #include "wtf/TerminatedArrayBuilder.h" | 46 #include "platform/wtf/TerminatedArrayBuilder.h" |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 using namespace HTMLNames; | 50 using namespace HTMLNames; |
| 51 | 51 |
| 52 // ----------------------------------------------------------------- | 52 // ----------------------------------------------------------------- |
| 53 | 53 |
| 54 static bool ContainsUncommonAttributeSelector(const CSSSelector&); | 54 static bool ContainsUncommonAttributeSelector(const CSSSelector&); |
| 55 | 55 |
| 56 static inline bool SelectorListContainsUncommonAttributeSelector( | 56 static inline bool SelectorListContainsUncommonAttributeSelector( |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 } | 433 } |
| 434 | 434 |
| 435 #ifndef NDEBUG | 435 #ifndef NDEBUG |
| 436 void RuleSet::Show() const { | 436 void RuleSet::Show() const { |
| 437 for (const auto& rule : all_rules_) | 437 for (const auto& rule : all_rules_) |
| 438 rule.Selector().Show(); | 438 rule.Selector().Show(); |
| 439 } | 439 } |
| 440 #endif | 440 #endif |
| 441 | 441 |
| 442 } // namespace blink | 442 } // namespace blink |
| OLD | NEW |