Home
last modified time | relevance | path

Searched refs:scrollbarWidth (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/resources/
DpickerCommon.js196 if (typeof window.scrollbarWidth === "undefined") {
203 window.scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
206 return window.scrollbarWidth;
/external/chromium_org/third_party/WebKit/Source/web/
DPopupListBox.cpp887 int scrollbarWidth = 0; in layout() local
889 scrollbarWidth = ScrollbarTheme::theme()->scrollbarThickness(); in layout()
902 contentWidth = m_baseWidth - scrollbarWidth; in layout()
904 windowWidth = baseWidth + scrollbarWidth + paddingWidth; in layout()
908 baseWidth = windowWidth - scrollbarWidth - paddingWidth; in layout()
911 contentWidth = windowWidth - scrollbarWidth; in layout()
915 contentWidth = m_baseWidth - scrollbarWidth; in layout()
/external/chromium_org/chrome/browser/resources/ntp4/
Dpage_list_view.js615 var scrollbarWidth = page.scrollbarWidth;
620 (page.sideMargin - scrollbarWidth + 13) + 'px';
621 pageSwitcherRight.style.right = scrollbarWidth + 'px';
Dtile_page.js498 get scrollbarWidth() { getter in TilePage
/external/chromium/chrome/browser/resources/
Dprint_preview_animations.js73 var offsetWidth = el.offsetWidth - el.scrollbarWidth;
151 insideEl.scrollbarWidth = insideEl.offsetWidth - insideEl.clientWidth;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListBox.cpp493 int scrollbarWidth = verticalScrollbarWidth(); in listIndexAtOffset() local
494 …tScrollbarOffset = style()->shouldPlaceBlockDirectionScrollbarOnLogicalLeft() ? scrollbarWidth : 0; in listIndexAtOffset()
495 …tScrollbarOffset = style()->shouldPlaceBlockDirectionScrollbarOnLogicalLeft() ? 0 : scrollbarWidth; in listIndexAtOffset()
DRenderDeprecatedFlexibleBox.cpp221 LayoutUnit scrollbarWidth = instrinsicScrollbarLogicalWidth(); in computeIntrinsicLogicalWidths() local
222 maxLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
223 minLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
DRenderFlexibleBox.cpp127 LayoutUnit scrollbarWidth = instrinsicScrollbarLogicalWidth(); in computeIntrinsicLogicalWidths() local
128 maxLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
129 minLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
DRenderBlock.cpp3892 int scrollbarWidth = instrinsicScrollbarLogicalWidth(); in computeIntrinsicLogicalWidths() local
3893 maxLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
3894 minLogicalWidth += scrollbarWidth; in computeIntrinsicLogicalWidths()
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
Dflakiness_dashboard.js1364 var scrollbarWidth = dummyNode.offsetHeight - dummyNode.clientHeight;
1366 height += scrollbarWidth;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcodemirror.js330 d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0";
339 d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0";
348 … d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px";
352 d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px";
356 if (mac_geLion && scrollbarWidth(d.measure) === 0)