mirror of
				https://gitlab.gnome.org/GNOME/libxml2.git
				synced 2025-10-30 10:45:36 +03:00 
			
		
		
		
	* HTMLparser.c: applied patch from James Bursa fixing an html parsing bug in push mode * result/HTML/repeat.html* test/HTML/repeat.html: added the test to the regression suite Daniel
		
			
				
	
	
		
			15 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			283 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| SAX.setDocumentLocator()
 | |
| SAX.startDocument()
 | |
| SAX.startElement(html)
 | |
| SAX.startElement(body)
 | |
| SAX.startElement(td)
 | |
| SAX.endElement(td)
 | |
| SAX.startElement(td)
 | |
| SAX.comment( <a><b> )
 | |
| SAX.ignorableWhitespace(
 | |
| , 1)
 | |
| SAX.endElement(td)
 | |
| SAX.endElement(body)
 | |
| SAX.endElement(html)
 | |
| SAX.endDocument()
 |