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

Issue 1310923003: Devtools [LayoutEditor]: Patch values in the selected rule (Closed)

Created:
5 years, 3 months ago by sergeyv
Modified:
5 years, 3 months ago
Reviewers:
dgozman, lushnikov, pfeldman
CC:
blink-reviews, caseq+blink_chromium.org, yurys+blink_chromium.org, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, sergeyv+blink_chromium.org, kozyatinskiy+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@medias
Target Ref:
refs/heads/master
Project:
blink
Visibility:
Public.

Description

Devtools [LayoutEditor]: Patch values in the selected rule BUG=501896 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=201833

Patch Set 1 #

Patch Set 2 : Rebase #

Total comments: 19

Patch Set 3 : Address comments #

Total comments: 10

Patch Set 4 : Address comments #

Total comments: 5

Patch Set 5 : Address comments #

Patch Set 6 : Rebase #

Patch Set 7 : Fix win compilation #

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+149 lines, -175 lines) Patch
M LayoutTests/inspector-protocol/css/css-set-effective-property-value.html View 1 2 3 4 5 6 7 1 chunk +0 lines, -10 lines 0 comments Download
M LayoutTests/inspector-protocol/css/css-set-effective-property-value-expected.txt View 1 2 3 4 5 6 7 1 chunk +0 lines, -25 lines 0 comments Download
M Source/core/inspector/InspectorCSSAgent.h View 1 2 3 2 chunks +4 lines, -2 lines 0 comments Download
M Source/core/inspector/InspectorCSSAgent.cpp View 1 2 3 4 5 11 chunks +76 lines, -53 lines 0 comments Download
M Source/core/inspector/LayoutEditor.h View 1 2 3 4 5 3 chunks +6 lines, -5 lines 0 comments Download
M Source/core/inspector/LayoutEditor.cpp View 1 2 3 4 5 6 9 chunks +63 lines, -80 lines 0 comments Download

Messages

Total messages: 36 (15 generated)
sergeyv
5 years, 3 months ago (2015-08-28 19:43:23 UTC) #2
dgozman
https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1518 Source/core/inspector/InspectorCSSAgent.cpp:1518: PassRefPtrWillBeRawPtr<CSSStyleDeclaration> InspectorCSSAgent::findEffectiveDeclaration(Element* element, CSSPropertyID propertyId) Can we kill this ...
5 years, 3 months ago (2015-09-02 22:26:17 UTC) #4
lushnikov
css lgtm https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1583 Source/core/inspector/InspectorCSSAgent.cpp:1583: void InspectorCSSAgent::setCSSPropertyValue(ErrorString* errorString, Element* element, CSSPropertyID propertyId, ...
5 years, 3 months ago (2015-09-02 23:00:43 UTC) #5
dgozman
https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1583 Source/core/inspector/InspectorCSSAgent.cpp:1583: void InspectorCSSAgent::setCSSPropertyValue(ErrorString* errorString, Element* element, CSSPropertyID propertyId, const String& ...
5 years, 3 months ago (2015-09-02 23:03:11 UTC) #6
sergeyv
https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/20001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1518 Source/core/inspector/InspectorCSSAgent.cpp:1518: PassRefPtrWillBeRawPtr<CSSStyleDeclaration> InspectorCSSAgent::findEffectiveDeclaration(Element* element, CSSPropertyID propertyId) On 2015/09/02 22:26:16, dgozman ...
5 years, 3 months ago (2015-09-03 00:52:28 UTC) #7
dgozman
https://codereview.chromium.org/1310923003/diff/40001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/40001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1577 Source/core/inspector/InspectorCSSAgent.cpp:1577: void InspectorCSSAgent::setCSSPropertyValue(ErrorString* errorString, Element* element, CSSStyleDeclaration* style, CSSPropertyID propertyId, ...
5 years, 3 months ago (2015-09-03 20:42:14 UTC) #8
sergeyv
https://codereview.chromium.org/1310923003/diff/40001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/40001/Source/core/inspector/InspectorCSSAgent.cpp#newcode1577 Source/core/inspector/InspectorCSSAgent.cpp:1577: void InspectorCSSAgent::setCSSPropertyValue(ErrorString* errorString, Element* element, CSSStyleDeclaration* style, CSSPropertyID propertyId, ...
5 years, 3 months ago (2015-09-03 22:43:27 UTC) #9
dgozman
https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/InspectorCSSAgent.cpp File Source/core/inspector/InspectorCSSAgent.cpp (right): https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/InspectorCSSAgent.cpp#newcode113 Source/core/inspector/InspectorCSSAgent.cpp:113: uniqRules->rules().prepend(styleRule); Drop the n^2. https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/LayoutEditor.cpp File Source/core/inspector/LayoutEditor.cpp (right): https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/LayoutEditor.cpp#newcode450 ...
5 years, 3 months ago (2015-09-03 23:04:20 UTC) #10
sergeyv
https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/LayoutEditor.cpp File Source/core/inspector/LayoutEditor.cpp (right): https://codereview.chromium.org/1310923003/diff/60001/Source/core/inspector/LayoutEditor.cpp#newcode450 Source/core/inspector/LayoutEditor.cpp:450: unsigned size = m_matchedRules ? m_matchedRules->length() : 0; On ...
5 years, 3 months ago (2015-09-03 23:30:28 UTC) #11
dgozman
lgtm
5 years, 3 months ago (2015-09-04 01:50:15 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310923003/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310923003/80001
5 years, 3 months ago (2015-09-04 01:50:56 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: ios_rel_device_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_rel_device_ninja/builds/107682) mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, ...
5 years, 3 months ago (2015-09-04 01:51:58 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310923003/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310923003/100001
5 years, 3 months ago (2015-09-04 18:36:38 UTC) #20
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/103512)
5 years, 3 months ago (2015-09-04 19:09:17 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310923003/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310923003/120001
5 years, 3 months ago (2015-09-04 20:19:48 UTC) #25
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/103568)
5 years, 3 months ago (2015-09-04 21:27:44 UTC) #27
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310923003/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310923003/120001
5 years, 3 months ago (2015-09-04 21:29:20 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/109391)
5 years, 3 months ago (2015-09-04 22:24:19 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1310923003/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1310923003/140001
5 years, 3 months ago (2015-09-04 22:44:33 UTC) #34
commit-bot: I haz the power
Committed patchset #8 (id:140001) as https://src.chromium.org/viewvc/blink?view=rev&revision=201833
5 years, 3 months ago (2015-09-04 23:47:12 UTC) #35
pdr.
5 years, 3 months ago (2015-09-05 02:07:51 UTC) #36
Message was sent while issue was closed.
On 2015/09/04 at 23:47:12, commit-bot wrote:
> Committed patchset #8 (id:140001) as
https://src.chromium.org/viewvc/blink?view=rev&revision=201833

Just fyi, this has caused failures on the oilpan bots:
http://build.chromium.org/p/chromium.webkit/builders/WebKit%20Linux%20Oilpan/...

No need to roll out.

Powered by Google App Engine
This is Rietveld 408576698