2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-12-17 21:24:41 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsViewportInfo.h"
|
2013-02-01 11:00:41 +00:00
|
|
|
#include "mozilla/Assertions.h"
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2012-12-17 21:24:41 +00:00
|
|
|
|
2013-09-03 19:12:23 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2012-12-17 21:24:41 +00:00
|
|
|
void
|
|
|
|
nsViewportInfo::ConstrainViewportValues()
|
|
|
|
{
|
|
|
|
// Constrain the min/max zoom as specified at:
|
|
|
|
// dev.w3.org/csswg/css-device-adapt section 6.2
|
2013-01-15 12:22:03 +00:00
|
|
|
mMaxZoom = std::max(mMinZoom, mMaxZoom);
|
2012-12-17 21:24:41 +00:00
|
|
|
|
2015-10-03 03:08:18 +00:00
|
|
|
if (mDefaultZoom > mMaxZoom) {
|
|
|
|
mDefaultZoomValid = false;
|
|
|
|
mDefaultZoom = mMaxZoom;
|
|
|
|
}
|
|
|
|
if (mDefaultZoom < mMinZoom) {
|
|
|
|
mDefaultZoomValid = false;
|
|
|
|
mDefaultZoom = mMinZoom;
|
|
|
|
}
|
2012-12-17 21:24:41 +00:00
|
|
|
}
|