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

Unified Diff: LayoutTests/animations/responsive/left-responsive.html

Issue 1214083002: Use non-zero values when testing neutral keyframe correctness (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/responsive/left-responsive.html
diff --git a/LayoutTests/animations/responsive/left-responsive.html b/LayoutTests/animations/responsive/left-responsive.html
index 56f7c9050a8e402bdbdef7654d4b9de9f6410683..69adf096ba767c98926ee43767d049dde24d157c 100644
--- a/LayoutTests/animations/responsive/left-responsive.html
+++ b/LayoutTests/animations/responsive/left-responsive.html
@@ -4,18 +4,18 @@
assertResponsive({
property: 'left',
from: 'inherit',
- to: '100px',
+ to: '200px',
configurations: [{
- state: {inherited: '0px'},
+ state: {inherited: '100px'},
expect: [
- {at: 0.25, is: '25px'},
- {at: 0.75, is: '75px'},
+ {at: 0.25, is: '125px'},
+ {at: 0.75, is: '175px'},
],
}, {
state: {inherited: 'auto'},
expect: [
{at: 0.25, is: 'auto'},
- {at: 0.75, is: '100px'},
+ {at: 0.75, is: '200px'},
],
}],
});
@@ -23,30 +23,30 @@ assertResponsive({
assertResponsive({
property: 'left',
from: '',
- to: '100px',
+ to: '200px',
configurations: [{
- state: {underlying: '0px'},
+ state: {underlying: '100px'},
expect: [
- {at: 0.25, is: '25px'},
- {at: 0.75, is: '75px'},
+ {at: 0.25, is: '125px'},
+ {at: 0.75, is: '175px'},
],
}, {
state: {underlying: 'auto'},
expect: [
{at: 0.25, is: 'auto'},
- {at: 0.75, is: '100px'},
+ {at: 0.75, is: '200px'},
],
}, {
- state: {underlying: 'inherit', inherited: '0px'},
+ state: {underlying: 'inherit', inherited: '100px'},
expect: [
- {at: 0.25, is: '25px'},
- {at: 0.75, is: '75px'},
+ {at: 0.25, is: '125px'},
+ {at: 0.75, is: '175px'},
],
}, {
state: {underlying: 'inherit', inherited: 'auto'},
expect: [
{at: 0.25, is: 'auto'},
- {at: 0.75, is: '100px'},
+ {at: 0.75, is: '200px'},
],
}],
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698