Home
last modified time | relevance | path

Searched refs:matchedRule1 (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DElementRuleCollector.cpp356 static inline bool compareRules(const MatchedRule& matchedRule1, const MatchedRule& matchedRule2) in compareRules() argument
358 if (matchedRule1.cascadeScope() != matchedRule2.cascadeScope()) in compareRules()
359 return matchedRule1.cascadeScope() > matchedRule2.cascadeScope(); in compareRules()
361 unsigned specificity1 = matchedRule1.specificity(); in compareRules()
366 if (matchedRule1.styleSheetIndex() != matchedRule2.styleSheetIndex()) in compareRules()
367 return matchedRule1.styleSheetIndex() < matchedRule2.styleSheetIndex(); in compareRules()
369 return matchedRule1.position() < matchedRule2.position(); in compareRules()