source: Dev/branches/rest-dojo-ui/client/util/doh/mobileRunner.html @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 2.0 KB
Line 
1<!DOCTYPE html>
2<html style="height:100%;">
3        <head>
4                <title>The Dojo Unit Test Harness, $Rev: 25266 $</title>
5                <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
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                                <td style="height: 100%;">
74                                        <div style="position: relative; width: 100%; height: 100%; top: 0px; left: 0px;">
75                                                <div class="tabBody"
76                                                        style="z-index: 1;">
77                                                        <pre id="logBody"></pre>
78                                                        <div id="perfTestsBody" style="background-color: white;"></div>
79                                                </div>
80                                                <iframe id="testBody" class="tabBody"
81                                                        style="z-index: -1;"></iframe>
82                                                <!--
83                                                        src="http://redesign.dojotoolkit.org"></iframe>
84                                                -->
85                                        </div>
86                <span id="hiddenAudio"></span>
87        </body>
88</html>
89
Note: See TracBrowser for help on using the repository browser.