| Index: third_party/WebKit/LayoutTests/fast/images/color-profile-animate-rotate.html | 
| diff --git a/third_party/WebKit/LayoutTests/fast/images/color-profile-animate-rotate.html b/third_party/WebKit/LayoutTests/fast/images/color-profile-animate-rotate.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..9fd86f1ac8340f9050fe084dd36d640023b9ec3e | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/fast/images/color-profile-animate-rotate.html | 
| @@ -0,0 +1,48 @@ | 
| +<!DOCTYPE html> | 
| +<html> | 
| +<style> | 
| +  @-webkit-keyframes rotate { | 
| +    0% { -webkit-transform: rotate(0deg) } | 
| +  } | 
| + | 
| +  img { | 
| +    -webkit-transform: rotate(90deg); | 
| +  } | 
| +</style> | 
| + | 
| +<!-- The blue sector of the image should be at 3 o'clock (viz., rotated by 90 deg). --> | 
| +<img onload="rotate(this)" width="400px" src="resources/red-at-12-oclock-with-color-profile.jpg"> | 
| + | 
| +<script> | 
| +function rotate(element) { | 
| +  if (window.testRunner) | 
| +    setTimeout(function() { testRunner.setColorProfile('sRGB', new Function()) }, 0); | 
| + | 
| +  element.addEventListener('webkitAnimationStart', start, false); | 
| +  element.addEventListener('webkitAnimationEnd', done, false); | 
| + | 
| +  if (window.testRunner) | 
| +    element.style.cssText += '-webkit-animation: rotate linear 1s'; | 
| +  else | 
| +    element.style.cssText += '-webkit-animation: rotate linear 4s'; | 
| +} | 
| + | 
| +function start(event) { | 
| +  if (window.testRunner) | 
| +    setTimeout(function() { testRunner.setColorProfile('test', new Function()) }, 100); | 
| +} | 
| + | 
| +function done(event) { | 
| +  if (window.testRunner) | 
| +    setTimeout(function() { testRunner.notifyDone() }, 0); | 
| +} | 
| + | 
| +if (window.internals) | 
| +  internals.settings.setImageColorProfilesEnabled(true); | 
| + | 
| +if (window.testRunner) { | 
| +  testRunner.dumpAsTextWithPixelResults(); | 
| +  testRunner.waitUntilDone(); | 
| +} | 
| +</script> | 
| +</html> | 
|  |