I have created a watch face (structure of a basic watch face was taken from standard type of wath face in Tizen IDE - Basic Watch). This watch face has a following code:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Digital Watch Application"/>
<title>Digital Watch</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body id = "colour">
<div id = "fon">
//HERE MY CODE//
</div>
</body>
<script src="js/main.js"></script>
<script src="js/time.js"></script>
</html>
In file "main.js" (standard js-code for running fatch face)- following code - https://jsfiddle.net/m2e0j9sv/
But an app does not display like a watch-face in clock list, but display like as application.
Testing of my watch face is in video https://youtu.be/6Ssp7h2bVsk (testing my app begins from 23 second).
How to fix it?