Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replaced DOMString constructor by conversion functions. | Alan Jeffrey | 2015-11-12 | 1 | -1/+1 |
| | | | | | | Replaced DOMString(...) by DOMString::from(...). Replaced ....0 by String::from(...). Removed any uses of .to_owner() in DOMString::from("..."). | ||||
* | Make DOMString a newtype around String, rather than a typedef. | Ms2ger | 2015-11-04 | 1 | -1/+1 |
| | | | | | | | | | | This should make it somewhat easier to experiment with alternative representations in the future. To reduce churn, this commit leaves the String field public, though. Also, this will allow us to use the default String type to represent the IDL USVString type, which explicitly forbids unpaired surrogates, ans as such is a better match to the Rust String type. | ||||
* | merge from master | rohan.prinja | 2015-11-03 | 1 | -3/+3 |
|\ | |||||
| * | Remove JSTraceable implementation from RefCell. | Eli Friedman | 2015-11-02 | 1 | -3/+3 |
| | | | | | | | | | | The implementation wasn't really right, and we would rather just use DOMRefCell anyway. | ||||
* | | rearrange imports to be in alphabetical order | rohan.prinja | 2015-10-30 | 1 | -1/+1 |
| | | |||||
* | | more refactoring | rohan.prinja | 2015-10-30 | 1 | -1/+1 |
|/ | |||||
* | Update URL-related interfaces and their tests up to spec | Anthony Ramine | 2015-10-19 | 1 | -21/+21 |
| | | | | | | | | | The URL spec recently changed and the variour "mixins" interfaces are gone, this commit updates our code and WPT accordingly. The new expected failures related to HTMLAnchorElement and HTMLAreaElement's attributes are due to their moving to the HTMLHyperLinkElementUtils interface, which is not anymore in a separate <script class=untested> element. | ||||
* | Fix reported test-tidy errors for unmerged import blocks | Brandon Fairchild | 2015-09-19 | 1 | -4/+2 |
| | | | | This merges import blocks that were reported by tidy as unmerged. | ||||
* | Implement setters in URLUtils | Anthony Ramine | 2015-08-30 | 1 | -21/+84 |
| | |||||
* | Make the traits for the IDL interfaces take &self | Anthony Ramine | 2015-08-27 | 1 | -12/+12 |
| | |||||
* | make dom_struct derive HeapSizeOf, | João Oliveira | 2015-08-27 | 1 | -1/+0 |
| | | | | closes #7357 | ||||
* | sort all uses | Johann Tuffe | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Cleanup NodeIterator, Range, ServoHTMLParser, TextEncoder, URLHelper, URL, ↵ | Manish Goregaokar | 2015-08-18 | 1 | -1/+1 |
| | | | | VirtualMethods | ||||
* | Measure heap memory usage for more types. Fixes #6951 | Bogdan Cuza | 2015-08-13 | 1 | -0/+1 |
| | |||||
* | Implement URL and trivially missing URLUtils members | Anthony Ramine | 2015-06-20 | 1 | -0/+150 |
Fixes #6322. |