summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/viewport/viewport-legacy-xhtmlmp.html
blob: 903f2c01d59042b22b3f937f6b700d5fc0afd1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<head>
    <!--
    Related spec: http://www.w3.org/TR/css-device-adapt/

    XHTML-MP is used for mobile documents which are assumed to be designed for
    handheld devices, hence using the viewport size as the initial containing
    block size, so using XHTML-MP will give the same result as a viewport
    meta tag with the following parameters:

    width=device-width, height=device-height, initial-scale=1

    -->
    <title>Default viewport value changed by XHTML-MP</title>
    <script>
        function test() {
            if (window.testRunner) {
                testRunner.dumpAsText();
                alert(internals.configurationForViewport(document, 1, 320, 480, 320, 352));
            }
        }
    </script>
</head>
<body onload="test();" />