Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / karma / static / client.html
1 <!DOCTYPE html>
2 <!--
3 The entry point for client. This file is loaded just once when the client is captured.
4 It contains socket.io and all the communication logic.
5 -->
6 <html>
7 <head>
8 %X_UA_COMPATIBLE%
9   <title>Karma</title>
10   <link href="favicon.ico" rel="icon" type="image/x-icon">
11   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
12   <style type="text/css">
13     iframe {
14       height: 100%;
15       width: 100%;
16       border: 0;
17     }
18
19     html, body {
20       height: 100%;
21       padding: 0;
22       margin: 0;
23
24       font-family: sans-serif;
25     }
26
27     .offline {
28       background: #DDD;
29     }
30
31     .online {
32       background: #6C4;
33     }
34
35     .idle {
36     }
37
38     .executing {
39       background: #F99;
40     }
41
42     #banner {
43       padding: 5px 10px;
44     }
45
46     h1 {
47       font-size: 1.8em;
48       margin: 0;
49       padding: 0;
50     }
51
52     ul {
53       margin: 0;
54       padding: 0;
55
56       list-style: none;
57     }
58
59     li {
60       padding: 5px 12px;
61     }
62
63     .btn-debug {
64       float: right;
65     }
66
67     .offline .btn-debug {
68       display: none;
69     }
70
71     .btn-debug {
72       -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
73       -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
74       box-shadow:inset 0px 1px 0px 0px #ffffff;
75       background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #f6f6f6) );
76       background:-moz-linear-gradient( center top, #ffffff 5%, #f6f6f6 100% );
77       filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f6f6f6');
78       background-color:#ffffff;
79       -moz-border-radius:6px;
80       -webkit-border-radius:6px;
81       border-radius:6px;
82       border:1px solid #dcdcdc;
83       display:inline-block;
84       color:#666666;
85       font-family:arial;
86       font-size:15px;
87       font-weight:bold;
88       padding:6px 24px;
89       text-decoration:none;
90       text-shadow:1px 1px 0px #ffffff;
91     }
92
93     .btn-debug:hover {
94       background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f6f6f6), color-stop(1, #ffffff) );
95       background:-moz-linear-gradient( center top, #f6f6f6 5%, #ffffff 100% );
96       filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#ffffff');
97       background-color:#f6f6f6;
98     }
99   </style>
100 </head>
101 <body>
102   <div id="banner" class="offline">
103     <a href="debug.html%X_UA_COMPATIBLE_URL%" target="_blank" rel="noreferrer" class="btn-debug">DEBUG</a>
104     <h1 id="title">Karma - starting</h1>
105   </div>
106
107   <ul id="browsers"></ul>
108
109   <iframe id="context" src="about:blank" width="100%" height="100%"></iframe>
110
111   <script src="socket.io/socket.io.js"></script>
112   <script src="karma.js"></script>
113 </body>
114 </html>