Searched defs:contentsWidth (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageScaleConstraints.cpp78 void PageScaleConstraints::fitToContentsWidth(float contentsWidth, int viewWidthNotIncludingScrollbars) argument
80 if (!contentsWidth || !viewWidthNotIncludingScrollbars)
85 minimumScale = std::max(minimumScale, viewWidthNotIncludingScrollbars / contentsWidth);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.h128 int contentsWidth() const { return contentsSize().width(); } function in class:blink::ScrollView
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DResponsiveDesignView.js75 this._viewport = { scrollX: 0, scrollY: 0, contentsWidth: 0, contentsHeight: 0, pageScaleFactor: 1, minimumPageScaleFactor: 1, maximumPageScaleFactor: 1 };
427 var visibleContentsWidth = Math.max(0, Math.min(dipGridWidth, this._viewport.contentsWidth * scale - dipScrollX));
484 || this._cachedViewport.contentsWidth !== this._viewport.contentsWidth || this._cachedViewport.contentsHeight !== this._viewport.contentsHeight

Completed in 129 milliseconds