| Index: LayoutTests/animations/responsive/left-responsive.html
|
| diff --git a/LayoutTests/animations/responsive/left-responsive.html b/LayoutTests/animations/responsive/left-responsive.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..56f7c9050a8e402bdbdef7654d4b9de9f6410683
|
| --- /dev/null
|
| +++ b/LayoutTests/animations/responsive/left-responsive.html
|
| @@ -0,0 +1,53 @@
|
| +<!DOCTYPE html>
|
| +<script src="resources/responsive-test.js"></script>
|
| +<script>
|
| +assertResponsive({
|
| + property: 'left',
|
| + from: 'inherit',
|
| + to: '100px',
|
| + configurations: [{
|
| + state: {inherited: '0px'},
|
| + expect: [
|
| + {at: 0.25, is: '25px'},
|
| + {at: 0.75, is: '75px'},
|
| + ],
|
| + }, {
|
| + state: {inherited: 'auto'},
|
| + expect: [
|
| + {at: 0.25, is: 'auto'},
|
| + {at: 0.75, is: '100px'},
|
| + ],
|
| + }],
|
| +});
|
| +
|
| +assertResponsive({
|
| + property: 'left',
|
| + from: '',
|
| + to: '100px',
|
| + configurations: [{
|
| + state: {underlying: '0px'},
|
| + expect: [
|
| + {at: 0.25, is: '25px'},
|
| + {at: 0.75, is: '75px'},
|
| + ],
|
| + }, {
|
| + state: {underlying: 'auto'},
|
| + expect: [
|
| + {at: 0.25, is: 'auto'},
|
| + {at: 0.75, is: '100px'},
|
| + ],
|
| + }, {
|
| + state: {underlying: 'inherit', inherited: '0px'},
|
| + expect: [
|
| + {at: 0.25, is: '25px'},
|
| + {at: 0.75, is: '75px'},
|
| + ],
|
| + }, {
|
| + state: {underlying: 'inherit', inherited: 'auto'},
|
| + expect: [
|
| + {at: 0.25, is: 'auto'},
|
| + {at: 0.75, is: '100px'},
|
| + ],
|
| + }],
|
| +});
|
| +</script>
|
|
|