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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/composition/caret-color-composition.html

Issue 2694383002: Don't animate caret-color: auto (Closed)
Patch Set: Fix composition test Created 3 years, 10 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <style> 3 <style>
4 .target { 4 .target {
5 display: inline-block; 5 display: inline-block;
6 font-size: 60pt; 6 font-size: 60pt;
7 color: rgb(50, 50, 50); 7 color: rgb(50, 50, 50);
8 } 8 }
9 .expected { 9 .expected {
10 margin-right: 15px; 10 margin-right: 15px;
(...skipping 15 matching lines...) Expand all
26 {at: 1, is: 'rgb(250, 250, 250)'}, 26 {at: 1, is: 'rgb(250, 250, 250)'},
27 {at: 1.5, is: 'rgb(255, 255, 255)'}, 27 {at: 1.5, is: 'rgb(255, 255, 255)'},
28 ]); 28 ]);
29 29
30 assertComposition({ 30 assertComposition({
31 property: 'caret-color', 31 property: 'caret-color',
32 underlying: 'auto', 32 underlying: 'auto',
33 addFrom: 'rgb(100, 100, 100)', 33 addFrom: 'rgb(100, 100, 100)',
34 addTo: 'rgb(200, 200, 200)', 34 addTo: 'rgb(200, 200, 200)',
35 }, [ 35 }, [
36 {at: -0.3, is: 'rgb(120, 120, 120)'}, 36 {at: -0.3, is: 'rgb(70, 70, 70)'},
37 {at: 0, is: 'rgb(150, 150, 150)'}, 37 {at: 0, is: 'rgb(100, 100, 100)'},
38 {at: 0.5, is: 'rgb(200, 200, 200)'}, 38 {at: 0.5, is: 'rgb(150, 150, 150)'},
39 {at: 1, is: 'rgb(250, 250, 250)'}, 39 {at: 1, is: 'rgb(200, 200, 200)'},
40 {at: 1.5, is: 'rgb(255, 255, 255)'}, 40 {at: 1.5, is: 'rgb(250, 250, 250)'},
41 ]); 41 ]);
42 </script> 42 </script>
43 </body> 43 </body>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | third_party/WebKit/Source/core/animation/CSSColorInterpolationType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698