blob: 6762631805c4fd0c39e1a221e43cafdcaebdeb17 [file] [log] [blame]
<?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();
if (window.internals)
alert(internals.configurationForViewport(1, 320, 480, 320, 352));
var originalDoctype = document.doctype;
document.removeChild(originalDoctype);
if (window.internals)
alert(internals.configurationForViewport( 1, 320, 480, 320, 352));
document.insertBefore(originalDoctype, document.firstChild);
if (window.internals)
alert(internals.configurationForViewport( 1, 320, 480, 320, 352));
}
</script>
</head>
<body onload="test();" />