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

Issue 1283133006: Reland: Prepare for multiple !important author ranges. (Closed)

Created:
5 years, 4 months ago by rune
Modified:
5 years, 4 months ago
Reviewers:
CC:
blink-reviews, blink-reviews-style_chromium.org, blink-reviews-css, dglazkov+blink, apavlov+blink_chromium.org, darktears, rwlbuis
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Prepare for multiple !important author ranges. This CL is split out from [1] where we support multiple author origins in terms of shadow dom scopes. The vector of MatchedProperties contains matched declarations from all origins in the order in which they should be applied. For !important declarations, they are applied in the same order within the same origin, but the order of the origins are different as the cascading order is: - UA important - Author important - Author - UA We used to have two ranges, one for UA and one for author to accomplish this. However, with the normal/!important cascading order for declarations from different shadow doms, we need multiple author ranges: - UA important - Author important scope n ... - Author important scope 1 - Author scope 1 ... - Author scope n - UA We introduce an ImportantAuthorRangeIterator to iterate through the author ranges and add iterator-style iteration for each range through the MatchedPropertiesRange class. As the applyMatchedProperties code is hot, I've run the blink_perf.css tests locally. Some improved by 2-4%, some became worse by similar percentages. [1] https://codereview.chromium.org/1224673002/ BUG=487125 TEST=fast/css Reland of: https://codereview.chromium.org/1282243002 with Oilpan fixes.

Patch Set 1 #

Patch Set 2 : STACK_ALLOCATED to fix oilpan issue for MatchResult. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+317 lines, -50 lines) Patch
M Source/core/core.gypi View 1 chunk +1 line, -0 lines 0 comments Download
M Source/core/css/ElementRuleCollector.h View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/css/ElementRuleCollector.cpp View 2 chunks +1 line, -4 lines 0 comments Download
M Source/core/css/resolver/MatchResult.h View 1 2 chunks +89 lines, -11 lines 0 comments Download
M Source/core/css/resolver/MatchResult.cpp View 1 chunk +17 lines, -2 lines 0 comments Download
A Source/core/css/resolver/MatchResultTest.cpp View 1 chunk +173 lines, -0 lines 0 comments Download
M Source/core/css/resolver/MatchedPropertiesCache.h View 2 chunks +3 lines, -3 lines 0 comments Download
M Source/core/css/resolver/MatchedPropertiesCache.cpp View 4 chunks +7 lines, -7 lines 0 comments Download
M Source/core/css/resolver/StyleResolver.h View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/css/resolver/StyleResolver.cpp View 9 chunks +23 lines, -22 lines 0 comments Download

Messages

Total messages: 2 (1 generated)
commit-bot: I haz the power
5 years, 4 months ago (2015-08-19 08:37:44 UTC) #2

Powered by Google App Engine
This is Rietveld 408576698