Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / color-matching / image-color-matching.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2    "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html lang="en">
5 <head>
6   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7   <title>Image color matching</title>
8   <style type="text/css" media="screen">
9     body {
10       color: white;
11       background-color: black;
12     }
13     
14     .composited > img {
15       transform: translateZ(0);
16     }
17   </style>
18 </head>
19 <body>
20   <p>Images should all look the same.</p>
21   <div>
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">
24   </div>
25   <div class="composited">
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">
28   </div>
29 </body>
30 </html>