| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <head> | |
| 3 <style type="text/css"> | |
| 4 .failure { | |
| 5 background: red; | |
| 6 border: 0px solid black; | |
| 7 height: 16px; | |
| 8 width: 16px; | |
| 9 } | |
| 10 .failure2 { | |
| 11 background: red; | |
| 12 border: 0px solid black; | |
| 13 height: 32px; | |
| 14 width: 32px; | |
| 15 } | |
| 16 </style> | |
| 17 </head> | |
| 18 <body style="margin: 0px;"> | |
| 19 <div class="failure"> | |
| 20 <!-- NOTE: The CG .ico decoder currently erroneously decodes this as black | |
| 21 and white instead of green and red. --> | |
| 22 <img src="resources/1bit.ico"> | |
| 23 </div> | |
| 24 <div class="failure"> | |
| 25 <img src="resources/8bit.ico"> | |
| 26 </div> | |
| 27 <div class="failure"> | |
| 28 <img src="resources/32bit.ico"> | |
| 29 </div> | |
| 30 <div class="failure2"> | |
| 31 <img src="resources/2entries.ico"> | |
| 32 </div> | |
| 33 <div class="failure"> | |
| 34 <img src="resources/icon-without-and-bitmap.ico"> | |
| 35 </div> | |
| 36 <!-- We don't really care how this displays as long as decoding it doesn't | |
| 37 corrupt memory. --> | |
| 38 <img src="resources/bad.ico"> | |
| 39 </body> | |
| 40 </html> | |
| OLD | NEW |