18abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)/*
28abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * Copyright (c) 2013, Opera Software ASA. All rights reserved.
38abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *
48abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
58abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * modification, are permitted provided that the following conditions
68abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * are met:
78abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
88abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
98abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
108abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
118abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
128abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * 3. Neither the name of Opera Software ASA nor the names of its
138abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *    contributors may be used to endorse or promote products derived
148abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *    from this software without specific prior written permission.
158abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *
168abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
178abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
188abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
198abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
208abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
218abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
228abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
238abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
248abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
258abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
268abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
278abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) * OF THE POSSIBILITY OF SUCH DAMAGE.
288abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) */
298abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
308abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)/* Default styles for XHTML Mobile Profile documents where they differ from html.css */
318abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
328abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)@viewport {
338abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    width: auto;
348abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    /* Ideally these should be removed. Currently here to avoid test result regressions. */
358abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    min-zoom: 0.25;
368abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    max-zoom: 5;
378abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)}
38