source: Dev/trunk/src/client/util/doh/mobileRunner.html @ 529

Last change on this file since 529 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 2.0 KB
Line 
1<!DOCTYPE html>
2<html style="height:100%;">
3        <head>
4                <title>The Dojo Unit Test Harness, $Rev: f5832f7 $</title>
5                <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"/>
6                <meta name="apple-mobile-web-app-capable" content="yes">
7                <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
8                <script type="text/javascript">
9                        // workaround for bug in Safari 3.      See #7189
10                        if (/3[\.0-9]+ Safari/.test(navigator.appVersion))
11                        {
12                                window.console = {
13                                        origConsole: window.console,
14                                                log: function(s){
15                                                this.origConsole.log(s);
16                                        },
17                                        info: function(s){
18                                                this.origConsole.info(s);
19                                        },
20                                        error: function(s){
21                                                this.origConsole.error(s);
22                                        },
23                                        warn: function(s){
24                                                this.origConsole.warn(s);
25                                        }
26                                };
27                        }
28                </script>
29
30                <script type="text/javascript" src="_parseURLargs.js"></script>
31       
32                <style type="text/css">
33                        @import "../../dojo/resources/dojo.css";
34
35                        #testLayout {
36                                position: relative;
37                                left: 0px;
38                                top: 0px;
39                                width: 100%;
40                                height: 100%;
41                                border: 1px solid black;
42                                border: 0px;
43                        }
44
45                        .tabBody {
46                                margin: 0px;
47                                padding: 0px;
48                                /*
49                                border: 1px solid black;
50                                */
51                                background-color: #DEDEDE;
52                                border: 0px;
53                                width: 100%;
54                                height: 100%;
55                                position: absolute;
56                                left: 0px;
57                                top: 0px;
58                                overflow: auto;
59                        }
60
61                        #logBody {
62                                padding-left: 5px;
63                                padding-top: 5px;
64                                font-family: Monaco, monospace;
65                                font-size: 11px;
66                                white-space: pre;
67                        }
68
69
70                </style>
71        </head>
72        <body style="height: 100%;">
73                <div style="position: relative; width: 100%; height: 100%; top: 0px; left: 0px;">
74                        <div class="tabBody"
75                                style="z-index: 1;">
76                                <pre id="logBody"></pre>
77                                <div id="perfTestsBody" style="background-color: white;"></div>
78                        </div>
79                        <iframe id="testBody" class="tabBody"
80                                style="z-index: -1;"></iframe>
81                        <!--
82                                src="http://redesign.dojotoolkit.org"></iframe>
83                        -->
84                </div>
85                <span id="hiddenAudio"></span>
86        </body>
87</html>
88
Note: See TracBrowser for help on using the repository browser.