1
2
3
4
5
6
7
8
9
10
11
12
android_webview / test / data / image_access.html [blame]
<html>
<head>
<script>
function updateTitle() {
document.title = document.getElementById('img').naturalHeight;
}
</script>
</head>
<body onload="updateTitle()">
<img id="img" onload="updateTitle()" src="chrome.png" />
</body>
</html>