1
2
3
4
5
6
7
8
9
10
11
12
13
14
android_webview / test / data / post_message_receives_reply.html [blame]
<html>
<head>
<title>reply</title>
<script>
myObject.onmessage = function (event) {
document.title = event.data;
};
myObject.postMessage("Hello");
</script>
</head>
<body>
<div>post message waiting for reply</div>
</body>
</html>