├── .gitignore ├── .travis.yml ├── README.md ├── bin └── smil2css ├── lib ├── cli.js ├── index.js ├── process │ ├── check.js │ ├── convert │ │ ├── css │ │ │ ├── animation.js │ │ │ ├── find │ │ │ │ ├── declaration.js │ │ │ │ ├── index.js │ │ │ │ └── startingID.js │ │ │ ├── index.js │ │ │ ├── keyframes.js │ │ │ ├── object.js │ │ │ └── vendors.js │ │ ├── elements │ │ │ ├── animation │ │ │ │ ├── dataAttributes │ │ │ │ │ ├── attributeName.js │ │ │ │ │ ├── begin.js │ │ │ │ │ ├── calcMode.js │ │ │ │ │ ├── dur.js │ │ │ │ │ ├── end.js │ │ │ │ │ ├── extendedBegin │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── post.js │ │ │ │ │ │ └── validate.js │ │ │ │ │ ├── extendedDur.js │ │ │ │ │ ├── extendedInitial.js │ │ │ │ │ ├── extendedKeys │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── keyframing.js │ │ │ │ │ ├── extendedRepeatCount.js │ │ │ │ │ ├── extendedTarget.js │ │ │ │ │ ├── extendedTween.js │ │ │ │ │ ├── fill.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── keyTimes.js │ │ │ │ │ ├── repeatCount.js │ │ │ │ │ ├── repeatDur.js │ │ │ │ │ ├── type.js │ │ │ │ │ ├── util │ │ │ │ │ │ ├── conversions.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── list.js │ │ │ │ │ │ │ └── timing.js │ │ │ │ │ │ └── validate.js │ │ │ │ │ └── values.js │ │ │ │ ├── index.js │ │ │ │ └── keyframes.js │ │ │ ├── any.js │ │ │ ├── index.js │ │ │ └── style.js │ │ └── index.js │ ├── definitions.js │ ├── error.js │ └── index.js └── util.js ├── license ├── package.json └── test ├── #backup └── svg-test.html ├── #nested-svg └── test.svg ├── #new └── repeatDur.svg ├── basic.cli.js ├── basic.options.js ├── convert.erroneous.js ├── convert.keyframing.js ├── convert.special.js ├── convert.tweening.js ├── erroneous ├── looping-trailing.svg ├── no-attributeName.svg ├── non-animating.svg ├── non-svg.png ├── non-svg.txt ├── syncbase-deadend1.svg ├── syncbase-deadend2.svg ├── syncbase-duplicates.svg ├── syncbase-weaving1.svg ├── syncbase-weaving2.svg ├── syncbase-weaving3.svg ├── syncbase-weaving4.svg ├── syncbase-weaving5.svg ├── syncbase-weaving6.svg └── unsupported-elements.svg ├── keyframing ├── begin-list.svg ├── begin-syncbase.begin │ ├── looping.svg │ └── looping_expect.svg ├── begin-syncbase.end │ ├── interrupted-animation.svg │ ├── interrupted-animation_expect.svg │ ├── looping-trailing.svg │ ├── looping1.svg │ ├── looping1_expect.svg │ ├── looping2.svg │ ├── looping2_expect.svg │ ├── looping3.svg │ ├── looping3_expect.svg │ ├── not-looping-with-delay1.svg │ ├── not-looping-with-delay1_expect.svg │ ├── not-looping-with-delay2.svg │ ├── not-looping-with-delay2_expect.svg │ ├── not-looping1.svg │ ├── not-looping1_expect.svg │ ├── not-looping2.svg │ ├── not-looping2_expect.svg │ ├── not-looping3.svg │ ├── not-looping3_expect.svg │ ├── not-looping4.svg │ ├── not-looping4_expect.svg │ ├── not-looping5.svg │ ├── not-looping5_expect.svg │ ├── not-looping6.svg │ └── not-looping6_expect.svg ├── from-to │ ├── from-to.svg │ └── simulating-with-keyTimes.svg ├── keyTimes │ ├── no-css.svg │ ├── no-css_expect.svg │ ├── with-css.svg │ └── with-css_expect.svg └── large │ ├── 3d-star.svg │ └── 3d-star_expect.svg ├── simple ├── test.svg ├── test_expect_compressed.svg └── test_expect_uncompressed.svg ├── special └── css-delay │ ├── #delete │ ├── looping-with-delay.svg │ └── looping-with-delay_expect.svg │ ├── looping-multiple.svg │ ├── looping-multiple_expect.svg │ ├── looping-trailing-with-delay.svg │ ├── repeatCount-loop-with-syncbases.svg │ └── repeatCount-loop-with-syncbases_expect.svg ├── tweening ├── anothertest.svg ├── end-syncbase.end │ ├── looping.svg │ └── not-looping.svg ├── end │ ├── cut-off-dur.svg │ └── simulating-dur.svg ├── test.svg └── test_expect.svg └── util.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/README.md -------------------------------------------------------------------------------- /bin/smil2css: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../lib/cli")(); 4 | -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/process/check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/check.js -------------------------------------------------------------------------------- /lib/process/convert/css/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/animation.js -------------------------------------------------------------------------------- /lib/process/convert/css/find/declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/find/declaration.js -------------------------------------------------------------------------------- /lib/process/convert/css/find/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/find/index.js -------------------------------------------------------------------------------- /lib/process/convert/css/find/startingID.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/find/startingID.js -------------------------------------------------------------------------------- /lib/process/convert/css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/index.js -------------------------------------------------------------------------------- /lib/process/convert/css/keyframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/keyframes.js -------------------------------------------------------------------------------- /lib/process/convert/css/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/object.js -------------------------------------------------------------------------------- /lib/process/convert/css/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/css/vendors.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/attributeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/attributeName.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/begin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/begin.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/calcMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/calcMode.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/dur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/dur.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/end.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedBegin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedBegin/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedBegin/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedBegin/post.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedBegin/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedBegin/validate.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedDur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedDur.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedInitial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedInitial.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedKeys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedKeys/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedKeys/keyframing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedKeys/keyframing.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedRepeatCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedRepeatCount.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedTarget.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/extendedTween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/extendedTween.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/fill.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/keyTimes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/keyTimes.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/repeatCount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/repeatCount.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/repeatDur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/repeatDur.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/type.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/conversions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/conversions.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/strings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/strings/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/strings/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/strings/list.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/strings/timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/strings/timing.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/util/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/util/validate.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/dataAttributes/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/dataAttributes/values.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/animation/keyframes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/animation/keyframes.js -------------------------------------------------------------------------------- /lib/process/convert/elements/any.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/any.js -------------------------------------------------------------------------------- /lib/process/convert/elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/index.js -------------------------------------------------------------------------------- /lib/process/convert/elements/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/elements/style.js -------------------------------------------------------------------------------- /lib/process/convert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/convert/index.js -------------------------------------------------------------------------------- /lib/process/definitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/definitions.js -------------------------------------------------------------------------------- /lib/process/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/error.js -------------------------------------------------------------------------------- /lib/process/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/process/index.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/lib/util.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/package.json -------------------------------------------------------------------------------- /test/#backup/svg-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/#backup/svg-test.html -------------------------------------------------------------------------------- /test/#nested-svg/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/#nested-svg/test.svg -------------------------------------------------------------------------------- /test/#new/repeatDur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/#new/repeatDur.svg -------------------------------------------------------------------------------- /test/basic.cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/basic.cli.js -------------------------------------------------------------------------------- /test/basic.options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/basic.options.js -------------------------------------------------------------------------------- /test/convert.erroneous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/convert.erroneous.js -------------------------------------------------------------------------------- /test/convert.keyframing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/convert.keyframing.js -------------------------------------------------------------------------------- /test/convert.special.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/convert.special.js -------------------------------------------------------------------------------- /test/convert.tweening.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/convert.tweening.js -------------------------------------------------------------------------------- /test/erroneous/looping-trailing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/looping-trailing.svg -------------------------------------------------------------------------------- /test/erroneous/no-attributeName.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/no-attributeName.svg -------------------------------------------------------------------------------- /test/erroneous/non-animating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/non-animating.svg -------------------------------------------------------------------------------- /test/erroneous/non-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/non-svg.png -------------------------------------------------------------------------------- /test/erroneous/non-svg.txt: -------------------------------------------------------------------------------- 1 | svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-deadend1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-deadend1.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-deadend2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-deadend2.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-duplicates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-duplicates.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving1.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving2.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving3.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving4.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving5.svg -------------------------------------------------------------------------------- /test/erroneous/syncbase-weaving6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/syncbase-weaving6.svg -------------------------------------------------------------------------------- /test/erroneous/unsupported-elements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/erroneous/unsupported-elements.svg -------------------------------------------------------------------------------- /test/keyframing/begin-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-list.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.begin/looping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.begin/looping.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.begin/looping_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.begin/looping_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/interrupted-animation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/interrupted-animation.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/interrupted-animation_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/interrupted-animation_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping-trailing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping-trailing.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping1.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping1_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping1_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping2.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping2_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping2_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping3.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/looping3_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/looping3_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping-with-delay1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping-with-delay1.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping-with-delay1_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping-with-delay1_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping-with-delay2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping-with-delay2.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping-with-delay2_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping-with-delay2_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping1.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping1_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping1_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping2.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping2_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping2_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping3.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping3_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping3_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping4.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping4_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping4_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping5.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping5_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping5_expect.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping6.svg -------------------------------------------------------------------------------- /test/keyframing/begin-syncbase.end/not-looping6_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/begin-syncbase.end/not-looping6_expect.svg -------------------------------------------------------------------------------- /test/keyframing/from-to/from-to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/from-to/from-to.svg -------------------------------------------------------------------------------- /test/keyframing/from-to/simulating-with-keyTimes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/from-to/simulating-with-keyTimes.svg -------------------------------------------------------------------------------- /test/keyframing/keyTimes/no-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/keyTimes/no-css.svg -------------------------------------------------------------------------------- /test/keyframing/keyTimes/no-css_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/keyTimes/no-css_expect.svg -------------------------------------------------------------------------------- /test/keyframing/keyTimes/with-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/keyTimes/with-css.svg -------------------------------------------------------------------------------- /test/keyframing/keyTimes/with-css_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/keyTimes/with-css_expect.svg -------------------------------------------------------------------------------- /test/keyframing/large/3d-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/large/3d-star.svg -------------------------------------------------------------------------------- /test/keyframing/large/3d-star_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/keyframing/large/3d-star_expect.svg -------------------------------------------------------------------------------- /test/simple/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/simple/test.svg -------------------------------------------------------------------------------- /test/simple/test_expect_compressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/simple/test_expect_compressed.svg -------------------------------------------------------------------------------- /test/simple/test_expect_uncompressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/simple/test_expect_uncompressed.svg -------------------------------------------------------------------------------- /test/special/css-delay/#delete/looping-with-delay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/#delete/looping-with-delay.svg -------------------------------------------------------------------------------- /test/special/css-delay/#delete/looping-with-delay_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/#delete/looping-with-delay_expect.svg -------------------------------------------------------------------------------- /test/special/css-delay/looping-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/looping-multiple.svg -------------------------------------------------------------------------------- /test/special/css-delay/looping-multiple_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/looping-multiple_expect.svg -------------------------------------------------------------------------------- /test/special/css-delay/looping-trailing-with-delay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/looping-trailing-with-delay.svg -------------------------------------------------------------------------------- /test/special/css-delay/repeatCount-loop-with-syncbases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/repeatCount-loop-with-syncbases.svg -------------------------------------------------------------------------------- /test/special/css-delay/repeatCount-loop-with-syncbases_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/special/css-delay/repeatCount-loop-with-syncbases_expect.svg -------------------------------------------------------------------------------- /test/tweening/anothertest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/anothertest.svg -------------------------------------------------------------------------------- /test/tweening/end-syncbase.end/looping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/end-syncbase.end/looping.svg -------------------------------------------------------------------------------- /test/tweening/end-syncbase.end/not-looping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/end-syncbase.end/not-looping.svg -------------------------------------------------------------------------------- /test/tweening/end/cut-off-dur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/end/cut-off-dur.svg -------------------------------------------------------------------------------- /test/tweening/end/simulating-dur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/end/simulating-dur.svg -------------------------------------------------------------------------------- /test/tweening/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/test.svg -------------------------------------------------------------------------------- /test/tweening/test_expect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/tweening/test_expect.svg -------------------------------------------------------------------------------- /test/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webframes/smil2css/HEAD/test/util.js --------------------------------------------------------------------------------