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

Issue 1816253002: Move grid-template-columns/grid-template-rows into CSSPropertyParser (Closed)

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

Description

Move grid-template-columns/grid-template-rows into CSSPropertyParser Move the grid-template-columns/grid-template-rows longhands from LegacyCSSPropertyParser into CSSPropertyParser. BUG=499780 Committed: https://crrev.com/92e2a550b54002eaf9307642f534db1625f0646d Cr-Commit-Position: refs/heads/master@{#383935}

Patch Set 1 #

Patch Set 2 : Fix tests #

Patch Set 3 : Rebase #

Patch Set 4 : More cleanups #

Total comments: 17

Patch Set 5 : Address some of the review comments #

Patch Set 6 : Address one more thing #

Patch Set 7 : Address final issue #

Total comments: 10

Patch Set 8 : Address more comments #

Patch Set 9 : Add TODO for track-list #

Patch Set 10 : Patch for landing #

Unified diffs Side-by-side diffs Delta from patch set Stats (+119 lines, -7 lines) Patch
M third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp View 1 2 3 4 5 6 7 8 9 3 chunks +115 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/parser/LegacyCSSPropertyParser.cpp View 1 2 2 chunks +1 line, -7 lines 0 comments Download

Messages

Total messages: 24 (10 generated)
rwlbuis
PTAL. This adds another helper method we can build on (consumeGridTrackList).
4 years, 9 months ago (2016-03-23 21:23:07 UTC) #4
Timothy Loh
https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp File third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp (right): https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3107 third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3107: static bool consumeGridLineNames(CSSParserTokenRange& range, CSSValueList& valueList) I think this ...
4 years, 9 months ago (2016-03-24 04:29:31 UTC) #5
rwlbuis
PTAL. https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp File third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp (right): https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3107 third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3107: static bool consumeGridLineNames(CSSParserTokenRange& range, CSSValueList& valueList) On 2016/03/24 ...
4 years, 9 months ago (2016-03-24 20:40:32 UTC) #6
Timothy Loh
https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp File third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp (right): https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3134 third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3134: if (args.peek().type() != NumberToken || args.peek().numericValueType() != IntegerValueType) On ...
4 years, 8 months ago (2016-03-29 02:47:39 UTC) #7
svillar
Almost there. BTW aren't you removing the code in the legacy parser? Or will it ...
4 years, 8 months ago (2016-03-29 08:27:37 UTC) #9
rwlbuis
On 2016/03/29 08:27:37, svillar wrote: > Almost there. Good :) > BTW aren't you removing ...
4 years, 8 months ago (2016-03-29 14:44:14 UTC) #10
rwlbuis
On 2016/03/29 08:27:37, svillar wrote: > https://codereview.chromium.org/1816253002/diff/140001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3192 > third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3192: if > (!consumeGridTrackRepeatFunction(range, cssParserMode, *values, isAutoRepeat) ...
4 years, 8 months ago (2016-03-29 20:43:34 UTC) #11
rwlbuis
PTAL. https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp File third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp (right): https://codereview.chromium.org/1816253002/diff/80001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3149 third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3149: while (!args.atEnd()) { On 2016/03/29 02:47:39, Timothy Loh ...
4 years, 8 months ago (2016-03-29 21:15:51 UTC) #12
Timothy Loh
lgtm https://codereview.chromium.org/1816253002/diff/140001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp File third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp (right): https://codereview.chromium.org/1816253002/diff/140001/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp#newcode3189 third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp:3189: do { On 2016/03/29 21:15:51, rwlbuis wrote: > ...
4 years, 8 months ago (2016-03-30 00:15:40 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1816253002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1816253002/200001
4 years, 8 months ago (2016-03-30 00:44:37 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_TIMED_OUT, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/195925)
4 years, 8 months ago (2016-03-30 06:49:29 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1816253002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1816253002/200001
4 years, 8 months ago (2016-03-30 08:18:00 UTC) #20
commit-bot: I haz the power
Committed patchset #10 (id:200001)
4 years, 8 months ago (2016-03-30 09:17:29 UTC) #22
commit-bot: I haz the power
4 years, 8 months ago (2016-03-30 09:18:22 UTC) #24
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/92e2a550b54002eaf9307642f534db1625f0646d
Cr-Commit-Position: refs/heads/master@{#383935}

Powered by Google App Engine
This is Rietveld 408576698