blob: f84af7488c49b4218fc8431f8328d1af364dc6a2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<script src="../resources/run-after-layout-and-paint.js"></script>
<style>
img { width: 258px }
</style>
<body style="overflow: hidden">
<!-- The blue sector of the images should be at 12 o'clock. -->
<img title="png image" onload="load()" src="resources/blue-wheel-srgb-color-profile.png">
<img title="jpeg image" onload="load()" src="resources/blue-wheel-srgb-color-profile.jpg">
<img title="webp image" onload="load()" src="resources/blue-wheel-srgb-color-profile.webp">
<br>
</body>
<script>
var images = 0;
function load() {
if (++images == 3 && window.testRunner)
runAfterLayoutAndPaint(function() { testRunner.notifyDone() });
}
if (window.testRunner) {
testRunner.dumpAsTextWithPixelResults();
testRunner.waitUntilDone();
}
</script>
</html>