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

Issue 166273018: Added showing slow scroll rectangles in Layers panel. (Closed)

Created:
6 years, 10 months ago by malch
Modified:
6 years, 9 months ago
Reviewers:
caseq, alph, pfeldman
CC:
blink-reviews, caseq+blink_chromium.org, loislo+blink_chromium.org, eustas+blink_chromium.org, alph+blink_chromium.org, yurys+blink_chromium.org, lushnikov+blink_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, paulirish+reviews_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, aandrey+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

Added showing slow scroll rectangles in Layers panel. Review URL: https://codereview.chromium.org/166273018 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=169735

Patch Set 1 #

Total comments: 5

Patch Set 2 : Style fixes. Moved refreshing logic from model to view. #

Total comments: 6

Patch Set 3 : More fixes. #

Total comments: 3

Patch Set 4 : Few more fixes. #

Total comments: 14

Patch Set 5 : And more fixes. #

Patch Set 6 : Added test. #

Total comments: 18

Patch Set 7 : More fixes. Added one more test. #

Total comments: 16

Patch Set 8 : Fixes and updates. #

Total comments: 16

Patch Set 9 : And more fixes. #

Total comments: 6

Patch Set 10 : Final fixes. #

Total comments: 8

Patch Set 11 : Moved ScrollRects into Layer structure. #

Total comments: 14

Patch Set 12 : Fixes. #

Total comments: 14

Patch Set 13 : Fixes. #

Total comments: 16

Patch Set 14 : Fixes. Added showing all layers under content root. #

Total comments: 16

Patch Set 15 : New fixes. #

Total comments: 12

Patch Set 16 : Modified scroll rects vector checking on the frontend. Fixed test. #

Total comments: 11

Patch Set 17 : Fixes. #

Total comments: 8

Patch Set 18 : Fixed indentation. #

Patch Set 19 : Few more fixes. #

Total comments: 4

Patch Set 20 : Final fixes. #

Total comments: 2

Patch Set 21 : After rebase (temporary). #

Patch Set 22 : Fixed layer nodeId issue. #

Total comments: 14

Patch Set 23 : Fixes. #

Total comments: 2

Patch Set 24 : Small fix. #

Patch Set 25 : Fixed test. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+522 lines, -26 lines) Patch
M LayoutTests/http/tests/inspector/layers-test.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +33 lines, -0 lines 0 comments Download
A LayoutTests/inspector/layers/layer-scroll-rects-get.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +30 lines, -0 lines 0 comments Download
A LayoutTests/inspector/layers/layer-scroll-rects-get-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 1 chunk +35 lines, -0 lines 0 comments Download
A LayoutTests/inspector/layers/layer-scroll-rects-update.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +80 lines, -0 lines 0 comments Download
A LayoutTests/inspector/layers/layer-scroll-rects-update-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +159 lines, -0 lines 0 comments Download
M Source/core/inspector/InspectorLayerTreeAgent.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 3 chunks +34 lines, -1 line 0 comments Download
M Source/devtools/front_end/LayerTreeModel.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 7 chunks +27 lines, -17 lines 0 comments Download
M Source/devtools/front_end/Layers3DView.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 9 chunks +96 lines, -7 lines 0 comments Download
M Source/devtools/front_end/layersPanel.css View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 1 chunk +17 lines, -0 lines 0 comments Download
M Source/devtools/protocol.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2 chunks +11 lines, -1 line 0 comments Download

Messages

Total messages: 66 (0 generated)
malch
Draft version of patch.
6 years, 10 months ago (2014-02-20 07:02:47 UTC) #1
caseq
https://codereview.chromium.org/166273018/diff/1/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/1/Source/devtools/front_end/LayerTreeModel.js#newcode162 Source/devtools/front_end/LayerTreeModel.js:162: _areScrollRectsEqual:function (first, second) { Mind the style please: { ...
6 years, 10 months ago (2014-02-20 07:29:18 UTC) #2
malch
Made fixes.
6 years, 10 months ago (2014-02-20 09:13:46 UTC) #3
caseq
https://codereview.chromium.org/166273018/diff/60001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/60001/Source/devtools/front_end/LayerTreeModel.js#newcode198 Source/devtools/front_end/LayerTreeModel.js:198: this._scrollRectsByLayerId[layerId].push(newScrollRectsByLayerId[layerId][i]); This could be merged with the other branch ...
6 years, 10 months ago (2014-02-20 09:34:06 UTC) #4
malch
More fixes.
6 years, 10 months ago (2014-02-20 10:12:14 UTC) #5
caseq
https://codereview.chromium.org/166273018/diff/120001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/120001/Source/devtools/front_end/LayerTreeModel.js#newcode58 Source/devtools/front_end/LayerTreeModel.js:58: return (first.x === second.x) && (first.y === second.y) && ...
6 years, 10 months ago (2014-02-20 11:14:24 UTC) #6
malch
Few more fixes.
6 years, 10 months ago (2014-02-20 12:06:00 UTC) #7
caseq
https://codereview.chromium.org/166273018/diff/190001/Source/core/inspector/InspectorLayerTreeAgent.h File Source/core/inspector/InspectorLayerTreeAgent.h (right): https://codereview.chromium.org/166273018/diff/190001/Source/core/inspector/InspectorLayerTreeAgent.h#newcode87 Source/core/inspector/InspectorLayerTreeAgent.h:87: bool buildLayerTree(TypeBuilder::Array<TypeBuilder::LayerTree::Layer>& layers, style: drop self-obvious argument names from ...
6 years, 10 months ago (2014-02-20 16:30:45 UTC) #8
malch
https://codereview.chromium.org/166273018/diff/190001/Source/core/inspector/InspectorLayerTreeAgent.h File Source/core/inspector/InspectorLayerTreeAgent.h (right): https://codereview.chromium.org/166273018/diff/190001/Source/core/inspector/InspectorLayerTreeAgent.h#newcode87 Source/core/inspector/InspectorLayerTreeAgent.h:87: bool buildLayerTree(TypeBuilder::Array<TypeBuilder::LayerTree::Layer>& layers, On 2014/02/20 16:30:45, caseq wrote: > ...
6 years, 10 months ago (2014-02-21 12:22:15 UTC) #9
malch
Added test for slow scroll rectangles.
6 years, 10 months ago (2014-02-21 16:53:07 UTC) #10
caseq
https://codereview.chromium.org/166273018/diff/310001/LayoutTests/inspector/layer-scroll-rects.html File LayoutTests/inspector/layer-scroll-rects.html (right): https://codereview.chromium.org/166273018/diff/310001/LayoutTests/inspector/layer-scroll-rects.html#newcode9 LayoutTests/inspector/layer-scroll-rects.html:9: {layerId: 1, offsetX: 0, offsetY: 0, width: 0, height: ...
6 years, 10 months ago (2014-02-24 07:18:05 UTC) #11
malch
Added one more test. https://codereview.chromium.org/166273018/diff/310001/LayoutTests/inspector/layer-scroll-rects.html File LayoutTests/inspector/layer-scroll-rects.html (right): https://codereview.chromium.org/166273018/diff/310001/LayoutTests/inspector/layer-scroll-rects.html#newcode9 LayoutTests/inspector/layer-scroll-rects.html:9: {layerId: 1, offsetX: 0, offsetY: ...
6 years, 9 months ago (2014-02-24 13:59:15 UTC) #12
caseq
Generally looks good, few more nits left. https://codereview.chromium.org/166273018/diff/400001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/400001/LayoutTests/http/tests/inspector/layers-test.js#newcode107 LayoutTests/http/tests/inspector/layers-test.js:107: // InspectorTest.addResult("scrollRect: ...
6 years, 9 months ago (2014-02-24 14:38:55 UTC) #13
malch
https://codereview.chromium.org/166273018/diff/400001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/400001/LayoutTests/http/tests/inspector/layers-test.js#newcode107 LayoutTests/http/tests/inspector/layers-test.js:107: // InspectorTest.addResult("scrollRect: " + JSON.stringify(element.__scrollRect)); On 2014/02/24 14:38:56, caseq ...
6 years, 9 months ago (2014-02-25 10:36:39 UTC) #14
caseq
https://codereview.chromium.org/166273018/diff/490001/LayoutTests/inspector/layers/layer-scroll-rects-get.html File LayoutTests/inspector/layers/layer-scroll-rects-get.html (right): https://codereview.chromium.org/166273018/diff/490001/LayoutTests/inspector/layers/layer-scroll-rects-get.html#newcode23 LayoutTests/inspector/layers/layer-scroll-rects-get.html:23: <div id='touchable' style="-webkit-transform:translateZ(100px);height:20px;width:200px;overflow:scroll;"> nit: we use double quotes by ...
6 years, 9 months ago (2014-02-25 16:38:40 UTC) #15
malch
https://codereview.chromium.org/166273018/diff/490001/LayoutTests/inspector/layers/layer-scroll-rects-get.html File LayoutTests/inspector/layers/layer-scroll-rects-get.html (right): https://codereview.chromium.org/166273018/diff/490001/LayoutTests/inspector/layers/layer-scroll-rects-get.html#newcode23 LayoutTests/inspector/layers/layer-scroll-rects-get.html:23: <div id='touchable' style="-webkit-transform:translateZ(100px);height:20px;width:200px;overflow:scroll;"> On 2014/02/25 16:38:41, caseq wrote: > ...
6 years, 9 months ago (2014-02-26 07:28:21 UTC) #16
caseq
lgtm https://codereview.chromium.org/166273018/diff/510001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/510001/LayoutTests/http/tests/inspector/layers-test.js#newcode114 LayoutTests/http/tests/inspector/layers-test.js:114: Array.prototype.forEach.call(root.querySelectorAll('.scroll-rect'), function(element) { nit: use InspectorTest.dumpViewScrollRect.bind(InspectorTest) instead of ...
6 years, 9 months ago (2014-02-26 11:21:09 UTC) #17
malch
The CQ bit was checked by malch@chromium.org
6 years, 9 months ago (2014-02-26 11:42:37 UTC) #18
malch
The CQ bit was unchecked by malch@chromium.org
6 years, 9 months ago (2014-02-26 11:42:38 UTC) #19
malch
https://codereview.chromium.org/166273018/diff/510001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/510001/LayoutTests/http/tests/inspector/layers-test.js#newcode114 LayoutTests/http/tests/inspector/layers-test.js:114: Array.prototype.forEach.call(root.querySelectorAll('.scroll-rect'), function(element) { On 2014/02/26 11:21:10, caseq wrote: > ...
6 years, 9 months ago (2014-02-26 11:43:36 UTC) #20
pfeldman
https://codereview.chromium.org/166273018/diff/530001/Source/core/inspector/InspectorLayerTreeAgent.cpp File Source/core/inspector/InspectorLayerTreeAgent.cpp (right): https://codereview.chromium.org/166273018/diff/530001/Source/core/inspector/InspectorLayerTreeAgent.cpp#newcode130 Source/core/inspector/InspectorLayerTreeAgent.cpp:130: static void addScrollRectsForLayer(GraphicsLayer* graphicsLayer, We typically call these buildObjectFor ...
6 years, 9 months ago (2014-02-26 11:49:40 UTC) #21
malch
https://codereview.chromium.org/166273018/diff/530001/Source/core/inspector/InspectorLayerTreeAgent.cpp File Source/core/inspector/InspectorLayerTreeAgent.cpp (right): https://codereview.chromium.org/166273018/diff/530001/Source/core/inspector/InspectorLayerTreeAgent.cpp#newcode130 Source/core/inspector/InspectorLayerTreeAgent.cpp:130: static void addScrollRectsForLayer(GraphicsLayer* graphicsLayer, On 2014/02/26 11:49:40, pfeldman wrote: ...
6 years, 9 months ago (2014-02-27 13:30:52 UTC) #22
caseq
https://codereview.chromium.org/166273018/diff/550001/LayoutTests/inspector/layers/layer-scroll-rects-update.html File LayoutTests/inspector/layers/layer-scroll-rects-update.html (right): https://codereview.chromium.org/166273018/diff/550001/LayoutTests/inspector/layers/layer-scroll-rects-update.html#newcode11 LayoutTests/inspector/layers/layer-scroll-rects-update.html:11: scrollRects: [{rect: {x: 0, y: 10, width: 10, height: ...
6 years, 9 months ago (2014-02-27 13:46:55 UTC) #23
malch
https://codereview.chromium.org/166273018/diff/550001/LayoutTests/inspector/layers/layer-scroll-rects-update.html File LayoutTests/inspector/layers/layer-scroll-rects-update.html (right): https://codereview.chromium.org/166273018/diff/550001/LayoutTests/inspector/layers/layer-scroll-rects-update.html#newcode11 LayoutTests/inspector/layers/layer-scroll-rects-update.html:11: scrollRects: [{rect: {x: 0, y: 10, width: 10, height: ...
6 years, 9 months ago (2014-02-27 14:58:58 UTC) #24
caseq
lgtm. Pavel? https://codereview.chromium.org/166273018/diff/570001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/570001/LayoutTests/http/tests/inspector/layers-test.js#newcode120 LayoutTests/http/tests/inspector/layers-test.js:120: for (layerId in InspectorTest._layerTreeModel._layersById) { Nit: use ...
6 years, 9 months ago (2014-02-28 07:16:22 UTC) #25
pfeldman
https://codereview.chromium.org/166273018/diff/570001/Source/core/inspector/InspectorLayerTreeAgent.cpp File Source/core/inspector/InspectorLayerTreeAgent.cpp (right): https://codereview.chromium.org/166273018/diff/570001/Source/core/inspector/InspectorLayerTreeAgent.cpp#newcode76 Source/core/inspector/InspectorLayerTreeAgent.cpp:76: static void buildRegionObjects(const blink::WebVector<blink::WebRect>& regions, Builders return objects: we ...
6 years, 9 months ago (2014-02-28 07:43:42 UTC) #26
malch
https://codereview.chromium.org/166273018/diff/570001/LayoutTests/http/tests/inspector/layers-test.js File LayoutTests/http/tests/inspector/layers-test.js (right): https://codereview.chromium.org/166273018/diff/570001/LayoutTests/http/tests/inspector/layers-test.js#newcode120 LayoutTests/http/tests/inspector/layers-test.js:120: for (layerId in InspectorTest._layerTreeModel._layersById) { On 2014/02/28 07:16:23, caseq ...
6 years, 9 months ago (2014-02-28 12:19:56 UTC) #27
pfeldman
https://codereview.chromium.org/166273018/diff/590001/LayoutTests/inspector/layers/layer-scroll-rects-get.html File LayoutTests/inspector/layers/layer-scroll-rects-get.html (right): https://codereview.chromium.org/166273018/diff/590001/LayoutTests/inspector/layers/layer-scroll-rects-get.html#newcode16 LayoutTests/inspector/layers/layer-scroll-rects-get.html:16: WebInspector.showPanel("layers"); You don't need this line. https://codereview.chromium.org/166273018/diff/590001/LayoutTests/inspector/layers/layer-scroll-rects-get.html#newcode27 LayoutTests/inspector/layers/layer-scroll-rects-get.html:27: var ...
6 years, 9 months ago (2014-03-04 09:45:58 UTC) #28
malch
https://codereview.chromium.org/166273018/diff/590001/LayoutTests/inspector/layers/layer-scroll-rects-get.html File LayoutTests/inspector/layers/layer-scroll-rects-get.html (right): https://codereview.chromium.org/166273018/diff/590001/LayoutTests/inspector/layers/layer-scroll-rects-get.html#newcode16 LayoutTests/inspector/layers/layer-scroll-rects-get.html:16: WebInspector.showPanel("layers"); On 2014/03/04 09:45:59, pfeldman wrote: > You don't ...
6 years, 9 months ago (2014-03-07 12:42:06 UTC) #29
caseq
https://codereview.chromium.org/166273018/diff/610001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/610001/Source/devtools/front_end/LayerTreeModel.js#newcode425 Source/devtools/front_end/LayerTreeModel.js:425: if (rectsChanged) { no need for {} here. https://codereview.chromium.org/166273018/diff/610001/Source/devtools/front_end/Layers3DView.js ...
6 years, 9 months ago (2014-03-11 11:14:37 UTC) #30
malch
https://codereview.chromium.org/166273018/diff/610001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/610001/Source/devtools/front_end/LayerTreeModel.js#newcode425 Source/devtools/front_end/LayerTreeModel.js:425: if (rectsChanged) { On 2014/03/11 11:14:38, caseq wrote: > ...
6 years, 9 months ago (2014-03-11 11:49:08 UTC) #31
caseq
https://codereview.chromium.org/166273018/diff/630001/Source/core/inspector/InspectorLayerTreeAgent.cpp File Source/core/inspector/InspectorLayerTreeAgent.cpp (right): https://codereview.chromium.org/166273018/diff/630001/Source/core/inspector/InspectorLayerTreeAgent.cpp#newcode100 Source/core/inspector/InspectorLayerTreeAgent.cpp:100: blink::WebRect* webRect = new blink::WebRect(webLayer->position().x, webLayer->position().y, webLayer->bounds().width, webLayer->bounds().height); that's ...
6 years, 9 months ago (2014-03-11 12:04:08 UTC) #32
malch
https://codereview.chromium.org/166273018/diff/630001/Source/core/inspector/InspectorLayerTreeAgent.cpp File Source/core/inspector/InspectorLayerTreeAgent.cpp (right): https://codereview.chromium.org/166273018/diff/630001/Source/core/inspector/InspectorLayerTreeAgent.cpp#newcode100 Source/core/inspector/InspectorLayerTreeAgent.cpp:100: blink::WebRect* webRect = new blink::WebRect(webLayer->position().x, webLayer->position().y, webLayer->bounds().width, webLayer->bounds().height); On ...
6 years, 9 months ago (2014-03-11 12:48:48 UTC) #33
caseq
https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/LayerTreeModel.js#newcode404 Source/devtools/front_end/LayerTreeModel.js:404: this._scrollRects = this._layerPayload.scrollRects || []; Looks like this is ...
6 years, 9 months ago (2014-03-11 13:40:32 UTC) #34
malch
https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/LayerTreeModel.js File Source/devtools/front_end/LayerTreeModel.js (right): https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/LayerTreeModel.js#newcode404 Source/devtools/front_end/LayerTreeModel.js:404: this._scrollRects = this._layerPayload.scrollRects || []; On 2014/03/11 13:40:32, caseq ...
6 years, 9 months ago (2014-03-11 13:48:55 UTC) #35
alph
https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/650001/Source/devtools/front_end/Layers3DView.js#newcode369 Source/devtools/front_end/Layers3DView.js:369: parentElement = this._elementForLayer(layer.parent()); nit: parentElement = this._elementForLayer(isRoot ? contentRoot ...
6 years, 9 months ago (2014-03-11 13:56:30 UTC) #36
caseq
https://codereview.chromium.org/166273018/diff/670001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/670001/Source/devtools/front_end/Layers3DView.js#newcode260 Source/devtools/front_end/Layers3DView.js:260: layerDetails = this._elementsByLayerId[layer.id()].__layerDetails; var layerDetails = ... https://codereview.chromium.org/166273018/diff/670001/Source/devtools/front_end/Layers3DView.js#newcode272 Source/devtools/front_end/Layers3DView.js:272: ...
6 years, 9 months ago (2014-03-11 13:57:02 UTC) #37
malch
https://codereview.chromium.org/166273018/diff/670001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/670001/Source/devtools/front_end/Layers3DView.js#newcode260 Source/devtools/front_end/Layers3DView.js:260: layerDetails = this._elementsByLayerId[layer.id()].__layerDetails; On 2014/03/11 13:57:03, caseq wrote: > ...
6 years, 9 months ago (2014-03-11 14:51:23 UTC) #38
pfeldman
lgtm https://codereview.chromium.org/166273018/diff/710001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/710001/Source/devtools/front_end/Layers3DView.js#newcode270 Source/devtools/front_end/Layers3DView.js:270: layerDetails.scrollRectElements.forEach(removeElement); I thought the whole point of this ...
6 years, 9 months ago (2014-03-11 16:55:00 UTC) #39
malch
https://codereview.chromium.org/166273018/diff/710001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/710001/Source/devtools/front_end/Layers3DView.js#newcode270 Source/devtools/front_end/Layers3DView.js:270: layerDetails.scrollRectElements.forEach(removeElement); On 2014/03/11 16:55:00, pfeldman wrote: > I thought ...
6 years, 9 months ago (2014-03-12 07:31:30 UTC) #40
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 9 months ago (2014-03-12 17:05:44 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/166273018/730001
6 years, 9 months ago (2014-03-12 17:05:57 UTC) #42
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-12 17:41:58 UTC) #43
commit-bot: I haz the power
Try jobs failed on following builders: mac_blink_rel
6 years, 9 months ago (2014-03-12 17:41:59 UTC) #44
caseq
https://codereview.chromium.org/166273018/diff/730001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/730001/Source/devtools/front_end/Layers3DView.js#newcode335 Source/devtools/front_end/Layers3DView.js:335: if (layer.nodeId()) { The element for a layer with ...
6 years, 9 months ago (2014-03-19 13:54:09 UTC) #45
malch
https://codereview.chromium.org/166273018/diff/730001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/730001/Source/devtools/front_end/Layers3DView.js#newcode335 Source/devtools/front_end/Layers3DView.js:335: if (layer.nodeId()) { On 2014/03/19 13:54:10, caseq wrote: > ...
6 years, 9 months ago (2014-03-20 14:29:44 UTC) #46
caseq
https://codereview.chromium.org/166273018/diff/770001/LayoutTests/inspector/layers/layer-scroll-rects-update.html File LayoutTests/inspector/layers/layer-scroll-rects-update.html (right): https://codereview.chromium.org/166273018/diff/770001/LayoutTests/inspector/layers/layer-scroll-rects-update.html#newcode70 LayoutTests/inspector/layers/layer-scroll-rects-update.html:70: InspectorTest.addResult("Updated scroll rectangles"); Extract this block into a function? ...
6 years, 9 months ago (2014-03-20 15:29:09 UTC) #47
malch
https://codereview.chromium.org/166273018/diff/770001/LayoutTests/inspector/layers/layer-scroll-rects-update.html File LayoutTests/inspector/layers/layer-scroll-rects-update.html (right): https://codereview.chromium.org/166273018/diff/770001/LayoutTests/inspector/layers/layer-scroll-rects-update.html#newcode70 LayoutTests/inspector/layers/layer-scroll-rects-update.html:70: InspectorTest.addResult("Updated scroll rectangles"); On 2014/03/20 15:29:10, caseq wrote: > ...
6 years, 9 months ago (2014-03-21 07:55:46 UTC) #48
caseq
lgtm https://codereview.chromium.org/166273018/diff/780001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/780001/Source/devtools/front_end/Layers3DView.js#newcode361 Source/devtools/front_end/Layers3DView.js:361: element.__layerDetails.depth = parentElement.__layerDetails.depth === undefined ? undefined : ...
6 years, 9 months ago (2014-03-21 08:36:37 UTC) #49
malch
https://codereview.chromium.org/166273018/diff/780001/Source/devtools/front_end/Layers3DView.js File Source/devtools/front_end/Layers3DView.js (right): https://codereview.chromium.org/166273018/diff/780001/Source/devtools/front_end/Layers3DView.js#newcode361 Source/devtools/front_end/Layers3DView.js:361: element.__layerDetails.depth = parentElement.__layerDetails.depth === undefined ? undefined : parentElement.__layerDetails.depth ...
6 years, 9 months ago (2014-03-21 08:43:18 UTC) #50
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 9 months ago (2014-03-21 08:53:58 UTC) #51
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/166273018/800001
6 years, 9 months ago (2014-03-21 08:54:06 UTC) #52
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-21 08:55:22 UTC) #53
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.blink on mac_blink_compile_dbg
6 years, 9 months ago (2014-03-21 08:55:23 UTC) #54
malch
6 years, 9 months ago (2014-03-21 10:38:58 UTC) #55
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 9 months ago (2014-03-21 10:39:30 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/166273018/820001
6 years, 9 months ago (2014-03-21 10:39:42 UTC) #57
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-21 11:46:00 UTC) #58
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.blink on linux_blink_dbg
6 years, 9 months ago (2014-03-21 11:46:01 UTC) #59
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 9 months ago (2014-03-21 11:47:06 UTC) #60
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/166273018/820001
6 years, 9 months ago (2014-03-21 11:47:11 UTC) #61
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 9 months ago (2014-03-21 11:50:48 UTC) #62
commit-bot: I haz the power
Try jobs failed on following builders: tryserver.blink on linux_blink_dbg
6 years, 9 months ago (2014-03-21 11:50:49 UTC) #63
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 9 months ago (2014-03-21 12:02:12 UTC) #64
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/166273018/820001
6 years, 9 months ago (2014-03-21 12:02:21 UTC) #65
commit-bot: I haz the power
6 years, 9 months ago (2014-03-21 13:05:31 UTC) #66
Message was sent while issue was closed.
Change committed as 169735

Powered by Google App Engine
This is Rietveld 408576698