Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove some useless Option<T> wrappers from ServoUrl methods | Anthony Ramine | 2017-03-26 | 1 | -27/+9 |
| | |||||
* | Make ServoUrl::as_url return a &Url | Anthony Ramine | 2017-03-23 | 1 | -11/+11 |
| | |||||
* | Fix some warnings. | Ms2ger | 2017-01-10 | 1 | -3/+0 |
| | |||||
* | Initial work on job queues for service workers | Rahul Sharma | 2016-11-22 | 1 | -0/+14 |
| | |||||
* | Urlmageddon: Use refcounted urls more often. | Emilio Cobos Álvarez | 2016-11-17 | 1 | -22/+83 |
| | |||||
* | Made fixes for PR. | Arthur Marble | 2016-09-18 | 1 | -21/+21 |
| | |||||
* | Most of the code refactoring needed to be done is done with this commit. | Arthur Marble | 2016-09-18 | 1 | -21/+21 |
| | |||||
* | Upgrade to rust-url 1.0 and hyper 0.9 | Simon Sapin | 2016-04-23 | 1 | -157/+22 |
| | |||||
* | Implement HTMLHyperlinkElementUtils for HTMLAnchorElement | Jaydeep | 2016-03-24 | 1 | -0/+5 |
| | |||||
* | add origin to location and url api | Chandler Abraham | 2016-01-21 | 1 | -1/+29 |
| | |||||
* | Update URL-related interfaces and their tests up to spec | Anthony Ramine | 2015-10-19 | 1 | -19/+0 |
| | | | | | | | | | 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. | ||||
* | sorted the extern crate, mod & use declarations | Ravi Shankar | 2015-09-24 | 1 | -1/+1 |
| | |||||
* | Fix reported test-tidy errors for unmerged import blocks | Brandon Fairchild | 2015-09-19 | 1 | -5/+2 |
| | | | | This merges import blocks that were reported by tidy as unmerged. | ||||
* | Implement setters in URLUtils | Anthony Ramine | 2015-08-30 | 1 | -2/+57 |
| | |||||
* | 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 | -14/+57 |
| | | | | Fixes #6322. | ||||
* | Remove as_slice() calls from script. | Ms2ger | 2015-04-26 | 1 | -2/+2 |
| | |||||
* | Add/update comments with links to spec | Corey Farwell | 2015-04-14 | 1 | -2/+5 |
| | | | | | | | | | | Extracted out of #5649 * add more hyperlinks to associated specification for structs/methods * follow redirects and update links * replace broken links * removal of WHATWG multipage page name since the page name is not guaranteed to be stable | ||||
* | Update some URLs. | Ms2ger | 2015-04-14 | 1 | -1/+1 |
| | | | | | The HTML spec's division into pages is not stable, so it is safer to use the URL without a specific page (which will redirect). | ||||
* | add readonly pathname function in location | yodalee | 2015-04-04 | 1 | -1/+10 |
| | | | | | pathname function implemented in UrlHelper 'url is null' check is skip for now | ||||
* | Use USVString for URLUtils and URLUtilsReadOnly. | Ms2ger | 2015-03-13 | 1 | -9/+10 |
| | |||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -1/+1 |
| | | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there. | ||||
* | Move to to_owned rather than into_string. | Ms2ger | 2015-01-20 | 1 | -4/+6 |
| | | | | into_string has been removed from Rust. | ||||
* | script: to_string() -> into_string() | Manish Goregaokar | 2014-12-27 | 1 | -4/+4 |
| | |||||
* | Add contentDocument support for HTMLIFrameElement. Fixes #3808. | Tomasz Kołodziejski | 2014-11-13 | 1 | -0/+14 |
| | |||||
* | Upgrade to rustc d2b30f7d3 2014-09-23 | Simon Sapin | 2014-09-29 | 1 | -2/+2 |
| | |||||
* | Share code between Navigator and WorkerNavigator | Gilles Leblanc | 2014-09-20 | 1 | -0/+30 |
Also shares code between Location and WorkerLocation. This has been done by introducing NavigatorInfo and UrlHelper. Fixes #3159 |