OLD | NEW |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
3 | 3 |
4 <html lang="en"> | 4 <html lang="en"> |
5 <head> | 5 <head> |
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
7 <title>Image color matching</title> | 7 <title>Image color matching</title> |
8 <style type="text/css" media="screen"> | 8 <style type="text/css" media="screen"> |
9 body { | 9 body { |
10 color: white; | 10 color: white; |
11 background-color: black; | 11 background-color: black; |
12 } | 12 } |
13 | 13 |
14 .composited > img { | 14 .composited > img { |
15 -webkit-transform: translateZ(0); | 15 transform: translateZ(0); |
16 } | 16 } |
17 </style> | 17 </style> |
18 </head> | 18 </head> |
19 <body> | 19 <body> |
20 <p>Images should all look the same.</p> | 20 <p>Images should all look the same.</p> |
21 <div> | 21 <div> |
22 <img src="resources/genericRGB.png" width="360" height="240" alt="GenericRGB
"> | 22 <img src="resources/genericRGB.png" width="360" height="240" alt="GenericRGB
"> |
23 <img src="resources/no-profile.png" width="360" height="240" alt="No Profile
"> | 23 <img src="resources/no-profile.png" width="360" height="240" alt="No Profile
"> |
24 </div> | 24 </div> |
25 <div class="composited"> | 25 <div class="composited"> |
26 <img src="resources/genericRGB.png" width="360" height="240" alt="GenericRGB
"> | 26 <img src="resources/genericRGB.png" width="360" height="240" alt="GenericRGB
"> |
27 <img src="resources/no-profile.png" width="360" height="240" alt="No Profile
"> | 27 <img src="resources/no-profile.png" width="360" height="240" alt="No Profile
"> |
28 </div> | 28 </div> |
29 </body> | 29 </body> |
30 </html> | 30 </html> |
OLD | NEW |