aboutsummaryrefslogtreecommitdiffstats
path: root/components/devtools/actors/object.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update rustfmt to the 2024 style edition (#35764)Simon Wülker2025-03-031-1/+1
| | | | | | | | | | | | | * Use 2024 style edition Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> * Reformat all code Signed-off-by: Simon Wülker <simon.wuelker@arcor.de> --------- Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
* Fix warnings after latest rust upgrade (#33043)Martin Robinson2024-08-141-2/+2
| | | | | | | This fixes various unused code warnings after the recent rust upgrade. Some of the dead code is maintained, as it is quite likely that it will be used in future changes. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* DevTools: Display console messages and errors (#32727)eri2024-07-091-0/+1
| | | | | | | | | | | | | | | | | * feat: add streams to browsing context * feat: console now works! * feat: order console messages * feat: add streams to new browsing contexts * fix: apply suggestions Co-authored-by: Martin Robinson <mrobinson@igalia.com> --------- Co-authored-by: Martin Robinson <mrobinson@igalia.com>
* clippy: Fix several warnings in components/devtools (#31501)eri2024-03-051-1/+1
|
* Strict import formatting (grouping and granularity) (#30325)Samson2023-09-111-2/+4
| | | | | * strict imports formatting * Reformat all imports
* devtools: Track multiple clients better, and cleanup streams when a client ↵Josh Matthews2020-08-061-0/+2
| | | | isn't reachable.
* Update MPL license to https (part 4)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-1/+1
|
* Format components devtools and devtools_traits #21373kingdido9992018-09-021-5/+7
|
* Remove usage of unstable box syntax, except in the script crateSimon Sapin2017-10-121-1/+1
| | | | | … because there’s a lot of it, and script still uses any other unstable features anyway.
* Update serde to 0.9 (fixes #15325)Anthony Ramine2017-02-181-3/+2
|
* Use serde in devtoolsAnthony Ramine2016-03-311-2/+3
|
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-1/+1
|
* Actor::handle_message should return an enum instad of a boolean #7110 r=jdmFabrice Desré2015-08-131-3/+3
|
* Closes #6724 (Allows object evaluation in devtools)Harrison G2015-08-091-0/+44
The purpose of this is to fix how objects were previously evaluated in the developer tools. - Before this, evaluating an object such as the `window` would `panic!` - After this, evaluating an object such as the `window` outputs `[object Window]` A few things to note: - This commit contains `unsafe` code. - This does not contain a test because the developer tools cannot be properly tested until #5971 lands.