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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/responsive/border-image-source-responsive.html

Issue 1444233002: Change responsive-test.js neutral keyframe format (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_responsiveHarnessWebAnimations
Patch Set: ebased Created 5 years, 1 month 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 <script src="resources/responsive-test.js"></script> 2 <script src="resources/responsive-test.js"></script>
3 <script> 3 <script>
4 assertResponsive({ 4 assertResponsive({
5 property: 'border-image-source', 5 property: 'border-image-source',
6 from: 'inherit', 6 from: 'inherit',
7 to: 'url("test://to")', 7 to: 'url("test://to")',
8 configurations: [{ 8 configurations: [{
9 state: {inherited: 'url("test://a")'}, 9 state: {inherited: 'url("test://a")'},
10 expect: [ 10 expect: [
(...skipping 10 matching lines...) Expand all
21 state: {inherited: 'none'}, 21 state: {inherited: 'none'},
22 expect: [ 22 expect: [
23 {at: 0.25, is: 'none'}, 23 {at: 0.25, is: 'none'},
24 {at: 0.75, is: 'url("test://to")'}, 24 {at: 0.75, is: 'url("test://to")'},
25 ], 25 ],
26 }], 26 }],
27 }); 27 });
28 28
29 assertResponsive({ 29 assertResponsive({
30 property: 'border-image-source', 30 property: 'border-image-source',
31 from: '',
32 to: 'url("test://to")', 31 to: 'url("test://to")',
33 configurations: [{ 32 configurations: [{
34 state: {underlying: 'url("test://a")'}, 33 state: {underlying: 'url("test://a")'},
35 expect: [ 34 expect: [
36 {at: 0.25, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.25 )'}, 35 {at: 0.25, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.25 )'},
37 {at: 0.75, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.75 )'}, 36 {at: 0.75, is: '-webkit-cross-fade(url("test://a"), url("test://to"), 0.75 )'},
38 ], 37 ],
39 }, { 38 }, {
40 state: {underlying: 'url("test://b")'}, 39 state: {underlying: 'url("test://b")'},
41 expect: [ 40 expect: [
42 {at: 0.25, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.25 )'}, 41 {at: 0.25, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.25 )'},
43 {at: 0.75, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.75 )'}, 42 {at: 0.75, is: '-webkit-cross-fade(url("test://b"), url("test://to"), 0.75 )'},
44 ], 43 ],
45 }, { 44 }, {
46 state: {underlying: 'none'}, 45 state: {underlying: 'none'},
47 expect: [ 46 expect: [
48 {at: 0.25, is: 'none'}, 47 {at: 0.25, is: 'none'},
49 {at: 0.75, is: 'url("test://to")'}, 48 {at: 0.75, is: 'url("test://to")'},
50 ], 49 ],
51 }], 50 }],
52 }); 51 });
53 </script> 52 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698