diff options
Diffstat (limited to 'dom/tests/reftest/bug798068.xhtml')
-rw-r--r-- | dom/tests/reftest/bug798068.xhtml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dom/tests/reftest/bug798068.xhtml b/dom/tests/reftest/bug798068.xhtml new file mode 100644 index 0000000000..7fe0aea245 --- /dev/null +++ b/dom/tests/reftest/bug798068.xhtml @@ -0,0 +1,19 @@ +<?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"> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <script> + function doTest() { + var defaultZoom = {}, allowZoom = {}, minZoom = {}, maxZoom ={}, width = {}, height = {}, autoSize = {}; + var windowUtils = window.windowUtils; + windowUtils.getViewportInfo(1, 1, defaultZoom, allowZoom, minZoom, maxZoom, width, height, autoSize); + document.getElementById("minZoom").innerHTML = minZoom.value.toPrecision(10); + document.getElementById("maxZoom").innerHTML = maxZoom.value.toPrecision(10); + } + </script> + </head> + <body onload="doTest();"> + MinZoom: <span id="minZoom"></span><br /> + MaxZoom: <span id="maxZoom"></span> + </body> +</html> |