html5lib-0.999999999/0000755000175000001440000000000012742037160015151 5ustar gsneddersusers00000000000000html5lib-0.999999999/setup.cfg0000644000175000001440000000032012742037160016765 0ustar gsneddersusers00000000000000[bdist_wheel] universal = 1 [pep8] ignore = N max-line-length = 139 exclude = .git,__pycache__,.tox,doc [flake8] ignore = N max-line-length = 139 [egg_info] tag_build = tag_date = 0 tag_svn_revision = 0 html5lib-0.999999999/requirements-optional.txt0000644000175000001440000000104112720211777022260 0ustar gsneddersusers00000000000000-r requirements.txt # We support a Genshi treewalker that can be used to serialize Genshi # streams. genshi # chardet can be used as a fallback in case we are unable to determine # the encoding of a document. chardet>=2.2 # lxml is supported with its own treebuilder ("lxml") and otherwise # uses the standard ElementTree support lxml ; platform_python_implementation == 'CPython' # DATrie can be used in place of our Python trie implementation for # slightly better parsing performance. datrie ; platform_python_implementation == 'CPython' html5lib-0.999999999/LICENSE0000644000175000001440000000207412145436112016156 0ustar gsneddersusers00000000000000Copyright (c) 2006-2013 James Graham and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. html5lib-0.999999999/pytest.ini0000644000175000001440000000114612720203315017175 0ustar gsneddersusers00000000000000[pytest] # Output fails, errors, xpass, and warnings; ignore doctest; make warnings errors addopts = -rfEXw -p no:doctest --strict # Make xpass results be considered fail xfail_strict = true # Document our markers markers = DOM: mark a test as a DOM tree test ElementTree: mark a test as a ElementTree tree test cElementTree: mark a test as a cElementTree tree test lxml: mark a test as a lxml tree test genshi: mark a test as a genshi tree test parser: mark a test as a parser test namespaced: mark a test as a namespaced parser test treewalker: mark a test as a treewalker test html5lib-0.999999999/README.rst0000644000175000001440000001006412741203344016637 0ustar gsneddersusers00000000000000html5lib ======== .. image:: https://travis-ci.org/html5lib/html5lib-python.png?branch=master :target: https://travis-ci.org/html5lib/html5lib-python html5lib is a pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers. Usage ----- Simple usage follows this pattern: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: document = html5lib.parse(f) or: .. code-block:: python import html5lib document = html5lib.parse("

Hello World!") By default, the ``document`` will be an ``xml.etree`` element instance. Whenever possible, html5lib chooses the accelerated ``ElementTree`` implementation (i.e. ``xml.etree.cElementTree`` on Python 2.x). Two other tree types are supported: ``xml.dom.minidom`` and ``lxml.etree``. To use an alternative format, specify the name of a treebuilder: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: lxml_etree_document = html5lib.parse(f, treebuilder="lxml") When using with ``urllib2`` (Python 2), the charset from HTTP should be pass into html5lib as follows: .. code-block:: python from contextlib import closing from urllib2 import urlopen import html5lib with closing(urlopen("http://example.com/")) as f: document = html5lib.parse(f, transport_encoding=f.info().getparam("charset")) When using with ``urllib.request`` (Python 3), the charset from HTTP should be pass into html5lib as follows: .. code-block:: python from urllib.request import urlopen import html5lib with urlopen("http://example.com/") as f: document = html5lib.parse(f, transport_encoding=f.info().get_content_charset()) To have more control over the parser, create a parser object explicitly. For instance, to make the parser raise exceptions on parse errors, use: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: parser = html5lib.HTMLParser(strict=True) document = parser.parse(f) When you're instantiating parser objects explicitly, pass a treebuilder class as the ``tree`` keyword argument to use an alternative document format: .. code-block:: python import html5lib parser = html5lib.HTMLParser(tree=html5lib.getTreeBuilder("dom")) minidom_document = parser.parse("

Hello World!") More documentation is available at https://html5lib.readthedocs.io/. Installation ------------ html5lib works on CPython 2.6+, CPython 3.3+ and PyPy. To install it, use: .. code-block:: bash $ pip install html5lib Optional Dependencies --------------------- The following third-party libraries may be used for additional functionality: - ``datrie`` can be used under CPython to improve parsing performance (though in almost all cases the improvement is marginal); - ``lxml`` is supported as a tree format (for both building and walking) under CPython (but *not* PyPy where it is known to cause segfaults); - ``genshi`` has a treewalker (but not builder); and - ``chardet`` can be used as a fallback when character encoding cannot be determined. Bugs ---- Please report any bugs on the `issue tracker `_. Tests ----- Unit tests require the ``pytest`` and ``mock`` libraries and can be run using the ``py.test`` command in the root directory; ``ordereddict`` is required under Python 2.6. All should pass. Test data are contained in a separate `html5lib-tests `_ repository and included as a submodule, thus for git checkouts they must be initialized:: $ git submodule init $ git submodule update If you have all compatible Python implementations available on your system, you can run tests on all of them using the ``tox`` utility, which can be found on PyPI. Questions? ---------- There's a mailing list available for support on Google Groups, `html5lib-discuss `_, though you may get a quicker response asking on IRC in `#whatwg on irc.freenode.net `_. html5lib-0.999999999/tox.ini0000644000175000001440000000046112717667252016502 0ustar gsneddersusers00000000000000[tox] envlist = {py26,py27,py33,py34,py35,pypy}-{base,optional} [testenv] deps = flake8 pytest pytest-expect>=1.1,<2.0 mock base: six base: webencodings py26-base: ordereddict optional: -r{toxinidir}/requirements-optional.txt commands = {envbindir}/py.test {toxinidir}/flake8-run.sh html5lib-0.999999999/PKG-INFO0000644000175000001440000004076112742037160016256 0ustar gsneddersusers00000000000000Metadata-Version: 1.1 Name: html5lib Version: 0.999999999 Summary: HTML parser based on the WHATWG HTML specification Home-page: https://github.com/html5lib/html5lib-python Author: James Graham Author-email: james@hoppipolla.co.uk License: MIT License Description: html5lib ======== .. image:: https://travis-ci.org/html5lib/html5lib-python.png?branch=master :target: https://travis-ci.org/html5lib/html5lib-python html5lib is a pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers. Usage ----- Simple usage follows this pattern: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: document = html5lib.parse(f) or: .. code-block:: python import html5lib document = html5lib.parse("

Hello World!") By default, the ``document`` will be an ``xml.etree`` element instance. Whenever possible, html5lib chooses the accelerated ``ElementTree`` implementation (i.e. ``xml.etree.cElementTree`` on Python 2.x). Two other tree types are supported: ``xml.dom.minidom`` and ``lxml.etree``. To use an alternative format, specify the name of a treebuilder: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: lxml_etree_document = html5lib.parse(f, treebuilder="lxml") When using with ``urllib2`` (Python 2), the charset from HTTP should be pass into html5lib as follows: .. code-block:: python from contextlib import closing from urllib2 import urlopen import html5lib with closing(urlopen("http://example.com/")) as f: document = html5lib.parse(f, transport_encoding=f.info().getparam("charset")) When using with ``urllib.request`` (Python 3), the charset from HTTP should be pass into html5lib as follows: .. code-block:: python from urllib.request import urlopen import html5lib with urlopen("http://example.com/") as f: document = html5lib.parse(f, transport_encoding=f.info().get_content_charset()) To have more control over the parser, create a parser object explicitly. For instance, to make the parser raise exceptions on parse errors, use: .. code-block:: python import html5lib with open("mydocument.html", "rb") as f: parser = html5lib.HTMLParser(strict=True) document = parser.parse(f) When you're instantiating parser objects explicitly, pass a treebuilder class as the ``tree`` keyword argument to use an alternative document format: .. code-block:: python import html5lib parser = html5lib.HTMLParser(tree=html5lib.getTreeBuilder("dom")) minidom_document = parser.parse("

Hello World!") More documentation is available at https://html5lib.readthedocs.io/. Installation ------------ html5lib works on CPython 2.6+, CPython 3.3+ and PyPy. To install it, use: .. code-block:: bash $ pip install html5lib Optional Dependencies --------------------- The following third-party libraries may be used for additional functionality: - ``datrie`` can be used under CPython to improve parsing performance (though in almost all cases the improvement is marginal); - ``lxml`` is supported as a tree format (for both building and walking) under CPython (but *not* PyPy where it is known to cause segfaults); - ``genshi`` has a treewalker (but not builder); and - ``chardet`` can be used as a fallback when character encoding cannot be determined. Bugs ---- Please report any bugs on the `issue tracker `_. Tests ----- Unit tests require the ``pytest`` and ``mock`` libraries and can be run using the ``py.test`` command in the root directory; ``ordereddict`` is required under Python 2.6. All should pass. Test data are contained in a separate `html5lib-tests `_ repository and included as a submodule, thus for git checkouts they must be initialized:: $ git submodule init $ git submodule update If you have all compatible Python implementations available on your system, you can run tests on all of them using the ``tox`` utility, which can be found on PyPI. Questions? ---------- There's a mailing list available for support on Google Groups, `html5lib-discuss `_, though you may get a quicker response asking on IRC in `#whatwg on irc.freenode.net `_. Change Log ---------- 0.999999999/1.0b10 ~~~~~~~~~~~~~~~~~~ Released on July 15, 2016 * Fix attribute order going to the tree builder to be document order instead of reverse document order(!). 0.99999999/1.0b9 ~~~~~~~~~~~~~~~~ Released on July 14, 2016 * **Added ordereddict as a mandatory dependency on Python 2.6.** * Added ``lxml``, ``genshi``, ``datrie``, ``charade``, and ``all`` extras that will do the right thing based on the specific interpreter implementation. * Now requires the ``mock`` package for the testsuite. * Cease supporting DATrie under PyPy. * **Remove ``PullDOM`` support, as this hasn't ever been properly tested, doesn't entirely work, and as far as I can tell is completely unused by anyone.** * Move testsuite to ``py.test``. * **Fix #124: move to webencodings for decoding the input byte stream; this makes html5lib compliant with the Encoding Standard, and introduces a required dependency on webencodings.** * **Cease supporting Python 3.2 (in both CPython and PyPy forms).** * **Fix comments containing double-dash with lxml 3.5 and above.** * **Use scripting disabled by default (as we don't implement scripting).** * **Fix #11, avoiding the XSS bug potentially caused by serializer allowing attribute values to be escaped out of in old browser versions, changing the quote_attr_values option on serializer to take one of three values, "always" (the old True value), "legacy" (the new option, and the new default), and "spec" (the old False value, and the old default).** * **Fix #72 by rewriting the sanitizer to apply only to treewalkers (instead of the tokenizer); as such, this will require amending all callers of it to use it via the treewalker API.** * **Drop support of charade, now that chardet is supported once more.** * **Replace the charset keyword argument on parse and related methods with a set of keyword arguments: override_encoding, transport_encoding, same_origin_parent_encoding, likely_encoding, and default_encoding.** * **Move filters._base, treebuilder._base, and treewalkers._base to .base to clarify their status as public.** * **Get rid of the sanitizer package. Merge sanitizer.sanitize into the sanitizer.htmlsanitizer module and move that to saniziter. This means anyone who used sanitizer.sanitize or sanitizer.HTMLSanitizer needs no code changes.** * **Rename treewalkers.lxmletree to .etree_lxml and treewalkers.genshistream to .genshi to have a consistent API.** * Move a whole load of stuff (inputstream, ihatexml, trie, tokenizer, utils) to be underscore prefixed to clarify their status as private. 0.9999999/1.0b8 ~~~~~~~~~~~~~~~ Released on September 10, 2015 * Fix #195: fix the sanitizer to drop broken URLs (it threw an exception between 0.9999 and 0.999999). 0.999999/1.0b7 ~~~~~~~~~~~~~~ Released on July 7, 2015 * Fix #189: fix the sanitizer to allow relative URLs again (as it did prior to 0.9999/1.0b5). 0.99999/1.0b6 ~~~~~~~~~~~~~ Released on April 30, 2015 * Fix #188: fix the sanitizer to not throw an exception when sanitizing bogus data URLs. 0.9999/1.0b5 ~~~~~~~~~~~~ Released on April 29, 2015 * Fix #153: Sanitizer fails to treat some attributes as URLs. Despite how this sounds, this has no known security implications. No known version of IE (5.5 to current), Firefox (3 to current), Safari (6 to current), Chrome (1 to current), or Opera (12 to current) will run any script provided in these attributes. * Pass error message to the ParseError exception in strict parsing mode. * Allow data URIs in the sanitizer, with a whitelist of content-types. * Add support for Python implementations that don't support lone surrogates (read: Jython). Fixes #2. * Remove localization of error messages. This functionality was totally unused (and untested that everything was localizable), so we may as well follow numerous browsers in not supporting translating technical strings. * Expose treewalkers.pprint as a public API. * Add a documentEncoding property to HTML5Parser, fix #121. 0.999 ~~~~~ Released on December 23, 2013 * Fix #127: add work-around for CPython issue #20007: .read(0) on http.client.HTTPResponse drops the rest of the content. * Fix #115: lxml treewalker can now deal with fragments containing, at their root level, text nodes with non-ASCII characters on Python 2. 0.99 ~~~~ Released on September 10, 2013 * No library changes from 1.0b3; released as 0.99 as pip has changed behaviour from 1.4 to avoid installing pre-release versions per PEP 440. 1.0b3 ~~~~~ Released on July 24, 2013 * Removed ``RecursiveTreeWalker`` from ``treewalkers._base``. Any implementation using it should be moved to ``NonRecursiveTreeWalker``, as everything bundled with html5lib has for years. * Fix #67 so that ``BufferedStream`` to correctly returns a bytes object, thereby fixing any case where html5lib is passed a non-seekable RawIOBase-like object. 1.0b2 ~~~~~ Released on June 27, 2013 * Removed reordering of attributes within the serializer. There is now an ``alphabetical_attributes`` option which preserves the previous behaviour through a new filter. This allows attribute order to be preserved through html5lib if the tree builder preserves order. * Removed ``dom2sax`` from DOM treebuilders. It has been replaced by ``treeadapters.sax.to_sax`` which is generic and supports any treewalker; it also resolves all known bugs with ``dom2sax``. * Fix treewalker assertions on hitting bytes strings on Python 2. Previous to 1.0b1, treewalkers coped with mixed bytes/unicode data on Python 2; this reintroduces this prior behaviour on Python 2. Behaviour is unchanged on Python 3. 1.0b1 ~~~~~ Released on May 17, 2013 * Implementation updated to implement the `HTML specification `_ as of 5th May 2013 (`SVN `_ revision r7867). * Python 3.2+ supported in a single codebase using the ``six`` library. * Removed support for Python 2.5 and older. * Removed the deprecated Beautiful Soup 3 treebuilder. ``beautifulsoup4`` can use ``html5lib`` as a parser instead. Note that since it doesn't support namespaces, foreign content like SVG and MathML is parsed incorrectly. * Removed ``simpletree`` from the package. The default tree builder is now ``etree`` (using the ``xml.etree.cElementTree`` implementation if available, and ``xml.etree.ElementTree`` otherwise). * Removed the ``XHTMLSerializer`` as it never actually guaranteed its output was well-formed XML, and hence provided little of use. * Removed default DOM treebuilder, so ``html5lib.treebuilders.dom`` is no longer supported. ``html5lib.treebuilders.getTreeBuilder("dom")`` will return the default DOM treebuilder, which uses ``xml.dom.minidom``. * Optional heuristic character encoding detection now based on ``charade`` for Python 2.6 - 3.3 compatibility. * Optional ``Genshi`` treewalker support fixed. * Many bugfixes, including: * #33: null in attribute value breaks XML AttValue; * #4: nested, indirect descendant, #errors (1,7): expected-doctype-but-got-start-tag (1,20): unexpected-end-tag-implies-table-voodoo (1,20): unexpected-end-tag (1,24): unexpected-end-tag-implies-table-voodoo (1,24): unexpected-end-tag (1,29): unexpected-end-tag-implies-table-voodoo (1,29): unexpected-end-tag (1,33): unexpected-end-tag-implies-table-voodoo (1,33): unexpected-end-tag (1,37): unexpected-end-tag-implies-table-voodoo (1,37): unexpected-end-tag (1,46): unexpected-end-tag-implies-table-voodoo (1,46): unexpected-end-tag (1,50): unexpected-end-tag-implies-table-voodoo (1,50): unexpected-end-tag (1,58): unexpected-end-tag-implies-table-voodoo (1,58): unexpected-end-tag (1,63): unexpected-end-tag-implies-table-voodoo (1,63): unexpected-end-tag (1,69): unexpected-end-tag-implies-table-voodoo (1,69): end-tag-too-early (1,75): unexpected-end-tag-implies-table-voodoo (1,75): unexpected-end-tag (1,83): unexpected-end-tag-implies-table-voodoo (1,83): unexpected-end-tag (1,90): unexpected-end-tag-implies-table-voodoo (1,90): unexpected-end-tag (1,99): unexpected-end-tag-implies-table-voodoo (1,99): unexpected-end-tag (1,104): unexpected-end-tag-implies-table-voodoo (1,104): end-tag-too-early (1,109): unexpected-end-tag-implies-table-voodoo (1,109): end-tag-too-early (1,114): unexpected-end-tag-implies-table-voodoo (1,114): end-tag-too-early (1,119): unexpected-end-tag-implies-table-voodoo (1,119): end-tag-too-early (1,124): unexpected-end-tag-implies-table-voodoo (1,124): end-tag-too-early (1,129): unexpected-end-tag-implies-table-voodoo (1,129): end-tag-too-early (1,136): unexpected-end-tag-in-table-row (1,141): unexpected-end-tag-implies-table-voodoo (1,141): unexpected-end-tag-treated-as (1,145): unexpected-end-tag-implies-table-voodoo (1,145): unexpected-end-tag (1,151): unexpected-end-tag-implies-table-voodoo (1,151): unexpected-end-tag (1,159): unexpected-end-tag-implies-table-voodoo (1,159): unexpected-end-tag (1,166): unexpected-end-tag-implies-table-voodoo (1,166): unexpected-end-tag (1,174): unexpected-end-tag-implies-table-voodoo (1,174): unexpected-end-tag (1,183): unexpected-end-tag-implies-table-voodoo (1,183): unexpected-end-tag (1,196): unexpected-end-tag (1,201): unexpected-end-tag (1,206): unexpected-end-tag (1,214): unexpected-end-tag (1,221): unexpected-end-tag (1,228): unexpected-end-tag (1,236): unexpected-end-tag (1,241): unexpected-end-tag (1,249): unexpected-end-tag (1,255): unexpected-end-tag (1,262): unexpected-end-tag (1,269): unexpected-end-tag (1,280): unexpected-end-tag (1,290): unexpected-end-tag (1,298): unexpected-end-tag (1,307): unexpected-end-tag (1,311): unexpected-end-tag (1,316): unexpected-end-tag (1,321): unexpected-end-tag (1,331): unexpected-end-tag (1,342): unexpected-end-tag (1,350): unexpected-end-tag (1,358): unexpected-end-tag (1,366): unexpected-end-tag (1,376): end-tag-too-early (1,389): end-tag-too-early (1,398): end-tag-too-early (1,404): end-tag-too-early (1,410): end-tag-too-early (1,415): end-tag-too-early (1,426): end-tag-too-early (1,436): end-tag-too-early (1,443): end-tag-too-early (1,448): end-tag-too-early (1,453): end-tag-too-early (1,458): unexpected-end-tag (1,465): unexpected-end-tag (1,471): unexpected-end-tag (1,478): unexpected-end-tag (1,487): end-tag-too-early (1,497): end-tag-too-early (1,506): end-tag-too-early (1,524): expected-eof-but-got-end-tag (1,524): unexpected-end-tag (1,531): unexpected-end-tag (1,540): unexpected-end-tag (1,548): unexpected-end-tag (1,558): unexpected-end-tag (1,568): unexpected-end-tag (1,579): unexpected-end-tag (1,590): unexpected-end-tag (1,601): unexpected-end-tag (1,610): unexpected-end-tag (1,622): unexpected-end-tag (1,633): unexpected-end-tag #document | | | |
| | | |

#data #errors (1,10): expected-doctype-but-got-start-tag (1,10): eof-in-frameset #document | | | html5lib-0.999999999/html5lib/tests/testdata/tree-construction/entities02.dat0000644000175000001440000001052112632711126030011 0ustar gsneddersusers00000000000000#data

#errors (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>YY" #data
#errors (1,15): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ&" #data
#errors (1,15): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ&" #data
#errors (1,13): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ&" #data
#errors (1,15): named-entity-without-semicolon (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>=YY" #data
#errors (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>0YY" #data
#errors (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>9YY" #data
#errors (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>aYY" #data
#errors (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>ZYY" #data
#errors (1,15): named-entity-without-semicolon (1,20): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ> YY" #data
#errors (1,15): named-entity-without-semicolon (1,17): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>" #data
#errors (1,15): named-entity-without-semicolon (1,17): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>" #data
#errors (1,14): named-entity-without-semicolon (1,15): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ>" #data
#errors (1,18): named-entity-without-semicolon (1,26): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ£_id=23" #data
#errors (1,25): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ&prod_id=23" #data
#errors (1,27): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ£_id=23" #data
#errors (1,26): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ∏_id=23" #data
#errors (1,18): named-entity-without-semicolon (1,23): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ£=23" #data
#errors (1,22): expected-doctype-but-got-start-tag #document | | | |
| bar="ZZ&prod=23" #data
ZZ£_id=23
#errors (1,5): expected-doctype-but-got-start-tag (1,13): named-entity-without-semicolon #document | | | |
| "ZZ£_id=23" #data
ZZ&prod_id=23
#errors (1,5): expected-doctype-but-got-start-tag #document | | | |
| "ZZ&prod_id=23" #data
ZZ£_id=23
#errors (1,5): expected-doctype-but-got-start-tag #document | | | |
| "ZZ£_id=23" #data
ZZ∏_id=23
#errors (1,5): expected-doctype-but-got-start-tag #document | | | |
| "ZZ∏_id=23" #data
ZZ£=23
#errors (1,5): expected-doctype-but-got-start-tag (1,13): named-entity-without-semicolon #document | | | |
| "ZZ£=23" #data
ZZ&prod=23
#errors (1,5): expected-doctype-but-got-start-tag #document | | | |
| "ZZ&prod=23" #data
ZZÆ=
#errors #document | | | |
| "ZZÆ=" html5lib-0.999999999/html5lib/tests/testdata/tree-construction/tests11.dat0000644000175000001440000004241712740556320027343 0ustar gsneddersusers00000000000000#data #errors #document | | | | | | attributeName="" | attributeType="" | baseFrequency="" | baseProfile="" | calcMode="" | clipPathUnits="" | diffuseConstant="" | edgeMode="" | filterUnits="" | glyphRef="" | gradientTransform="" | gradientUnits="" | kernelMatrix="" | kernelUnitLength="" | keyPoints="" | keySplines="" | keyTimes="" | lengthAdjust="" | limitingConeAngle="" | markerHeight="" | markerUnits="" | markerWidth="" | maskContentUnits="" | maskUnits="" | numOctaves="" | pathLength="" | patternContentUnits="" | patternTransform="" | patternUnits="" | pointsAtX="" | pointsAtY="" | pointsAtZ="" | preserveAlpha="" | preserveAspectRatio="" | primitiveUnits="" | refX="" | refY="" | repeatCount="" | repeatDur="" | requiredExtensions="" | requiredFeatures="" | specularConstant="" | specularExponent="" | spreadMethod="" | startOffset="" | stdDeviation="" | stitchTiles="" | surfaceScale="" | systemLanguage="" | tableValues="" | targetX="" | targetY="" | textLength="" | viewBox="" | viewTarget="" | xChannelSelector="" | yChannelSelector="" | zoomAndPan="" #data #errors #document | | | | | | attributeName="" | attributeType="" | baseFrequency="" | baseProfile="" | calcMode="" | clipPathUnits="" | diffuseConstant="" | edgeMode="" | filterUnits="" | glyphRef="" | gradientTransform="" | gradientUnits="" | kernelMatrix="" | kernelUnitLength="" | keyPoints="" | keySplines="" | keyTimes="" | lengthAdjust="" | limitingConeAngle="" | markerHeight="" | markerUnits="" | markerWidth="" | maskContentUnits="" | maskUnits="" | numOctaves="" | pathLength="" | patternContentUnits="" | patternTransform="" | patternUnits="" | pointsAtX="" | pointsAtY="" | pointsAtZ="" | preserveAlpha="" | preserveAspectRatio="" | primitiveUnits="" | refX="" | refY="" | repeatCount="" | repeatDur="" | requiredExtensions="" | requiredFeatures="" | specularConstant="" | specularExponent="" | spreadMethod="" | startOffset="" | stdDeviation="" | stitchTiles="" | surfaceScale="" | systemLanguage="" | tableValues="" | targetX="" | targetY="" | textLength="" | viewBox="" | viewTarget="" | xChannelSelector="" | yChannelSelector="" | zoomAndPan="" #data #errors #document | | | | | | attributeName="" | attributeType="" | baseFrequency="" | baseProfile="" | calcMode="" | clipPathUnits="" | diffuseConstant="" | edgeMode="" | filterUnits="" | filterres="" | glyphRef="" | gradientTransform="" | gradientUnits="" | kernelMatrix="" | kernelUnitLength="" | keyPoints="" | keySplines="" | keyTimes="" | lengthAdjust="" | limitingConeAngle="" | markerHeight="" | markerUnits="" | markerWidth="" | maskContentUnits="" | maskUnits="" | numOctaves="" | pathLength="" | patternContentUnits="" | patternTransform="" | patternUnits="" | pointsAtX="" | pointsAtY="" | pointsAtZ="" | preserveAlpha="" | preserveAspectRatio="" | primitiveUnits="" | refX="" | refY="" | repeatCount="" | repeatDur="" | requiredExtensions="" | requiredFeatures="" | specularConstant="" | specularExponent="" | spreadMethod="" | startOffset="" | stdDeviation="" | stitchTiles="" | surfaceScale="" | systemLanguage="" | tableValues="" | targetX="" | targetY="" | textLength="" | viewBox="" | viewTarget="" | xChannelSelector="" | yChannelSelector="" | zoomAndPan="" #data #errors #document | | | | | | attributename="" | attributetype="" | basefrequency="" | baseprofile="" | calcmode="" | clippathunits="" | diffuseconstant="" | edgemode="" | filterunits="" | glyphref="" | gradienttransform="" | gradientunits="" | kernelmatrix="" | kernelunitlength="" | keypoints="" | keysplines="" | keytimes="" | lengthadjust="" | limitingconeangle="" | markerheight="" | markerunits="" | markerwidth="" | maskcontentunits="" | maskunits="" | numoctaves="" | pathlength="" | patterncontentunits="" | patterntransform="" | patternunits="" | pointsatx="" | pointsaty="" | pointsatz="" | preservealpha="" | preserveaspectratio="" | primitiveunits="" | refx="" | refy="" | repeatcount="" | repeatdur="" | requiredextensions="" | requiredfeatures="" | specularconstant="" | specularexponent="" | spreadmethod="" | startoffset="" | stddeviation="" | stitchtiles="" | surfacescale="" | systemlanguage="" | tablevalues="" | targetx="" | targety="" | textlength="" | viewbox="" | viewtarget="" | xchannelselector="" | ychannelselector="" | zoomandpan="" #data #errors #document | | | | | | contentscripttype="" | contentstyletype="" | externalresourcesrequired="" | filterres="" #data #errors #document | | | | | | contentscripttype="" | contentstyletype="" | externalresourcesrequired="" | filterres="" #data #errors #document | | | | | | contentscripttype="" | contentstyletype="" | externalresourcesrequired="" | filterres="" #data #errors #document | | | | | | contentscripttype="" | contentstyletype="" | externalresourcesrequired="" | filterres="" #data #errors #document | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #data #errors #document | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #data #errors #document | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #data #errors #document | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #data #errors #document | | | | | | �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������html5lib-0.999999999/html5lib/tests/testdata/tree-construction/tests20.dat��������������������������0000644�0001750�0000144�00000022634�12740556320�027342� 0����������������������������������������������������������������������������������������������������ustar �gsnedders�����������������������users���������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#data