Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | 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. |