Searched refs:scrollbarWidth (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/chrome/browser/resources/pdf/
H A Dviewport.js29 * @param {number} scrollbarWidth the width of scrollbars on the page
36 scrollbarWidth) {
46 this.scrollbarWidth_ = scrollbarWidth;
183 var scrollbarWidth = needsScrollbars.vertical ? this.scrollbarWidth_ : 0; variable
186 width: this.window_.innerWidth - scrollbarWidth,
253 get scrollbarWidth() {
355 var scrollbarWidth = this.scrollbarWidth_;
357 zoomedDimensions.height > this.window_.innerHeight - scrollbarWidth) {
361 zoomedDimensions.width > this.window_.innerWidth - scrollbarWidth) {
371 windowWithScrollbars.height -= scrollbarWidth;
[all...]
H A Dpdf.js463 var scrollbarWidth = this.viewport_.scrollbarWidth;
465 var toolbarRight = Math.max(PDFViewer.MIN_TOOLBAR_OFFSET, scrollbarWidth);
466 var toolbarBottom = Math.max(PDFViewer.MIN_TOOLBAR_OFFSET, scrollbarWidth);
468 toolbarRight -= scrollbarWidth;
470 toolbarBottom -= scrollbarWidth;
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DpickerCommon.js196 if (typeof window.scrollbarWidth === "undefined") {
203 window.scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
206 return window.scrollbarWidth;
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dpage_list_view.js615 var scrollbarWidth = page.scrollbarWidth;
620 (page.sideMargin - scrollbarWidth + 13) + 'px';
621 pageSwitcherRight.style.right = scrollbarWidth + 'px';
H A Dtile_page.js498 get scrollbarWidth() {
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupListBox.cpp799 int scrollbarWidth = 0; local
802 scrollbarWidth = ScrollbarTheme::theme()->scrollbarThickness();
811 int windowWidth = baseWidth + scrollbarWidth + paddingWidth;
815 baseWidth = windowWidth - scrollbarWidth - paddingWidth;
818 int contentWidth = windowWidth - scrollbarWidth;
822 contentWidth = m_baseWidth - scrollbarWidth;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp213 LayoutUnit scrollbarWidth = instrinsicScrollbarLogicalWidth(); local
214 maxLogicalWidth += scrollbarWidth;
215 minLogicalWidth += scrollbarWidth;
H A DRenderFlexibleBox.cpp126 LayoutUnit scrollbarWidth = instrinsicScrollbarLogicalWidth(); local
127 maxLogicalWidth += scrollbarWidth;
128 minLogicalWidth += scrollbarWidth;
H A DRenderBlock.cpp3171 int scrollbarWidth = instrinsicScrollbarLogicalWidth(); local
3172 maxLogicalWidth += scrollbarWidth;
3173 minLogicalWidth += scrollbarWidth;
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js412 d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0";
422 d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0";
431 d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px";
435 d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px";
440 if (scrollbarWidth(d.measure) === 0) {
7153 function scrollbarWidth(measure) {
/external/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js412 d.scrollbarV.style.bottom = needsH ? scrollbarWidth(d.measure) + "px" : "0";
422 d.scrollbarH.style.right = needsV ? scrollbarWidth(d.measure) + "px" : "0";
431 d.scrollbarFiller.style.height = d.scrollbarFiller.style.width = scrollbarWidth(d.measure) + "px";
435 d.gutterFiller.style.height = scrollbarWidth(d.measure) + "px";
440 if (scrollbarWidth(d.measure) === 0) {
7153 function scrollbarWidth(measure) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcodemirror.js418 var d = cm.display, sWidth = scrollbarWidth(d.measure);
7432 function scrollbarWidth(measure) {

Completed in 394 milliseconds