Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mark the page source as loaded only after parsing is done | Anthony Ramine | 2017-01-19 | 1 | -0/+4 |
| | |||||
* | Store parser's current line when script elements are created. | karenher | 2017-01-11 | 1 | -1/+2 |
| | | | | | | Use the newly stored line as the starting line number when evaluating JS. This ensures that inline scripts will report errors with meaningful line numbers. | ||||
* | Unify text insertion when parsing HTML and XML | Anthony Ramine | 2017-01-10 | 1 | -8/+4 |
| | |||||
* | Properly insert text in document when parsing | Anthony Ramine | 2017-01-07 | 1 | -0/+6 |
| | | | | | | | If the last child of a node is a Text child and we are inserting text in that node, we need to append it to that Text child. Doing that means that HTMLStyleElement::children_changed gets called less frequently, but that's not a problem during parsing thanks to the pop hook. | ||||
* | Update xml5ever to 0.3.0 | Anthony Ramine | 2017-01-07 | 1 | -2/+7 |
| | |||||
* | Remove HeapGCValue | Anthony Ramine | 2016-12-12 | 1 | -2/+2 |
| | | | | | | It could be used to have mutable JSVal fields without GC barriers. With the removal of that trait, MutHeap and MutNullableHeap can respectively be replaced by MutJS and MutNullableJS. | ||||
* | Mark JSTraceable and its method as unsafe | Anthony Ramine | 2016-12-06 | 1 | -3/+4 |
| | |||||
* | Make Element::prefix return an Option<&DOMString> | Anthony Ramine | 2016-12-01 | 1 | -1/+1 |
| | |||||
* | Make ServoParser::pending_input hold onto a BufferQueue | Anthony Ramine | 2016-11-18 | 1 | -15/+31 |
| | |||||
* | Urlmageddon: Use refcounted urls more often. | Emilio Cobos Álvarez | 2016-11-17 | 1 | -2/+2 |
| | |||||
* | Reorganise ServoParser | Anthony Ramine | 2016-11-14 | 1 | -28/+59 |
| | | | | | | Free-standing fonctions parse_html and friends are now static methods on ServoParser, and the HTML and XML tokenizers have been moved to private submodules. | ||||
* | Update html5ever to 0.10.1 | Anthony Ramine | 2016-11-10 | 1 | -3/+2 |
| | |||||
* | Update to string-cache 0.3 | Simon Sapin | 2016-11-03 | 1 | -6/+6 |
| | |||||
* | Remove intrinsic Root::r() | Anthony Ramine | 2016-10-11 | 1 | -1/+1 |
| | |||||
* | Merge script::parse and script::dom::servoparser | Anthony Ramine | 2016-10-11 | 1 | -0/+147 |