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

Unified Diff: sky/tests/animation/basic-declarative.sky

Issue 871773003: Remove @keyframe parsing. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 | « sky/engine/core/css/parser/CSSTokenizer-in.cpp ('k') | sky/tests/animation/basic-declarative-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/tests/animation/basic-declarative.sky
diff --git a/sky/tests/animation/basic-declarative.sky b/sky/tests/animation/basic-declarative.sky
deleted file mode 100644
index 83b428e0dda4a9379457c786663e1fe596d3fd06..0000000000000000000000000000000000000000
--- a/sky/tests/animation/basic-declarative.sky
+++ /dev/null
@@ -1,31 +0,0 @@
-<sky>
-<import src="../resources/chai.sky" />
-<import src="../resources/mocha.sky" />
-<div id="example"></div>
-<style>
-#example {
- width: 100px;
- height: 100px;
- background: red;
- position: relative;
- animation-name: anim;
- animation-timing-function: linear;
- animation-duration: 5s;
-}
-
-@keyframes anim {
- 0% { top: 0px; }
- 100% { top: 100px; }
-}
-</style>
-<script>
-var example = document.getElementById('example');
-
-describe('top', function() {
- it('should amimate from 0 to 100px', function() {
- internals.pauseAnimations(3);
- assert.equal('60px', getComputedStyle(example).top);
- });
-});
-</script>
-</sky>
« no previous file with comments | « sky/engine/core/css/parser/CSSTokenizer-in.cpp ('k') | sky/tests/animation/basic-declarative-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698