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

Issue 2252913002: DevTools: Box-shadow editor initial implementation (Closed)

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

Description

DevTools: Box-shadow editor initial implementation This is dependent on the model in https://codereview.chromium.org/2230183004/ and will be changed accordingly. BUG=639095 Committed: https://crrev.com/325c00a303eb2074a76f861cb84787bb37e6e5dd Cr-Commit-Position: refs/heads/master@{#414575}

Patch Set 1 #

Total comments: 22

Patch Set 2 : Heavily updated #

Total comments: 40

Patch Set 3 : Addressed comments #

Patch Set 4 : Readdress comments #

Patch Set 5 : Merge #

Messages

Total messages: 23 (9 generated)
flandy
So far I've added some basic sliders and text inputs. I just wanted to get ...
4 years, 4 months ago (2016-08-16 23:32:20 UTC) #3
lushnikov
https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js File third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js (right): https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js#newcode13 third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js:13: this._shadow = shadow; this._model = .. https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js#newcode15 third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js:15: this.registerRequiredCSS("ui/shadowEditor.css"); ...
4 years, 4 months ago (2016-08-17 17:07:21 UTC) #4
dgozman
https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js File third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js (right): https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js#newcode98 third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js:98: this._sliderTrackWidth = this._blurSliderTrack.offsetWidth; Should we use measureElement instead? https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js#newcode118 ...
4 years, 4 months ago (2016-08-17 17:42:09 UTC) #5
flandy
Please take a look. See bug for screenshot https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js File third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js (right): https://codereview.chromium.org/2252913002/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js#newcode13 third_party/WebKit/Source/devtools/front_end/ui/ShadowEditor.js:13: this._shadow ...
4 years, 4 months ago (2016-08-24 18:10:07 UTC) #7
dgozman
https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js File third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js (right): https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js#newcode2030 third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js:2030: var shadows, isBoxShadow; style: one variable per declaration https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js ...
4 years, 4 months ago (2016-08-24 19:18:31 UTC) #8
flandy
Please take another look https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js File third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js (right): https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js#newcode2030 third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js:2030: var shadows, isBoxShadow; On 2016/08/24 ...
4 years, 4 months ago (2016-08-24 22:08:42 UTC) #9
dgozman
https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js File third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js (right): https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js#newcode71 third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js:71: textInput.addEventListener("input", this._onTextInput.bind(this), true); On 2016/08/24 22:08:41, flandy wrote: > ...
4 years, 4 months ago (2016-08-24 23:26:59 UTC) #10
flandy
https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js File third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js (right): https://codereview.chromium.org/2252913002/diff/40001/third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js#newcode71 third_party/WebKit/Source/devtools/front_end/ui/CSSShadowEditor.js:71: textInput.addEventListener("input", this._onTextInput.bind(this), true); On 2016/08/24 23:26:58, dgozman wrote: > ...
4 years, 4 months ago (2016-08-25 00:17:47 UTC) #11
dgozman
lgtm
4 years, 3 months ago (2016-08-25 17:36:21 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2252913002/80001
4 years, 3 months ago (2016-08-25 20:53:45 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/246437) ios-device on master.tryserver.chromium.mac (JOB_FAILED, ...
4 years, 3 months ago (2016-08-25 20:57:30 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2252913002/100001
4 years, 3 months ago (2016-08-25 21:35:14 UTC) #19
commit-bot: I haz the power
Committed patchset #5 (id:100001)
4 years, 3 months ago (2016-08-25 23:08:04 UTC) #21
commit-bot: I haz the power
4 years, 3 months ago (2016-08-25 23:09:46 UTC) #23
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/325c00a303eb2074a76f861cb84787bb37e6e5dd
Cr-Commit-Position: refs/heads/master@{#414575}

Powered by Google App Engine
This is Rietveld 408576698