Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Set query to None when no search params | CYBAI | 2019-01-10 | 1 | -4/+9 |
| | |||||
* | Implement URL's toJSON() | CYBAI | 2018-12-24 | 1 | -0/+5 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Update uuid | Bastien Orivel | 2018-11-09 | 1 | -1/+1 |
| | |||||
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | Manually format remaining problems | Pyfisch | 2018-11-06 | 1 | -6/+3 |
| | | | | | | | | | Use line comments instead of block comments as block comments contain trailing whitespace after formatting with rustfmt. Skip tests for malloc_size_of and script_plugins with rustfmt as they have many block comments. | ||||
* | Format remaining files | Pyfisch | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -10/+10 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -18/+26 |
| | |||||
* | Implements profiler for blocked recv | Nakul Jindal | 2018-03-22 | 1 | -2/+2 |
| | |||||
* | Remove use of unstable box syntax. | Simon Sapin | 2017-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax. | ||||
* | Rename Root<T> to DomRoot<T> | Anthony Ramine | 2017-09-26 | 1 | -4/+4 |
| | | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned. | ||||
* | Rename DOMRefCell<T> to DomRefCell<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | | | | | | | | I don't want to do such a gratuitous rename, but with all the other types now having "Dom" as part of their name, and especially with "DomOnceCell", I feel like the other cell type that we already have should also follow the convention. That argument loses weight though when we realise there is still DOMString and other things. | ||||
* | Rename MutNullableJS<T> to MutNullableDom<T> | Anthony Ramine | 2017-09-26 | 1 | -2/+2 |
| | |||||
* | Rename dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10) | Simon Sapin | 2017-08-15 | 1 | -2/+2 |
| | |||||
* | Remove some useless Option<T> wrappers from ServoUrl methods | Anthony Ramine | 2017-03-26 | 1 | -3/+2 |
| | |||||
* | Make ServoUrl::as_url return a &Url | Anthony Ramine | 2017-03-23 | 1 | -1/+1 |
| | |||||
* | Remove support for Blob::{close, isClosed} | Charles Vandevoorde | 2017-02-28 | 1 | -11/+1 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Remove unused part of the return value of parse_blob_url(). | Ms2ger | 2017-01-30 | 1 | -1/+1 |
| | |||||
* | 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. | ||||
* | Rename `Reflectable` to `DomObject`. | Corey Farwell | 2016-12-08 | 1 | -1/+1 |
| | | | | Fixes https://github.com/servo/servo/issues/8473. | ||||
* | Urlmageddon: Use refcounted urls more often. | Emilio Cobos Álvarez | 2016-11-17 | 1 | -12/+13 |
| | |||||
* | Remove URL.domainToASCII and URL.domainToUnicode | Mathieu Rheaume | 2016-10-25 | 1 | -20/+1 |
| | |||||
* | Rename Reflectable::global_scope to global | Anthony Ramine | 2016-10-06 | 1 | -1/+1 |
| | |||||
* | Pass a &GlobalScope to WebIDL static methods and constructors | Anthony Ramine | 2016-10-06 | 1 | -11/+9 |
| | |||||
* | Introduce GlobalScope::resource_threads | Anthony Ramine | 2016-10-06 | 1 | -2/+3 |
| | |||||
* | Introduce GlobalScope::get_url | Anthony Ramine | 2016-10-06 | 1 | -2/+2 |
| | |||||
* | Introduce Reflectable::global_scope | Anthony Ramine | 2016-10-06 | 1 | -1/+1 |
| | |||||
* | Make reflect_dom_object take a &GlobalScope | Anthony Ramine | 2016-10-06 | 1 | -3/+6 |
| | |||||
* | Reorder `use` statements | UK992 | 2016-09-09 | 1 | -2/+2 |
| | |||||
* | Burn SelectedFileId in fire | Zhen Zhang | 2016-08-22 | 1 | -6/+5 |
| | |||||
* | Add cancellability to file manager load and related refactoring | Zhen Zhang | 2016-08-02 | 1 | -3/+3 |
| | |||||
* | Put Blob URL online | Zhen Zhang | 2016-07-15 | 1 | -17/+5 |
| | |||||
* | Add FileID validity setting/checking logic to Blob URL implementation | Zhen Zhang | 2016-07-11 | 1 | -5/+4 |
| | |||||
* | Spawn threads for requests in file manager and other style fixes | Zhen Zhang | 2016-07-08 | 1 | -11/+11 |
| | |||||
* | Integration and improvements of File API backends | Zhen Zhang | 2016-07-04 | 1 | -32/+8 |
| | | | | | | 1. More complete origin check in FileManagerThreadMsg 2. Add reference counting logic to file manage store and script API 3. Integrate the support of slicing | ||||
* | Fix Blob URL origin when scheme is file | Zhen Zhang | 2016-07-03 | 1 | -1/+14 |
| | |||||
* | Implement Blob URL's DOM interfaces | Zhen Zhang | 2016-06-17 | 1 | -0/+91 |
| | |||||
* | Implement URL.domainToUnicode | Achal Shah | 2016-06-06 | 1 | -0/+5 |
| | |||||
* | Move DOMString back to script | Anthony Ramine | 2016-05-24 | 1 | -2/+1 |
| | | | | This entirely removes the 'non-geckolib' feature of the util crate. | ||||
* | Reset searchParam in URL.href setter | Simon Sapin | 2016-04-23 | 1 | -0/+1 |
| | | | | https://github.com/whatwg/url/issues/117 | ||||
* | Correctly initialize URL.searchParams | Simon Sapin | 2016-04-23 | 1 | -0/+4 |
| | |||||
* | Upgrade to rust-url 1.0 and hyper 0.9 | Simon Sapin | 2016-04-23 | 1 | -15/+10 |
| | |||||
* | Remove URL.base (it was removed from the spec) | Stjepan Glavina | 2016-04-06 | 1 | -24/+18 |
| | | | | Spec: https://url.spec.whatwg.org/#concept-url-url | ||||
* | Implement URL.searchParams | Stjepan Glavina | 2016-04-05 | 1 | -4/+27 |
| | | | | Spec: https://url.spec.whatwg.org/#dom-url-searchparams | ||||
* | add origin to location and url api | Chandler Abraham | 2016-01-21 | 1 | -0/+5 |
| | |||||
* | 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. |