summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* A bunch of fixes to table handlingJohn Mark Bell2008-07-076-20/+56
| | | | svn path=/trunk/hubbub/; revision=4525
* Fix an assertion.Andrew Sidwell2008-07-031-1/+1
| | | | svn path=/trunk/hubbub/; revision=4503
* Derefcount things which should be derefcounted.Andrew Sidwell2008-07-039-0/+70
| | | | svn path=/trunk/hubbub/; revision=4502
* Get all the treebuilder actually linking together nicely.Andrew Sidwell2008-07-037-15/+55
| | | | svn path=/trunk/hubbub/; revision=4501
* Implement the "in table" insertion mode, at least partially. (The adoption ↵Andrew Sidwell2008-07-034-5/+211
| | | | | | agency algorithm hasn't been tweaked to respect in_table_foster.) svn path=/trunk/hubbub/; revision=4500
* Add my spangly new email address to all the files that didn't have it before.Andrew Sidwell2008-06-3013-13/+13
| | | | svn path=/trunk/hubbub/; revision=4481
* Implement the "after after frameset" insertion mode.Andrew Sidwell2008-06-302-1/+62
| | | | svn path=/trunk/hubbub/; revision=4480
* Implement "after frameset" mode.Andrew Sidwell2008-06-303-1/+81
| | | | svn path=/trunk/hubbub/; revision=4479
* Implement "in frameset" tree construction mode.Andrew Sidwell2008-06-303-1/+96
| | | | svn path=/trunk/hubbub/; revision=4478
* Add the "after after body" insertion mode.Andrew Sidwell2008-06-303-1/+64
| | | | svn path=/trunk/hubbub/; revision=4477
* Add the "after body" insertion mode.Andrew Sidwell2008-06-303-1/+82
| | | | svn path=/trunk/hubbub/; revision=4476
* Add "in foreign content" handling. Not convinced this is the best way.Andrew Sidwell2008-06-305-5/+152
| | | | svn path=/trunk/hubbub/; revision=4475
* Add namespace awareness right through the code, in preparation for handling ↵Andrew Sidwell2008-06-2612-49/+86
| | | | | | foreign content properly. svn path=/trunk/hubbub/; revision=4457
* Add code to adjust foreign attributes, as per spec.Andrew Sidwell2008-06-265-2/+152
| | | | svn path=/trunk/hubbub/; revision=4454
* Add the basics of namespace support.Andrew Sidwell2008-06-261-0/+1
| | | | svn path=/trunk/hubbub/; revision=4452
* Move some stuff internal to the "in head" mode to in_head.c.Andrew Sidwell2008-06-263-64/+65
| | | | svn path=/trunk/hubbub/; revision=4451
* Implement the "in select in table" insertion mode.Andrew Sidwell2008-06-253-1/+65
| | | | svn path=/trunk/hubbub/; revision=4447
* Implement the "in select" insertion mode, and add some more utility functions.Andrew Sidwell2008-06-255-1/+184
| | | | svn path=/trunk/hubbub/; revision=4446
* Add a utility current_node() function which returns the current node.Andrew Sidwell2008-06-252-0/+15
| | | | svn path=/trunk/hubbub/; revision=4445
* Implement the "in cell" insertion mode.Andrew Sidwell2008-06-253-0/+139
| | | | svn path=/trunk/hubbub/; revision=4444
* Implement the "in row" insertion mode.Andrew Sidwell2008-06-253-1/+138
| | | | svn path=/trunk/hubbub/; revision=4443
* Add the "in table body" insertion mode.Andrew Sidwell2008-06-253-1/+173
| | | | svn path=/trunk/hubbub/; revision=4442
* *Really* implement "in column group" insertion mode.Andrew Sidwell2008-06-251-0/+97
| | | | svn path=/trunk/hubbub/; revision=4441
* Implement "in column group" insertion mode.Andrew Sidwell2008-06-252-1/+3
| | | | svn path=/trunk/hubbub/; revision=4440
* Add "in caption" insertion mode.Andrew Sidwell2008-06-243-0/+103
| | | | svn path=/trunk/hubbub/; revision=4436
* Update the list of implied end tags.Andrew Sidwell2008-06-241-5/+7
| | | | svn path=/trunk/hubbub/; revision=4435
* Make everything that is meant to have processing equivalent to "in head" use ↵Andrew Sidwell2008-06-246-74/+33
| | | | | | the same code. svn path=/trunk/hubbub/; revision=4434
* Rough and unoptimised quirks-mode detector in the "initial" tree ↵Andrew Sidwell2008-06-241-1/+234
| | | | | | construction phase. svn path=/trunk/hubbub/; revision=4430
* Put each insertion mode into its own C file, so that treebuilder.c doesn't ↵Andrew Sidwell2008-06-2312-864/+1018
| | | | | | get extremely long. svn path=/trunk/hubbub/; revision=4429
* Add a stubbed "in foreign content" state for the treebuilder.Andrew Sidwell2008-06-232-0/+2
| | | | svn path=/trunk/hubbub/; revision=4427
* Update the treebuilder so it's closer to current spec (I'm sure I've missed ↵Andrew Sidwell2008-06-233-52/+108
| | | | | | stuff). svn path=/trunk/hubbub/; revision=4426
* Add CDATA tests and the infrastructure to support them.Andrew Sidwell2008-06-192-0/+6
| | | | svn path=/trunk/hubbub/; revision=4410
* Fix assert()s, and only compile the preceding line when debugging to avoid ↵Andrew Sidwell2008-06-191-4/+8
| | | | | | warnings. svn path=/trunk/hubbub/; revision=4408
* Use assert() instead of abort() or returning NULL in code that should not be ↵Andrew Sidwell2008-06-191-24/+10
| | | | | | reached. svn path=/trunk/hubbub/; revision=4406
* Fix remaining issues with byte-by-byte tokenisation.Andrew Sidwell2008-06-191-10/+17
| | | | svn path=/trunk/hubbub/; revision=4405
* Fix entity tokenisation when data is given one byte at a time.Andrew Sidwell2008-06-181-7/+14
| | | | svn path=/trunk/hubbub/; revision=4404
* Fix remaining issues around passing the testsuite, and make sure all the ↵Andrew Sidwell2008-06-182-152/+12
| | | | | | tokeniser is tested. svn path=/trunk/hubbub/; revision=4387
* Fix a bug causing crashes on the entity test.Andrew Sidwell2008-06-181-0/+1
| | | | svn path=/trunk/hubbub/; revision=4378
* Get more tests passing.Andrew Sidwell2008-06-181-7/+96
| | | | svn path=/trunk/hubbub/; revision=4377
* Fix tokenisation of attributes.Andrew Sidwell2008-06-171-2/+2
| | | | svn path=/trunk/hubbub/; revision=4375
* Bring the "before attribute name" state in line with the spec; this with the ↵Andrew Sidwell2008-06-171-1/+1
| | | | | | previous commit means that tests 1-3 of the html5lib suite pass. svn path=/trunk/hubbub/; revision=4374
* Fix a problem with self-closing tags emitting bogus extra character tokens.Andrew Sidwell2008-06-171-0/+1
| | | | svn path=/trunk/hubbub/; revision=4372
* Fix some doctype bugs.Andrew Sidwell2008-06-171-3/+4
| | | | svn path=/trunk/hubbub/; revision=4371
* Fix up the comment states some more.Andrew Sidwell2008-06-171-31/+39
| | | | svn path=/trunk/hubbub/; revision=4370
* Fix up the comment start dash state a bit; now on the third set of tests.Andrew Sidwell2008-06-171-8/+4
| | | | svn path=/trunk/hubbub/; revision=4369
* Remove a stray printf().Andrew Sidwell2008-06-171-2/+0
| | | | svn path=/trunk/hubbub/; revision=4367
* Fix entity consumption. This gets us to the second set of html5lib tests.Andrew Sidwell2008-06-172-42/+68
| | | | svn path=/trunk/hubbub/; revision=4366
* Prevent an infinite loop; get entity matcher a tiny bit further towards ↵Andrew Sidwell2008-06-161-0/+3
| | | | | | compliance. svn path=/trunk/hubbub/; revision=4364
* Remove dead code.Andrew Sidwell2008-06-161-5/+0
| | | | svn path=/trunk/hubbub/; revision=4362
* Was a little too hasty in the previous commit-- the same thing was done ↵Andrew Sidwell2008-06-161-2/+0
| | | | | | earlier on. svn path=/trunk/hubbub/; revision=4361