I have following HTML page,
<html>
<head>
<title> Test Page
</title>
</head>
<body>
<div>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
<img src="myimg" alt="img"/>
......
</div>
</body>
</html>
As you can see in above HTML, An image element pointing to the same resource.
I want to know,
- How browser behaviors in above condition?
- Does browser get image only one time from a server?
I am just curious about performance