aboutsummaryrefslogtreecommitdiffstats
path: root/result/HTML/reg1.html
Commit message (Collapse)AuthorAgeFilesLines
* Keep non-significant blanks node in HTML parserDaniel Veillard2012-09-071-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For https://bugzilla.gnome.org/show_bug.cgi?id=681822 Regardless if the option HTML_PARSE_NOBLANKS is set or not, blank nodes are removed from a HTML document, for example: <html> <head> <title>This is a test.</title> </head> <body> <p>This is a test.</p> </body> </html> is read as: <html><head><title>This is a test.</title></head><body> <p>This is a test.</p> </body></html> This changes the default behaviour but the old behaviour is available as expected when using the parser flag HTML_PARSE_NOBLANKS Based on original patch from Igor Ignatyuk <igor_ignatiouk@hotmail.com> * HTMLparser.c: change various places in the parser where ignorable_space SAX callback was called without checking for the parser flag preference * xmllint.c: make sure we use the new flag even for HTML parsing * result/HTML/*: this modifies the output of a number of tests
* removing the SAXresults tree, keeping result in the same tree, addedDaniel Veillard2003-09-031-1/+1
| | | | | | | * Makefile.am results/*.sax SAXResult/*: removing the SAXresults tree, keeping result in the same tree, added SAXtests to the default "make tests" Daniel
* - release 1.8.2 - HTML handling improvement - new tree handling functionsDaniel Veillard1999-12-211-1/+1
| | | | | | | | | - release 1.8.2 - HTML handling improvement - new tree handling functions - default namespace on attribute bug fixed - libxml use for C++ fixed (for good this time !) Daniel
* - Updated HTML test outputsDaniel Veillard1999-12-121-3/+1
| | | | | - Fixed taht f....g problem with C++ and includes, Daniel
* Large commit of changes done while travelling to XML'99Daniel Veillard1999-12-121-10/+10
| | | | | | | | - cleanups on memory use and parsers - start of Link interfaces HTML and XLink - rebuild the doc - released as 1.8.0 Daniel
* Revamped HTML parsing, lots of bug fixes for HTML stuff,Daniel Veillard1999-10-141-0/+12
Added xmlValidGetValidElements and xmlValidGetPotentialChildren, Completed and cleaned up the tests, Added doc for new modules gnome-xml-xmlmemory.html and gnome-xml-nanohttp.html, Daniel