5 content=
"width=device-width, initial-scale=1.0, maximum-scale=1.0" />
7 var xmlhttp
= new XMLHttpRequest();
10 window
.location
= 'intent://test/#Intent;scheme=test;package=com.chrome.test;end';
13 function xhrOnReadyStateChange() {
14 if (xmlhttp
.readyState
==4 && xmlhttp
.status
==200) {
19 function xhrAndOpenApp() {
20 xmlhttp
.onreadystatechange
= xhrOnReadyStateChange
;
21 xmlhttp
.open("GET", 'hello.html' , true);
26 <body style='height:
10000px;' onclick='xhrAndOpenApp();'
>
27 Click page to open App!!