blob: 006bb0e9e43c8a25a7e5816572351b2eed4d28c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<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>
|