Josh Matthews
f4915ef6c9
devtools: Track multiple clients better, and cleanup streams when a client isn't reachable.
2020-08-06 09:55:01 -04:00
Josh Matthews
0b619bf920
devtools: Don't panic when sending to a disconnected client fails.
2020-08-05 14:55:48 -04:00
mustafapc19
d8b6755a8d
Console.Clear implemented
2020-07-29 22:19:18 +05:30
Josh Matthews
b53ce5c79a
Ignore eager JS evaluation in devtools.
2020-04-28 15:40:02 -04:00
Josh Matthews
b9bf9f873b
Move some console-related message types into the console code.
2020-04-28 11:07:45 -04:00
Josh Matthews
565e9432c6
Support connecting to worker globals from remote devtools.
2020-04-28 11:07:45 -04:00
Josh Matthews
bce4ec5b70
Support clearing cached events in console actor.
2020-04-26 18:11:23 -04:00
Josh Matthews
7c48644cad
Support navigating browsing contexts in the devtools.
...
Break the association between pipelines and browsing context actors.
Now there is one browsing context actor per actual browsing context,
and individual actors keep track of known pipelines as necessary.
There is also one console/performance/timeline/inspector/etc. actor
per browsing context.
This also centralizes more information in the browsing context actor.
Rather than duplicating state for the active pipeline in actors that
need to use it, each actor now remembers the name of its associated
browsing context actor and obtains that state whenever it's necessary.
2020-04-26 18:11:23 -04:00
Josh Matthews
84074d3c86
Update devtools server for Firefox 71.
2019-12-13 17:02:35 -05:00
Paul Rouget
b3b886e837
devtools: save and send cached messages
2019-12-06 10:10:43 +01:00
codehag
8d8f48242a
Introduce EvaluateJSAsync method and evaluationResponse event
2019-05-07 18:16:04 +02:00
Jan Andre Ikenmeyer
1d6fe65401
Update MPL license to https (part 4)
2018-11-19 14:47:27 +01:00
Pyfisch
9e92eb205a
Reorder imports
2018-11-06 22:35:07 +01:00
Pyfisch
cb07debcb6
Format remaining files
2018-11-06 22:30:31 +01:00
Simon Sapin
76e59a46d3
Sort use
statements
2018-11-06 15:26:02 +01:00
Simon Sapin
45f7199eee
cargo fix --edition
2018-11-06 15:26:02 +01:00
kingdido999
ad822b74c7
Format components devtools and devtools_traits #21373
2018-09-02 20:29:47 +08:00
Bastien Orivel
29b4eec141
Bump bitflags to 1.0 in every servo crate
2017-10-30 23:36:06 +01:00
Gecko Backout
11c64178d8
Backed out changeset e64e659c077d: servo PR #18809 and revendor for reftest failures, e.g. in layout/reftests/bugs/392435-1.html. r=backout on a CLOSED TREE
...
Backs out https://github.com/servo/servo/pull/18809
2017-10-19 21:26:51 +00:00
Bastien Orivel
e8e2d0a4b2
Update bitflags to 1.0 in every servo crate
...
It still needs dependencies update to remove all the other bitflags
versions.
2017-10-19 15:01:17 +02:00
Simon Sapin
316cd35767
Untry
2017-06-18 13:21:51 +02:00
Anthony Ramine
fe3f4ff0c2
Update serde to 0.9 ( fixes #15325 )
2017-02-18 21:09:46 +01:00
UK992
93a103ba73
Reorder use
statements
2016-09-09 04:55:19 +02:00
Anthony Ramine
7ad51dcd7a
Update serde to 0.8 ( fixes #12659 )
2016-08-12 18:37:27 +02:00
Manish Goregaokar
48257ef282
Use debug instead of println in devtools
2016-05-27 15:09:26 +05:30
Anthony Ramine
406273c641
Use serde in devtools
2016-03-31 11:07:18 +02:00
Anthony Ramine
04e085a4e5
Add a dummy reconfigure reply in the thread actor
2016-03-24 10:28:28 +01:00
Florian Strübe
6502820ab3
Removed unused imports from devtools crate
2016-01-17 13:18:15 +01:00
Ravi Shankar
889eec364b
sorted the extern crate, mod & use declarations
2015-09-24 02:12:45 +05:30
Brandon Fairchild
de3547e401
Fix reported test-tidy errors for unmerged import blocks
...
This merges import blocks that were reported by tidy as unmerged.
2015-09-19 12:50:14 -04:00
Ms2ger
1257a33394
Stop calling to_string() in devtools.
2015-09-02 19:51:22 +02:00
Eli Friedman
5215b51b55
Simplify reflection usage in Actor code.
...
The fixed version is shorter, and doesn't use unstable features.
2015-08-31 18:45:07 -07:00
Johann Tuffe
ec07178b6f
sort all uses
2015-08-20 20:47:12 +08:00
Fabrice Desré
c7b48240b0
Actor::handle_message should return an enum instad of a boolean #7110 r=jdm
2015-08-13 18:14:34 -07:00
Harrison G
e0f007a940
Closes #6724 (Allows object evaluation in devtools)
...
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.
2015-08-09 11:45:16 -04:00
Patrick Walton
164e10202c
devtools: Convert the developer tools to run over IPC.
2015-07-27 09:10:01 -07:00
Josh Matthews
81c0d32a04
Make cached messages appear in FF's devtools.
2015-07-03 09:22:47 -04:00
Manish Goregaokar
86add71b4c
Audit and reduce unstable usage in devtools
...
Reasons behind existing unstable features:
core:
- `Reflect` / `Any` stuff
2015-06-10 00:14:39 +05:30
Tamir Duberstein
b5f74eb54c
Implemented GetCachedMessages
2015-05-26 10:04:31 -04:00
Corey Farwell
8e3f4bba85
Reduce max line length from 150 to 120 characters
...
Part of https://github.com/servo/servo/issues/6041
2015-05-24 00:01:49 -04:00
Ms2ger
422b6bd223
Fix comments in devtools.
...
In particular, use the right kind of documentation comments.
2015-05-14 13:10:40 +02:00
Simon Sapin
ef8edd4e87
Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.
2015-05-05 10:07:34 -04:00
Josh Matthews
6328946434
Remove int/uint from devtools/devtools_traits.
2015-04-06 10:14:57 -04:00
Ms2ger
638ce20e6f
Move devtools to std::net ( fixes #5355 ).
2015-03-25 14:40:21 +01:00
Corey Farwell
2764ec0f7b
Make Actor::handle_message take &str instead of &String
...
Fixes #5305
2015-03-21 20:56:14 -04:00
Ms2ger
ba87666cdb
Update some code that's feature-gated under core.
2015-03-21 18:44:39 +01:00
Ms2ger
aaed4a54c7
Use rustc-serialize rather than the built-in deprecated serialize.
2015-02-17 13:24:15 +01:00
Ruud van Asseldonk
6c1d62f911
Import EvaluateJS variants directly.
2015-02-13 15:55:47 +01:00
Ruud van Asseldonk
0fbfb8cffc
Do not glob-export EvaluateJSReply variants.
...
This closes #4921 .
2015-02-13 14:59:50 +01:00
Ruud van Asseldonk
6ff3a5a3c1
Do not glob-export DevtoolScriptControlMsg variants.
2015-02-13 14:51:10 +01:00