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

Side by Side Diff: LayoutTests/fast/images/color-profile-border-image.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 <style>
4 div {
5 -webkit-border-image: url("resources/red-at-12-oclock-with-color-profile.jpg ") 8 2 round;
6 height: 320px;
7 width: 90%;
8 }
9 </style>
10
11 <!-- The blue sector of the <div> background image should be at 12 o'clock. -->
12 <div></div>
13
14 <script>
15 window.onload = function() {
16 if (window.testRunner)
17 testRunner.setColorProfile('test', done);
18 };
19
20 function done() {
21 setTimeout(function() { testRunner.notifyDone() }, 0);
22 }
23
24 if (window.testRunner) {
25 testRunner.dumpAsTextWithPixelResults();
26 testRunner.waitUntilDone();
27 }
28 </script>
29 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/images/color-profile-border-fade.html ('k') | LayoutTests/fast/images/color-profile-border-radius.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698