-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (86 loc) · 3.98 KB
/
index.html
File metadata and controls
98 lines (86 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script type="text/javascript">
function writeIfSamsung(content) {
if (~navigator.userAgent.toLowerCase().indexOf('maple')) {
document.write(content);
}
}
</script>
<script type="text/javascript">
writeIfSamsung('<script type="text/javascript" src="$MANAGER_WIDGET/Common/af/../webapi/1.0/deviceapis.js"><\/script>');
writeIfSamsung('<script type="text/javascript" src="$MANAGER_WIDGET/Common/af/../webapi/1.0/serviceapis.js"><\/script>\n\
<script type="text/javascript" src="$MANAGER_WIDGET/Common/Define.js"><\/script>\n\
<script type="text/javascript" src="$MANAGER_WIDGET/Common/API/Widget.js"><\/script>\n\
<script type="text/javascript" src="$MANAGER_WIDGET/Common/API/TVKeyValue.js"><\/script>\n\
<script type="text/javascript" src="$MANAGER_WIDGET/Common/API/Plugin.js"><\/script>');
</script>
<link rel="stylesheet" href="lib/jasmine.css"/>
<script type="text/javascript" src="lib/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-html.js"></script>
<script type="text/javascript" src="lib/json2.js"></script>
<script type="text/javascript" src="localstorage.js"></script>
<script type="text/javascript" src="spec.js"></script>
<script type="text/javascript">
(function () {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 250;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function (spec) {
return htmlReporter.specFilter(spec);
};
var currentWindowOnload = window.onload;
window.onload = function () {
if (currentWindowOnload) {
currentWindowOnload();
}
jasmineEnv.execute();
};
})()
</script>
<style type="text/css">
video {
opacity: 1;
}
#HTMLReporter
{
z-index: 20;
position: relative;
background: #fff;
}
#log {
z-index: 30;
position: absolute;
left: 0;
top: 0;
color: #000;
background: yellow;
min-width: 500px;
min-height: 500px;
}
</style>
<script type="text/javascript">
writeIfSamsung('<object id="audio" border=0 classid="clsid:SAMSUNG-INFOLINK-AUDIO"></object>\n\
<object id="pluginObjectTV" border=0 classid="clsid:SAMSUNG-INFOLINK-TV" style="opacity:0.0; background-color:#000000;width:0px; height:0px;"></object>\n\
<object id="pluginObjectTVMW" border=0 classid="clsid:SAMSUNG-INFOLINK-TVMW" style="opacity:0.0; background-color:#000000;width:0px; height:0px;"></object>\n\
<object id="pluginObjectNetwork" border=0 classid="clsid:SAMSUNG-INFOLINK-NETWORK" style="opacity:0.0;background-color:#000000;width:0px;height:0px;"></object>\n\
<object id="pluginObjectNNavi" border=0 classid="clsid:SAMSUNG-INFOLINK-NNAVI" style="opacity:0.0;background-color:#000000;width:0px;height:0px;"></object>\n\
<object id="pluginDRM" classid="clsid:SAMSUNG-INFOLINK-SEF" style="visibility:hidden; position: absolute; width: 0px; height: 0px;"></object>\n\
<object id="pluginPlayer" border=0 classid="clsid:SAMSUNG-INFOLINK-PLAYER" style="position: absolute; left: 0; top: 0; width: 1280px; height: 720px;"></object>\n\
<object id="pluginExternal" border=0 classid="clsid:SAMSUNG-INFOLINK-EXTERNALWIDGETINTERFACE" style="opacity:0.0;background-color:#000000;width:0px;height:0px;"></object>');
</script>
</head>
<body>
<!--div id=log></div-->
<!--div style="background: #fff;
position: absolute;
left: 0;
top: 0;
width: 1280px;
height: 720px; z-index: 1;"></div-->
</body>
</html>