tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / color-correction-on-background-image.html
1 <html>
2 <style>
3 .purple {
4     background-image: url('resources/purple-noprofile.png');
5     width: 400px;
6     height: 400px;
7     float: left;
8 }
9 </style>
10
11 <body>
12
13 <p>The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the right the same image is tiled as a background, but it is corrected from sRGB.</p>
14 <div class="purple"></div>
15 <div class="purple" style="-webkit-color-correction: sRGB;"></div>
16
17 </body>
18 </html>