blob: 32b46d7cffa5ee1b16f99c28ce995ea47ca1f74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>valid width and height</title>
</head>
<body>
<img src="url" width="0" height="0" alt="bar"><!-- img with 0 value for width and height -->
<img src="url" width="10" height="10" alt="bar"><!-- img with positive values for width and height -->
</body>
</html>
|