├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib └── libjass.css ├── package.json ├── src ├── globals.d.ts ├── index.ts ├── parser │ ├── index.ts │ ├── misc.ts │ ├── parse.ts │ ├── stream-parsers.ts │ ├── streams.ts │ └── ttf.ts ├── parts │ ├── drawing.ts │ └── index.ts ├── renderers │ ├── clocks │ │ ├── auto.ts │ │ ├── base.ts │ │ ├── manual.ts │ │ └── video.ts │ ├── default.ts │ ├── index.ts │ ├── null.ts │ ├── settings.ts │ └── web │ │ ├── animation-collection.ts │ │ ├── drawing-styles.ts │ │ ├── font-size.ts │ │ ├── keyframe.ts │ │ ├── renderer.ts │ │ └── span-styles.ts ├── serialization.ts ├── settings.ts ├── tsconfig.json ├── tslint.json ├── types │ ├── ass.ts │ ├── attachment.ts │ ├── dialogue.ts │ ├── misc.ts │ ├── script-properties.ts │ └── style.ts ├── utility │ ├── map.ts │ ├── mixin.ts │ ├── promise.ts │ └── set.ts └── webworker │ ├── channel.ts │ ├── commands.ts │ ├── index.ts │ └── misc.ts └── tests ├── doc └── doc.js ├── functional ├── alpha │ ├── alpha.ass │ ├── alpha.js │ ├── chrome │ │ └── alpha-1.png │ └── internet explorer │ │ └── alpha-1.png ├── auto-clock.js ├── fr │ ├── chrome │ │ ├── frz-01.png │ │ ├── frz-02.png │ │ ├── frz-03.png │ │ ├── frz-04.png │ │ ├── frz-05.png │ │ ├── frz-06.png │ │ ├── frz-07.png │ │ ├── frz-08.png │ │ ├── frz-09.png │ │ └── frz-10.png │ ├── frz.ass │ ├── frz.js │ └── internet explorer │ │ ├── frz-01.png │ │ ├── frz-02.png │ │ ├── frz-03.png │ │ ├── frz-04.png │ │ ├── frz-05.png │ │ ├── frz-06.png │ │ ├── frz-07.png │ │ ├── frz-08.png │ │ ├── frz-09.png │ │ └── frz-10.png ├── fsc │ ├── chrome │ │ └── fsc-1.png │ ├── fsc.ass │ ├── fsc.js │ └── internet explorer │ │ └── fsc-1.png ├── kfx │ ├── chrome │ │ ├── kfx-1.png │ │ ├── kfx-2.png │ │ ├── kfx-3.png │ │ ├── kfx-4.png │ │ ├── kfx-5.png │ │ └── kfx-6.png │ ├── internet explorer │ │ ├── kfx-1.png │ │ ├── kfx-2.png │ │ ├── kfx-3.png │ │ ├── kfx-4.png │ │ ├── kfx-5.png │ │ └── kfx-6.png │ ├── kfx.ass │ └── kfx.js ├── outlines │ ├── chrome │ │ ├── outlines-1.png │ │ ├── outlines-2.png │ │ ├── outlines-3.png │ │ ├── outlines-4.png │ │ ├── subpixel-1.png │ │ └── subpixel-2.png │ ├── internet explorer │ │ ├── outlines-1.png │ │ ├── outlines-2.png │ │ ├── outlines-3.png │ │ ├── outlines-4.png │ │ ├── subpixel-1.png │ │ └── subpixel-2.png │ ├── outlines.ass │ ├── outlines.js │ ├── subpixel.ass │ └── subpixel.js ├── r │ ├── alpha.ass │ ├── alpha.js │ ├── chrome │ │ └── alpha-1.png │ └── internet explorer │ │ └── alpha-1.png └── t │ ├── alpha.ass │ ├── alpha.js │ ├── chrome │ ├── alpha-1.png │ ├── alpha-2.png │ ├── alpha-3.png │ ├── alpha-4.png │ ├── alpha-5.png │ └── alpha-6.png │ └── internet explorer │ ├── alpha-1.png │ ├── alpha-2.png │ ├── alpha-3.png │ ├── alpha-4.png │ ├── alpha-5.png │ └── alpha-6.png ├── intern-doc.js ├── intern.js ├── support ├── browser-test-page.css ├── browser-test-page.html ├── parser-test.js └── test-page.js └── unit ├── 1.ass ├── 2.ass ├── 3.ass ├── 4.ass ├── 5.ass ├── 6.ass ├── 7.ass ├── 8.ass ├── attachments.js ├── manual-clock.js ├── minified.js ├── miscellaneous.js ├── polyfills.js ├── primitives.js ├── serialization.js ├── tags.js └── webworker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/README.md -------------------------------------------------------------------------------- /lib/libjass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/lib/libjass.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/package.json -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/index.ts -------------------------------------------------------------------------------- /src/parser/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/misc.ts -------------------------------------------------------------------------------- /src/parser/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/parse.ts -------------------------------------------------------------------------------- /src/parser/stream-parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/stream-parsers.ts -------------------------------------------------------------------------------- /src/parser/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/streams.ts -------------------------------------------------------------------------------- /src/parser/ttf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parser/ttf.ts -------------------------------------------------------------------------------- /src/parts/drawing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parts/drawing.ts -------------------------------------------------------------------------------- /src/parts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/parts/index.ts -------------------------------------------------------------------------------- /src/renderers/clocks/auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/clocks/auto.ts -------------------------------------------------------------------------------- /src/renderers/clocks/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/clocks/base.ts -------------------------------------------------------------------------------- /src/renderers/clocks/manual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/clocks/manual.ts -------------------------------------------------------------------------------- /src/renderers/clocks/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/clocks/video.ts -------------------------------------------------------------------------------- /src/renderers/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/default.ts -------------------------------------------------------------------------------- /src/renderers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/index.ts -------------------------------------------------------------------------------- /src/renderers/null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/null.ts -------------------------------------------------------------------------------- /src/renderers/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/settings.ts -------------------------------------------------------------------------------- /src/renderers/web/animation-collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/animation-collection.ts -------------------------------------------------------------------------------- /src/renderers/web/drawing-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/drawing-styles.ts -------------------------------------------------------------------------------- /src/renderers/web/font-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/font-size.ts -------------------------------------------------------------------------------- /src/renderers/web/keyframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/keyframe.ts -------------------------------------------------------------------------------- /src/renderers/web/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/renderer.ts -------------------------------------------------------------------------------- /src/renderers/web/span-styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/renderers/web/span-styles.ts -------------------------------------------------------------------------------- /src/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/serialization.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/tslint.json -------------------------------------------------------------------------------- /src/types/ass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/ass.ts -------------------------------------------------------------------------------- /src/types/attachment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/attachment.ts -------------------------------------------------------------------------------- /src/types/dialogue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/dialogue.ts -------------------------------------------------------------------------------- /src/types/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/misc.ts -------------------------------------------------------------------------------- /src/types/script-properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/script-properties.ts -------------------------------------------------------------------------------- /src/types/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/types/style.ts -------------------------------------------------------------------------------- /src/utility/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/utility/map.ts -------------------------------------------------------------------------------- /src/utility/mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/utility/mixin.ts -------------------------------------------------------------------------------- /src/utility/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/utility/promise.ts -------------------------------------------------------------------------------- /src/utility/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/utility/set.ts -------------------------------------------------------------------------------- /src/webworker/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/webworker/channel.ts -------------------------------------------------------------------------------- /src/webworker/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/webworker/commands.ts -------------------------------------------------------------------------------- /src/webworker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/webworker/index.ts -------------------------------------------------------------------------------- /src/webworker/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/src/webworker/misc.ts -------------------------------------------------------------------------------- /tests/doc/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/doc/doc.js -------------------------------------------------------------------------------- /tests/functional/alpha/alpha.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/alpha/alpha.ass -------------------------------------------------------------------------------- /tests/functional/alpha/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/alpha/alpha.js -------------------------------------------------------------------------------- /tests/functional/alpha/chrome/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/alpha/chrome/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/alpha/internet explorer/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/alpha/internet explorer/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/auto-clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/auto-clock.js -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-01.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-02.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-03.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-04.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-05.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-06.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-07.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-08.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-09.png -------------------------------------------------------------------------------- /tests/functional/fr/chrome/frz-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/chrome/frz-10.png -------------------------------------------------------------------------------- /tests/functional/fr/frz.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/frz.ass -------------------------------------------------------------------------------- /tests/functional/fr/frz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/frz.js -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-01.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-02.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-03.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-04.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-05.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-06.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-07.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-08.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-09.png -------------------------------------------------------------------------------- /tests/functional/fr/internet explorer/frz-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fr/internet explorer/frz-10.png -------------------------------------------------------------------------------- /tests/functional/fsc/chrome/fsc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fsc/chrome/fsc-1.png -------------------------------------------------------------------------------- /tests/functional/fsc/fsc.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fsc/fsc.ass -------------------------------------------------------------------------------- /tests/functional/fsc/fsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fsc/fsc.js -------------------------------------------------------------------------------- /tests/functional/fsc/internet explorer/fsc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/fsc/internet explorer/fsc-1.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-1.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-2.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-3.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-4.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-5.png -------------------------------------------------------------------------------- /tests/functional/kfx/chrome/kfx-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/chrome/kfx-6.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-1.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-2.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-3.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-4.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-5.png -------------------------------------------------------------------------------- /tests/functional/kfx/internet explorer/kfx-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/internet explorer/kfx-6.png -------------------------------------------------------------------------------- /tests/functional/kfx/kfx.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/kfx.ass -------------------------------------------------------------------------------- /tests/functional/kfx/kfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/kfx/kfx.js -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/outlines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/outlines-1.png -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/outlines-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/outlines-2.png -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/outlines-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/outlines-3.png -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/outlines-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/outlines-4.png -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/subpixel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/subpixel-1.png -------------------------------------------------------------------------------- /tests/functional/outlines/chrome/subpixel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/chrome/subpixel-2.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/outlines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/outlines-1.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/outlines-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/outlines-2.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/outlines-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/outlines-3.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/outlines-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/outlines-4.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/subpixel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/subpixel-1.png -------------------------------------------------------------------------------- /tests/functional/outlines/internet explorer/subpixel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/internet explorer/subpixel-2.png -------------------------------------------------------------------------------- /tests/functional/outlines/outlines.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/outlines.ass -------------------------------------------------------------------------------- /tests/functional/outlines/outlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/outlines.js -------------------------------------------------------------------------------- /tests/functional/outlines/subpixel.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/subpixel.ass -------------------------------------------------------------------------------- /tests/functional/outlines/subpixel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/outlines/subpixel.js -------------------------------------------------------------------------------- /tests/functional/r/alpha.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/r/alpha.ass -------------------------------------------------------------------------------- /tests/functional/r/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/r/alpha.js -------------------------------------------------------------------------------- /tests/functional/r/chrome/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/r/chrome/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/r/internet explorer/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/r/internet explorer/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/t/alpha.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/alpha.ass -------------------------------------------------------------------------------- /tests/functional/t/alpha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/alpha.js -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-2.png -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-3.png -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-4.png -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-5.png -------------------------------------------------------------------------------- /tests/functional/t/chrome/alpha-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/chrome/alpha-6.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-1.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-2.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-3.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-4.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-5.png -------------------------------------------------------------------------------- /tests/functional/t/internet explorer/alpha-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/functional/t/internet explorer/alpha-6.png -------------------------------------------------------------------------------- /tests/intern-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/intern-doc.js -------------------------------------------------------------------------------- /tests/intern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/intern.js -------------------------------------------------------------------------------- /tests/support/browser-test-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/support/browser-test-page.css -------------------------------------------------------------------------------- /tests/support/browser-test-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/support/browser-test-page.html -------------------------------------------------------------------------------- /tests/support/parser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/support/parser-test.js -------------------------------------------------------------------------------- /tests/support/test-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/support/test-page.js -------------------------------------------------------------------------------- /tests/unit/1.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/1.ass -------------------------------------------------------------------------------- /tests/unit/2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/2.ass -------------------------------------------------------------------------------- /tests/unit/3.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/3.ass -------------------------------------------------------------------------------- /tests/unit/4.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/4.ass -------------------------------------------------------------------------------- /tests/unit/5.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/5.ass -------------------------------------------------------------------------------- /tests/unit/6.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/6.ass -------------------------------------------------------------------------------- /tests/unit/7.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/7.ass -------------------------------------------------------------------------------- /tests/unit/8.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/8.ass -------------------------------------------------------------------------------- /tests/unit/attachments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/attachments.js -------------------------------------------------------------------------------- /tests/unit/manual-clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/manual-clock.js -------------------------------------------------------------------------------- /tests/unit/minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/minified.js -------------------------------------------------------------------------------- /tests/unit/miscellaneous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/miscellaneous.js -------------------------------------------------------------------------------- /tests/unit/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/polyfills.js -------------------------------------------------------------------------------- /tests/unit/primitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/primitives.js -------------------------------------------------------------------------------- /tests/unit/serialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/serialization.js -------------------------------------------------------------------------------- /tests/unit/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/tags.js -------------------------------------------------------------------------------- /tests/unit/webworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arnavion/libjass/HEAD/tests/unit/webworker.js --------------------------------------------------------------------------------