HomeSort by relevance Sort by last modified time
    Searched full:measuredwidths (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TabbedPane.js 495 var measuredWidths = this._measureWidths();
496 var maxWidth = this._shrinkableTabs ? this._calculateMaxWidth(measuredWidths.slice(), this._totalWidth()) : Number.MAX_VALUE;
501 tab.setWidth(this._verticalTabLayout ? -1 : Math.min(maxWidth, measuredWidths[i++]));
529 var measuredWidths = [];
531 measuredWidths.push(this._tabs[tabId]._measuredWidth);
534 return measuredWidths;
538 * @param {!Array.<number>} measuredWidths
541 _calculateMaxWidth: function(measuredWidths, totalWidth)
543 if (!measuredWidths.length)
546 measuredWidths.sort(function(x, y) { return x - y })
    [all...]

Completed in 124 milliseconds