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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.cpp 78 float resultHeight = ValueAuto;
133 resultHeight = compareIgnoringAuto(resultMinHeight, compareIgnoringAuto(resultMaxHeight, initialViewportSize.height(), min), max);
137 if (resultHeight == ViewportDescription::ValueAuto || !initialViewportSize.height())
140 resultWidth = resultHeight * (initialViewportSize.width() / initialViewportSize.height());
144 if (resultHeight == ViewportDescription::ValueAuto) {
146 resultHeight = initialViewportSize.height();
148 resultHeight = resultWidth * initialViewportSize.height() / initialViewportSize.width();
155 if (resultHeight != ViewportDescription::ValueAuto && resultHeight > 0) {
157 resultZoom = max<float>(resultZoom, initialViewportSize.height() / resultHeight);
    [all...]

Completed in 27 milliseconds