HomeSort by relevance Sort by last modified time
    Searched defs:maximumPageScaleFactor (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorClient.h 73 virtual float maximumPageScaleFactor() { return 1; }
  /external/chromium_org/third_party/WebKit/Source/web/
InspectorClientImpl.cpp 148 float InspectorClientImpl::maximumPageScaleFactor()
150 return m_inspectedWebView->maximumPageScaleFactor();
WebViewImpl.cpp 683 if (m_webSettings->doubleTapToZoomEnabled() && minimumPageScaleFactor() != maximumPageScaleFactor()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
ResponsiveDesignView.js 75 this._viewport = { scrollX: 0, scrollY: 0, contentsWidth: 0, contentsHeight: 0, pageScaleFactor: 1, minimumPageScaleFactor: 1, maximumPageScaleFactor: 1 };
487 || this._cachedViewport.maximumPageScaleFactor !== this._viewport.maximumPageScaleFactor;
500 this._increasePageScaleButton.title = WebInspector.UIString("Scale up (maximum %.1f)", this._viewport.maximumPageScaleFactor);
501 this._increasePageScaleButton.setEnabled(this._viewport.pageScaleFactor < this._viewport.maximumPageScaleFactor);
    [all...]

Completed in 1263 milliseconds