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

Issue 2672083004: [DevTools] Search in Elements tab is not working for newly added elements (Closed)

Created:
3 years, 10 months ago by Oleksii Kadurin
Modified:
3 years, 10 months ago
Reviewers:
pfeldman
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
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

[DevTools] Search in Elements tab is not working for newly added elements BUG=679850 Review-Url: https://codereview.chromium.org/2672083004 Cr-Commit-Position: refs/heads/master@{#450236} Committed: https://chromium.googlesource.com/chromium/src/+/8d7a71b75fff2d64a8cc192295fcdb4eb03987f4

Patch Set 1 #

Total comments: 7

Patch Set 2 #

Total comments: 9

Patch Set 3 #

Total comments: 1

Patch Set 4 #

Total comments: 3

Patch Set 5 #

Total comments: 1

Patch Set 6 #

Total comments: 1

Patch Set 7 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+23 lines, -13 lines) Patch
M third_party/WebKit/Source/devtools/front_end/.editorconfig View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js View 1 2 3 4 5 6 8 chunks +22 lines, -12 lines 0 comments Download

Messages

Total messages: 47 (29 generated)
Oleksii Kadurin
PTAL
3 years, 10 months ago (2017-02-04 20:55:05 UTC) #3
Oleksii Kadurin
PTAL
3 years, 10 months ago (2017-02-04 20:55:06 UTC) #4
pfeldman
https://codereview.chromium.org/2672083004/diff/1/third_party/WebKit/Source/devtools/front_end/.editorconfig File third_party/WebKit/Source/devtools/front_end/.editorconfig (right): https://codereview.chromium.org/2672083004/diff/1/third_party/WebKit/Source/devtools/front_end/.editorconfig#newcode5 third_party/WebKit/Source/devtools/front_end/.editorconfig:5: indent_size = 2 you can tell we don't use ...
3 years, 10 months ago (2017-02-06 19:24:53 UTC) #5
Oleksii Kadurin
* I've got rid of "reset" parameter. * Also I wrote some comments. https://codereview.chromium.org/2672083004/diff/1/third_party/WebKit/Source/devtools/front_end/.editorconfig File ...
3 years, 10 months ago (2017-02-07 20:20:24 UTC) #6
pfeldman
https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js File third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js (right): https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js#newcode564 third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js:564: if (index > this._searchResults.length) This should never happen. Whenever ...
3 years, 10 months ago (2017-02-07 23:19:36 UTC) #7
Oleksii Kadurin
https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js File third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js (right): https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js#newcode355 third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js:355: this._searchProvider.searchCanceled(); On 2017/02/07 23:19:36, pfeldman wrote: > This might ...
3 years, 10 months ago (2017-02-07 23:57:19 UTC) #8
pfeldman
https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js File third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js (right): https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js#newcode355 third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js:355: this._searchProvider.searchCanceled(); Right, but you are changing this contract for ...
3 years, 10 months ago (2017-02-08 01:52:41 UTC) #9
Oleksii Kadurin
https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js File third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js (right): https://codereview.chromium.org/2672083004/diff/20001/third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js#newcode355 third_party/WebKit/Source/devtools/front_end/ui/SearchableView.js:355: this._searchProvider.searchCanceled(); On 2017/02/08 01:52:41, pfeldman wrote: > Right, but ...
3 years, 10 months ago (2017-02-08 18:49:14 UTC) #10
Oleksii Kadurin
PTAL
3 years, 10 months ago (2017-02-10 07:41:07 UTC) #11
pfeldman
https://codereview.chromium.org/2672083004/diff/60001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js File third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js (right): https://codereview.chromium.org/2672083004/diff/60001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js#newcode504 third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js:504: if (this._currentSearchResultIndex === undefined || this._currentSearchResultIndex > this._searchResults.length) should ...
3 years, 10 months ago (2017-02-11 01:46:24 UTC) #12
Oleksii Kadurin
https://codereview.chromium.org/2672083004/diff/60001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js File third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js (right): https://codereview.chromium.org/2672083004/diff/60001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js#newcode510 third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js:510: if (index === -1) On 2017/02/11 01:46:24, pfeldman wrote: ...
3 years, 10 months ago (2017-02-11 12:10:21 UTC) #14
pfeldman
lgtm % comment https://codereview.chromium.org/2672083004/diff/80001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js File third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js (right): https://codereview.chromium.org/2672083004/diff/80001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js#newcode510 third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js:510: if (index === -1) Let's replace ...
3 years, 10 months ago (2017-02-13 18:16:24 UTC) #15
Oleksii Kadurin
PTAL
3 years, 10 months ago (2017-02-13 21:44:41 UTC) #16
pfeldman
still lgtm https://codereview.chromium.org/2672083004/diff/100001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js File third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js (right): https://codereview.chromium.org/2672083004/diff/100001/third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js#newcode504 third_party/WebKit/Source/devtools/front_end/elements/ElementsPanel.js:504: if (this._currentSearchResultIndex !== undefined && this._currentSearchResultIndex >= ...
3 years, 10 months ago (2017-02-13 22:17:05 UTC) #17
Oleksii Kadurin
3 years, 10 months ago (2017-02-13 22:28:21 UTC) #28
Oleksii Kadurin
3 years, 10 months ago (2017-02-13 22:28:21 UTC) #29
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/2672083004/120001
3 years, 10 months ago (2017-02-14 04:00:36 UTC) #44
commit-bot: I haz the power
3 years, 10 months ago (2017-02-14 04:10:12 UTC) #47
Message was sent while issue was closed.
Committed patchset #7 (id:120001) as
https://chromium.googlesource.com/chromium/src/+/8d7a71b75fff2d64a8cc192295fc...

Powered by Google App Engine
This is Rietveld 408576698