Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(651)

Side by Side Diff: LayoutTests/fast/images/color-profile-iframe.html

Issue 266383003: [wip] Add fast/images color profile tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <!-- The blue sector of the image should be at 12 o'clock. -->
5 <iframe onload="load()" width="780px" height="260px" scrolling="no" frameborde r="1"
6 src="resources/red-at-12-oclock-with-color-profile.jpg">
7 </iframe>
8 </body>
9
10 <script>
11 function load() {
12 if (window.testRunner)
13 testRunner.setColorProfile('test', done);
14 }
15
16 function done() {
17 setTimeout(function() { testRunner.notifyDone() }, 0);
18 }
19
20 if (window.testRunner) {
21 testRunner.dumpAsTextWithPixelResults();
22 testRunner.waitUntilDone();
23 }
24 </script>
25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/images/color-profile-group.html ('k') | LayoutTests/fast/images/color-profile-image.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698