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

Side by Side Diff: LayoutTests/animations/cross-fade-background-image-expected.html

Issue 14297032: Convert cross-fade-background-image to ref-test (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | LayoutTests/animations/cross-fade-background-image-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 #box {
5 position: absolute;
6 left: 100px;
7 top: 100px;
8 height: 100px;
9 width: 100px;
10 background-color: red;
11 background-image: -webkit-cross-fade(url(resources/blue-100.png), url(re sources/green-100.png), 50%);
12 }
13 #boxShorthand {
14 position: absolute;
15 left: 100px;
16 top: 200px;
17 height: 100px;
18 width: 100px;
19 background-color: red;
20 background-image: -webkit-cross-fade(url(resources/blue-100.png), url(re sources/green-100.png), 50%);
21 }
22 #boxStatic {
23 position: absolute;
24 left: 100px;
25 top: 300px;
26 height: 100px;
27 width: 100px;
28 background-color: red;
29 background-image: -webkit-cross-fade(url(resources/blue-100.png), url(re sources/green-100.png), 50%);
30 }
31 </style>
32 </head>
33 <body>
34 <div id="box"></div>
35 <div id="boxStatic"></div>
36 <div id="boxShorthand"></div>
37 <div id="result">
38 PASS - "backgroundImage" property for "box" element at 2.5s saw something close to: 0.5<br>
39 PASS - "backgroundImage" property for "box" and "boxStatic" elements at 2.5s are close enough to each other<br>
40 PASS - "backgroundImage" property for "boxShorthand" and "boxStatic" elements at 2.5s are close enough to each other
41 </div>
42 </body>
43 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/cross-fade-background-image-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698