Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Script: removed a few opts::get() | oneturkmen | 2019-06-26 | 1 | -3/+3 |
| | |||||
* | Added missing NavigatorId attributes | Alan Jeffrey | 2019-06-11 | 1 | -0/+12 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -1/+1 |
| | |||||
* | First step toward iOS Support | Jonathan Jayet | 2017-08-23 | 1 | -0/+5 |
| | |||||
* | Removed util. | Alan Jeffrey | 2016-12-14 | 1 | -1/+1 |
| | |||||
* | Move DOMString back to script | Anthony Ramine | 2016-05-24 | 1 | -1/+1 |
| | | | | This entirely removes the 'non-geckolib' feature of the util crate. | ||||
* | implements NavigatorLanguage | Rahul Sharma | 2016-03-17 | 1 | -0/+4 |
| | |||||
* | Replaced DOMString constructor by conversion functions. | Alan Jeffrey | 2015-11-12 | 1 | -9/+8 |
| | | | | | | 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 | -8/+8 |
| | | | | | | | | | | 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. | ||||
* | implement navigator.platform | Paul Rouget | 2015-09-29 | 1 | -1/+12 |
| | |||||
* | Fix reported test-tidy errors for unmerged import blocks | Brandon Fairchild | 2015-09-19 | 1 | -2/+1 |
| | | | | This merges import blocks that were reported by tidy as unmerged. | ||||
* | sort all uses | Johann Tuffe | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Add a simple method to emulate a platform UA (e.g. pretend a desktop build ↵ | Glenn Watson | 2015-08-18 | 1 | -4/+1 |
| | | | | is an android UA). | ||||
* | Implement Navigator.appVersion(#5409) | Deokjin Kim | 2015-04-01 | 1 | -0/+4 |
| | |||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -2/+2 |
| | | | | | | | | 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 | -5/+7 |
| | | | | into_string has been removed from Rust. | ||||
* | Remove the NavigatorInfo struct. | Ms2ger | 2015-01-09 | 1 | -23/+19 |
| | | | | It serves no purpose. | ||||
* | script: to_string() -> into_string() | Manish Goregaokar | 2014-12-27 | 1 | -5/+5 |
| | |||||
* | Expose user agent option to DOM navigator interface. | Glenn Watson | 2014-10-13 | 1 | -0/+8 |
| | |||||
* | Share code between Navigator and WorkerNavigator | Gilles Leblanc | 2014-09-20 | 1 | -0/+29 |
Also shares code between Location and WorkerLocation. This has been done by introducing NavigatorInfo and UrlHelper. Fixes #3159 |