├── .gitignore ├── .npmignore ├── .travis.yml ├── COPYING ├── History.md ├── Makefile ├── README.md ├── doc ├── TODO.md ├── api.markdown ├── api_footer.html ├── api_header.html ├── doc.js ├── jquery.js ├── logo.png ├── sh_javascript.min.js ├── sh_main.js ├── sh_vim-dark.css └── syntax.html ├── example.js ├── lib ├── ElementStack.js ├── EntityParser.js ├── InputStream.js ├── StackItem.js ├── Tokenizer.js ├── TreeBuilder.js ├── array-helpers.js ├── constants.js ├── dom │ ├── DOMParser.js │ └── DOMTreeBuilder.js ├── encodings.json ├── index.js ├── jsdom │ ├── JSDOMParser.js │ └── JSDOMTreeBuilder.js ├── messages.json └── sax │ ├── SAXParser.js │ ├── SAXTreeBuilder.js │ └── TreeParser.js ├── package.json ├── test ├── data │ ├── AUTHORS.rst │ ├── LICENSE │ ├── encoding │ │ ├── chardet │ │ │ └── test_big5.txt │ │ ├── test-yahoo-jp.dat │ │ ├── tests1.dat │ │ └── tests2.dat │ ├── sanitizer │ │ └── tests1.dat │ ├── serializer │ │ ├── core.test │ │ ├── injectmeta.test │ │ ├── optionaltags.test │ │ ├── options.test │ │ └── whitespace.test │ ├── sniffer │ │ └── htmlOrFeed.json │ ├── tokenizer │ │ ├── README.md │ │ ├── contentModelFlags.test │ │ ├── domjs.test │ │ ├── entities.test │ │ ├── escapeFlag.test │ │ ├── namedEntities.test │ │ ├── numericEntities.test │ │ ├── pendingSpecChanges.test │ │ ├── test1.test │ │ ├── test2.test │ │ ├── test3.test │ │ ├── test4.test │ │ ├── unicodeChars.test │ │ ├── unicodeCharsProblematic.test │ │ └── xmlViolation.test │ ├── tree-construction │ │ ├── README.md │ │ ├── adoption01.dat │ │ ├── adoption02.dat │ │ ├── comments01.dat │ │ ├── doctype01.dat │ │ ├── domjs-unsafe.dat │ │ ├── entities01.dat │ │ ├── entities02.dat │ │ ├── html5test-com.dat │ │ ├── inbody01.dat │ │ ├── isindex.dat │ │ ├── main-element.dat │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ ├── pending-spec-changes.dat │ │ ├── plain-text-unsafe.dat │ │ ├── scriptdata01.dat │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ ├── ark.dat │ │ │ └── webkit01.dat │ │ ├── tables01.dat │ │ ├── template.dat │ │ ├── tests1.dat │ │ ├── tests10.dat │ │ ├── tests11.dat │ │ ├── tests12.dat │ │ ├── tests14.dat │ │ ├── tests15.dat │ │ ├── tests16.dat │ │ ├── tests17.dat │ │ ├── tests18.dat │ │ ├── tests19.dat │ │ ├── tests2.dat │ │ ├── tests20.dat │ │ ├── tests21.dat │ │ ├── tests22.dat │ │ ├── tests23.dat │ │ ├── tests24.dat │ │ ├── tests25.dat │ │ ├── tests26.dat │ │ ├── tests3.dat │ │ ├── tests4.dat │ │ ├── tests5.dat │ │ ├── tests6.dat │ │ ├── tests7.dat │ │ ├── tests8.dat │ │ ├── tests9.dat │ │ ├── tests_innerHTML_1.dat │ │ ├── tricky01.dat │ │ ├── webkit01.dat │ │ └── webkit02.dat │ └── validator │ │ ├── attributes.test │ │ ├── base-href-attribute.test │ │ ├── base-target-attribute.test │ │ ├── blockquote-cite-attribute.test │ │ ├── classattribute.test │ │ ├── contenteditableattribute.test │ │ ├── contextmenuattribute.test │ │ ├── dirattribute.test │ │ ├── draggableattribute.test │ │ ├── html-xmlns-attribute.test │ │ ├── idattribute.test │ │ ├── inputattributes.test │ │ ├── irrelevantattribute.test │ │ ├── langattribute.test │ │ ├── li-value-attribute.test │ │ ├── link-href-attribute.test │ │ ├── link-hreflang-attribute.test │ │ ├── link-rel-attribute.test │ │ ├── ol-start-attribute.test │ │ ├── starttags.test │ │ ├── style-scoped-attribute.test │ │ └── tabindexattribute.test ├── lib │ ├── serializeTestOutput.js │ └── support.js └── tree-construction-test.js └── tools ├── parse-doc.js ├── parse-test-data.js ├── test-viewer ├── app.js ├── public │ └── stylesheets │ │ └── style.css ├── test │ └── app.test.js └── views │ ├── index.jade │ ├── layout.jade │ └── output.jade └── testbed.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/COPYING -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/README.md -------------------------------------------------------------------------------- /doc/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/TODO.md -------------------------------------------------------------------------------- /doc/api.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/api.markdown -------------------------------------------------------------------------------- /doc/api_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/api_footer.html -------------------------------------------------------------------------------- /doc/api_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/api_header.html -------------------------------------------------------------------------------- /doc/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/doc.js -------------------------------------------------------------------------------- /doc/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/jquery.js -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/logo.png -------------------------------------------------------------------------------- /doc/sh_javascript.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/sh_javascript.min.js -------------------------------------------------------------------------------- /doc/sh_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/sh_main.js -------------------------------------------------------------------------------- /doc/sh_vim-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/sh_vim-dark.css -------------------------------------------------------------------------------- /doc/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/doc/syntax.html -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/example.js -------------------------------------------------------------------------------- /lib/ElementStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/ElementStack.js -------------------------------------------------------------------------------- /lib/EntityParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/EntityParser.js -------------------------------------------------------------------------------- /lib/InputStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/InputStream.js -------------------------------------------------------------------------------- /lib/StackItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/StackItem.js -------------------------------------------------------------------------------- /lib/Tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/Tokenizer.js -------------------------------------------------------------------------------- /lib/TreeBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/TreeBuilder.js -------------------------------------------------------------------------------- /lib/array-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/array-helpers.js -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/dom/DOMParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/dom/DOMParser.js -------------------------------------------------------------------------------- /lib/dom/DOMTreeBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/dom/DOMTreeBuilder.js -------------------------------------------------------------------------------- /lib/encodings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/encodings.json -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/jsdom/JSDOMParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/jsdom/JSDOMParser.js -------------------------------------------------------------------------------- /lib/jsdom/JSDOMTreeBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/jsdom/JSDOMTreeBuilder.js -------------------------------------------------------------------------------- /lib/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/messages.json -------------------------------------------------------------------------------- /lib/sax/SAXParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/sax/SAXParser.js -------------------------------------------------------------------------------- /lib/sax/SAXTreeBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/sax/SAXTreeBuilder.js -------------------------------------------------------------------------------- /lib/sax/TreeParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/lib/sax/TreeParser.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/package.json -------------------------------------------------------------------------------- /test/data/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/AUTHORS.rst -------------------------------------------------------------------------------- /test/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/LICENSE -------------------------------------------------------------------------------- /test/data/encoding/chardet/test_big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/encoding/chardet/test_big5.txt -------------------------------------------------------------------------------- /test/data/encoding/test-yahoo-jp.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/encoding/test-yahoo-jp.dat -------------------------------------------------------------------------------- /test/data/encoding/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/encoding/tests1.dat -------------------------------------------------------------------------------- /test/data/encoding/tests2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/encoding/tests2.dat -------------------------------------------------------------------------------- /test/data/sanitizer/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/sanitizer/tests1.dat -------------------------------------------------------------------------------- /test/data/serializer/core.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/serializer/core.test -------------------------------------------------------------------------------- /test/data/serializer/injectmeta.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/serializer/injectmeta.test -------------------------------------------------------------------------------- /test/data/serializer/optionaltags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/serializer/optionaltags.test -------------------------------------------------------------------------------- /test/data/serializer/options.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/serializer/options.test -------------------------------------------------------------------------------- /test/data/serializer/whitespace.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/serializer/whitespace.test -------------------------------------------------------------------------------- /test/data/sniffer/htmlOrFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/sniffer/htmlOrFeed.json -------------------------------------------------------------------------------- /test/data/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/README.md -------------------------------------------------------------------------------- /test/data/tokenizer/contentModelFlags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/contentModelFlags.test -------------------------------------------------------------------------------- /test/data/tokenizer/domjs.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/domjs.test -------------------------------------------------------------------------------- /test/data/tokenizer/entities.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/entities.test -------------------------------------------------------------------------------- /test/data/tokenizer/escapeFlag.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/escapeFlag.test -------------------------------------------------------------------------------- /test/data/tokenizer/namedEntities.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/namedEntities.test -------------------------------------------------------------------------------- /test/data/tokenizer/numericEntities.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/numericEntities.test -------------------------------------------------------------------------------- /test/data/tokenizer/pendingSpecChanges.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/pendingSpecChanges.test -------------------------------------------------------------------------------- /test/data/tokenizer/test1.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/test1.test -------------------------------------------------------------------------------- /test/data/tokenizer/test2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/test2.test -------------------------------------------------------------------------------- /test/data/tokenizer/test3.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/test3.test -------------------------------------------------------------------------------- /test/data/tokenizer/test4.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/test4.test -------------------------------------------------------------------------------- /test/data/tokenizer/unicodeChars.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/unicodeChars.test -------------------------------------------------------------------------------- /test/data/tokenizer/unicodeCharsProblematic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/unicodeCharsProblematic.test -------------------------------------------------------------------------------- /test/data/tokenizer/xmlViolation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tokenizer/xmlViolation.test -------------------------------------------------------------------------------- /test/data/tree-construction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/README.md -------------------------------------------------------------------------------- /test/data/tree-construction/adoption01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/adoption01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/adoption02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/adoption02.dat -------------------------------------------------------------------------------- /test/data/tree-construction/comments01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/comments01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/doctype01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/doctype01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/domjs-unsafe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/domjs-unsafe.dat -------------------------------------------------------------------------------- /test/data/tree-construction/entities01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/entities01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/entities02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/entities02.dat -------------------------------------------------------------------------------- /test/data/tree-construction/html5test-com.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/html5test-com.dat -------------------------------------------------------------------------------- /test/data/tree-construction/inbody01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/inbody01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/isindex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/isindex.dat -------------------------------------------------------------------------------- /test/data/tree-construction/main-element.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/main-element.dat -------------------------------------------------------------------------------- /test/data/tree-construction/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/pending-spec-changes-plain-text-unsafe.dat -------------------------------------------------------------------------------- /test/data/tree-construction/pending-spec-changes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/pending-spec-changes.dat -------------------------------------------------------------------------------- /test/data/tree-construction/plain-text-unsafe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/plain-text-unsafe.dat -------------------------------------------------------------------------------- /test/data/tree-construction/scriptdata01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/scriptdata01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/scripted/adoption01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/scripted/adoption01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/scripted/ark.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/scripted/ark.dat -------------------------------------------------------------------------------- /test/data/tree-construction/scripted/webkit01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/scripted/webkit01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tables01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tables01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/template.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/template.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests1.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests10.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests11.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests12.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests14.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests15.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests16.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests17.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests17.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests18.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests18.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests19.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests19.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests2.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests20.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests21.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests21.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests22.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests22.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests23.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests23.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests24.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests24.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests25.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests26.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests26.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests3.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests4.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests5.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests6.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests7.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests8.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests9.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tests_innerHTML_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tests_innerHTML_1.dat -------------------------------------------------------------------------------- /test/data/tree-construction/tricky01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/tricky01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/webkit01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/webkit01.dat -------------------------------------------------------------------------------- /test/data/tree-construction/webkit02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/tree-construction/webkit02.dat -------------------------------------------------------------------------------- /test/data/validator/attributes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/attributes.test -------------------------------------------------------------------------------- /test/data/validator/base-href-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/base-href-attribute.test -------------------------------------------------------------------------------- /test/data/validator/base-target-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/base-target-attribute.test -------------------------------------------------------------------------------- /test/data/validator/blockquote-cite-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/blockquote-cite-attribute.test -------------------------------------------------------------------------------- /test/data/validator/classattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/classattribute.test -------------------------------------------------------------------------------- /test/data/validator/contenteditableattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/contenteditableattribute.test -------------------------------------------------------------------------------- /test/data/validator/contextmenuattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/contextmenuattribute.test -------------------------------------------------------------------------------- /test/data/validator/dirattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/dirattribute.test -------------------------------------------------------------------------------- /test/data/validator/draggableattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/draggableattribute.test -------------------------------------------------------------------------------- /test/data/validator/html-xmlns-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/html-xmlns-attribute.test -------------------------------------------------------------------------------- /test/data/validator/idattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/idattribute.test -------------------------------------------------------------------------------- /test/data/validator/inputattributes.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/inputattributes.test -------------------------------------------------------------------------------- /test/data/validator/irrelevantattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/irrelevantattribute.test -------------------------------------------------------------------------------- /test/data/validator/langattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/langattribute.test -------------------------------------------------------------------------------- /test/data/validator/li-value-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/li-value-attribute.test -------------------------------------------------------------------------------- /test/data/validator/link-href-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/link-href-attribute.test -------------------------------------------------------------------------------- /test/data/validator/link-hreflang-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/link-hreflang-attribute.test -------------------------------------------------------------------------------- /test/data/validator/link-rel-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/link-rel-attribute.test -------------------------------------------------------------------------------- /test/data/validator/ol-start-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/ol-start-attribute.test -------------------------------------------------------------------------------- /test/data/validator/starttags.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/starttags.test -------------------------------------------------------------------------------- /test/data/validator/style-scoped-attribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/style-scoped-attribute.test -------------------------------------------------------------------------------- /test/data/validator/tabindexattribute.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/data/validator/tabindexattribute.test -------------------------------------------------------------------------------- /test/lib/serializeTestOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/lib/serializeTestOutput.js -------------------------------------------------------------------------------- /test/lib/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/lib/support.js -------------------------------------------------------------------------------- /test/tree-construction-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/test/tree-construction-test.js -------------------------------------------------------------------------------- /tools/parse-doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/parse-doc.js -------------------------------------------------------------------------------- /tools/parse-test-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/parse-test-data.js -------------------------------------------------------------------------------- /tools/test-viewer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/app.js -------------------------------------------------------------------------------- /tools/test-viewer/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/public/stylesheets/style.css -------------------------------------------------------------------------------- /tools/test-viewer/test/app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/test/app.test.js -------------------------------------------------------------------------------- /tools/test-viewer/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/views/index.jade -------------------------------------------------------------------------------- /tools/test-viewer/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/views/layout.jade -------------------------------------------------------------------------------- /tools/test-viewer/views/output.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/test-viewer/views/output.jade -------------------------------------------------------------------------------- /tools/testbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aredridel/html5/HEAD/tools/testbed.js --------------------------------------------------------------------------------