aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/textdecoder.rs
Commit message (Expand)AuthorAgeFilesLines
* script: Limit public exports. (#34915)Josh Matthews2025-01-101-1/+1
* Generate a trait abstracting over all known DOM interfaces (#34357)Josh Matthews2024-11-241-1/+1
* script: Include constructors and static methods in generated DOM traits (#33665)Josh Matthews2024-10-081-3/+3
* Start marking functions that can transitively trigger a GC (#33144)Josh Matthews2024-08-221-0/+5
* clippy: Fix redundant field names warnings (#31793)Oluwatobi Sofela2024-03-201-3/+3
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-5/+7
* No tracing of nop traceable fields (#29926)Samson2023-08-041-0/+2
* Rename reflect_dom_object2.Josh Matthews2023-05-311-2/+2
* Support arbitrary protos when wrapping DOM objects with constructors.Josh Matthews2023-05-281-3/+8
* Add trait DomObjectWrap to provide WRAP functionYUAN LYU2020-03-201-1/+0
* Modify `script` to prevent further violations of snake_caseKunal Mohan2020-01-181-0/+2
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
* Reorder importsPyfisch2018-11-061-2/+4
* `cargo fix --edition`Simon Sapin2018-11-061-8/+8
* Format script componentchansuke2018-09-191-25/+47
* TextDecoder: streaming decode, ignoreBOMAndrew Shu2018-03-261-23/+74
* Update mozjs.Emilio Cobos Álvarez2018-03-251-2/+2
* TextDecoder's Decode now receives a BufferSource as inputChristian Poveda2018-03-241-27/+25
* Upgrade to rustc 1.23.0-nightly (02004ef78 2017-11-08)Simon Sapin2017-11-091-1/+0
* Replace rust-encoding with encoding-rsSimon Sapin2017-11-011-25/+15
* Replace all uses of the `heapsize` crate with `malloc_size_of`.Nicholas Nethercote2017-10-181-1/+1
* Fix commonmark Markdown warnings in docs, part 1Matt Brubeck2017-10-171-1/+1
* Remove use of unstable box syntax.Simon Sapin2017-10-161-1/+1
* Rename Root<T> to DomRoot<T>Anthony Ramine2017-09-261-4/+4
* Rename dom::bindings::js to dom::bindings::rootAnthony Ramine2017-09-261-1/+1
* Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-0/+1
* Use typed array API in TextDecoder::DecodeRoman Zaynetdinov2016-12-271-5/+5
* script creates methods taking '*mut JSContext' unsafeAbelardo E. Mendoza2016-11-141-2/+2
* Pass a &GlobalScope to WebIDL static methods and constructorsAnthony Ramine2016-10-061-3/+2
* Make reflect_dom_object take a &GlobalScopeAnthony Ramine2016-10-061-2/+3
* Move DOMString back to scriptAnthony Ramine2016-05-241-2/+1
* Removed unused importsPer Lundberg2016-05-151-2/+0
* conversion: Extrapolate array_buffer_view_dataEmilio Cobos Álvarez2016-01-041-11/+9
* Replaced DOMString constructor by conversion functions.Alan Jeffrey2015-11-121-1/+1
* Make DOMString a newtype around String, rather than a typedef.Ms2ger2015-11-041-1/+1
* rearrange imports to be in alphabetical orderrohan.prinja2015-10-301-1/+1
* more refactoringrohan.prinja2015-10-301-1/+1
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-3/+2
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-4/+1
* Make the traits for the IDL interfaces take &selfAnthony Ramine2015-08-271-4/+4
* make dom_struct derive HeapSizeOf,João Oliveira2015-08-271-1/+0
* sort all usesJohann Tuffe2015-08-201-2/+2
* Measure heap memory usage for more types. Fixes #6951Bogdan Cuza2015-08-131-0/+2
* Add spec linksBogdan Cuza2015-07-281-1/+3
* Upgrade to SM 39Michael Wu2015-06-191-8/+8
* Throw RangeErrors in TextEncoder/TextDecoder constructors.Aneesh Agrawal2015-04-141-3/+16
* Implement TextDecoder#decode.Keith Yeung2015-04-081-1/+35
* Implement TextDecoder (fixes #4769).Keith Yeung2015-04-081-0/+65