blob: 8cf5ff6e1a44cc7dbd6ce58cf9b4d9d58b4f7ebb (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8" >
<script src="tizen-web-ui-fw/latest/js/jquery.js"></script>
<script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.js"></script>
<script src="tizen-web-ui-fw/latest/js/tizen-web-ui-fw.js"
data-framework-viewport-scale=false>
</script>
<title>Tizen UI</title>
<!-- for compatibility test -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="icon-tizen.png" />
</head>
<body>
<div data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<h1>viewport-scale=false</h1>
</div>
<div data-role="content">
<p> content will be shown properly. -- not too small, not too big. </p>
<a data-role="button">Test button</a>
</div>
</div>
</body>
</html>
|