aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/navigatorinfo.rs
Commit message (Collapse)AuthorAgeFilesLines
* Script: removed a few opts::get()oneturkmen2019-06-261-3/+3
|
* Added missing NavigatorId attributesAlan Jeffrey2019-06-111-0/+12
|
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-1/+1
|
* First step toward iOS SupportJonathan Jayet2017-08-231-0/+5
|
* Removed util.Alan Jeffrey2016-12-141-1/+1
|
* Move DOMString back to scriptAnthony Ramine2016-05-241-1/+1
| | | | This entirely removes the 'non-geckolib' feature of the util crate.
* implements NavigatorLanguageRahul Sharma2016-03-171-0/+4
|
* Replaced DOMString constructor by conversion functions.Alan Jeffrey2015-11-121-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.Ms2ger2015-11-041-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.platformPaul Rouget2015-09-291-1/+12
|
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-2/+1
| | | | This merges import blocks that were reported by tidy as unmerged.
* sort all usesJohann Tuffe2015-08-201-1/+1
|
* Add a simple method to emulate a platform UA (e.g. pretend a desktop build ↵Glenn Watson2015-08-181-4/+1
| | | | is an android UA).
* Implement Navigator.appVersion(#5409)Deokjin Kim2015-04-011-0/+4
|
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-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.Ms2ger2015-01-201-5/+7
| | | | into_string has been removed from Rust.
* Remove the NavigatorInfo struct.Ms2ger2015-01-091-23/+19
| | | | It serves no purpose.
* script: to_string() -> into_string()Manish Goregaokar2014-12-271-5/+5
|
* Expose user agent option to DOM navigator interface.Glenn Watson2014-10-131-0/+8
|
* Share code between Navigator and WorkerNavigatorGilles Leblanc2014-09-201-0/+29
Also shares code between Location and WorkerLocation. This has been done by introducing NavigatorInfo and UrlHelper. Fixes #3159