Index: third_party/WebKit/LayoutTests/fast/images/color-profile-image-object-fit.html |
diff --git a/third_party/WebKit/LayoutTests/fast/images/color-profile-image-object-fit.html b/third_party/WebKit/LayoutTests/fast/images/color-profile-image-object-fit.html |
deleted file mode 100644 |
index 0751ac028ffb118b1cd4aa68802afa005eea4c1e..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/images/color-profile-image-object-fit.html |
+++ /dev/null |
@@ -1,39 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- |
-<style> |
- .test { |
- object-fit: contain; |
- } |
- |
- img { |
- border: 2px solid black; |
- height: 200px; |
- width: 250px; |
- } |
-</style> |
- |
-<body> |
- <!-- The blue sector of the images should be at 12 o'clock. --> |
- <img class="test" title="png image" onload="load()" src="resources/red-at-12-oclock-with-color-profile.png"> |
- <img class="test" title="jpg image" onload="load()" src="resources/red-at-12-oclock-with-color-profile.jpg"> |
-</body> |
- |
-<script> |
-var images = 0; |
- |
-function load() { |
- if (++images == 2 && window.testRunner) |
- setTimeout(function() { testRunner.setColorProfile('colorSpin', done) }, 200); |
-} |
- |
-function done() { |
- setTimeout(function() { testRunner.notifyDone() }, 0); |
-} |
- |
-if (window.testRunner) { |
- testRunner.dumpAsTextWithPixelResults(); |
- testRunner.waitUntilDone(); |
-} |
-</script> |
-</html> |