| Index: chrome/browser/resources/net_internals/top_mid_bottom_view.js
|
| diff --git a/chrome/browser/resources/net_internals/top_mid_bottom_view.js b/chrome/browser/resources/net_internals/top_mid_bottom_view.js
|
| index 586482d1bf622c173c4c587cc37d3245fd3c8f25..a4df5565dd961b85a5f63a3dc47cd117cd57ac94 100644
|
| --- a/chrome/browser/resources/net_internals/top_mid_bottom_view.js
|
| +++ b/chrome/browser/resources/net_internals/top_mid_bottom_view.js
|
| @@ -61,11 +61,11 @@ var TopMidBottomView = (function() {
|
| // Position the boxes using calculated split points.
|
| if (this.topView_)
|
| this.topView_.setGeometry(left, top, width, topbarHeight);
|
| - this.midView_.setGeometry(left, top + topbarHeight, width,
|
| - middleboxHeight);
|
| + this.midView_.setGeometry(
|
| + left, top + topbarHeight, width, middleboxHeight);
|
| if (this.bottomView_) {
|
| - this.bottomView_.setGeometry(left, top + topbarHeight + middleboxHeight,
|
| - width, bottombarHeight);
|
| + this.bottomView_.setGeometry(
|
| + left, top + topbarHeight + middleboxHeight, width, bottombarHeight);
|
| }
|
| },
|
|
|
|
|