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

Unified Diff: LayoutTests/animations/interpolation/resources/interpolation-test.js

Issue 212073002: Remove unprefixing logic from interpolation test helper (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/interpolation/resources/interpolation-test.js
diff --git a/LayoutTests/animations/interpolation/resources/interpolation-test.js b/LayoutTests/animations/interpolation/resources/interpolation-test.js
index cf0f5023f9f10b248cbe6a71607e1a5e211dc8fd..7989b528e33470b344d52be92f5086c11ba8f570 100644
--- a/LayoutTests/animations/interpolation/resources/interpolation-test.js
+++ b/LayoutTests/animations/interpolation/resources/interpolation-test.js
@@ -197,13 +197,6 @@
}
function assertInterpolation(params, expectations) {
- // If the prefixed property is not supported, try to unprefix it.
- if (/^-[^-]+-/.test(params.property) && !CSS.supports(params.property, 'initial')) {
- var unprefixed = params.property.replace(/^-[^-]+-/, '');
- if (CSS.supports(unprefixed, 'initial')) {
- params.property = unprefixed;
- }
- }
var testId = defineKeyframes(params);
var nextCaseId = 0;
var cssTestContainer = createTestContainer(describeCSSTest(params), testId);
« 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