diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /remote/doc/index.rst | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | remote/doc/index.rst | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/remote/doc/index.rst b/remote/doc/index.rst new file mode 100644 index 0000000000..d7d1265ff1 --- /dev/null +++ b/remote/doc/index.rst @@ -0,0 +1,54 @@ +=============== +Remote Protocol +=============== + +The Firefox **remote protocol** is a low-level debugging interface +you can use to inspect the state and control execution of documents +running in web content, instrument the browser in interesting ways, +simulate user interaction for automation purposes, and for subscribing +to updates in the browser such as network- or console logs. + +It complements the existing Firefox Developer Tools :ref:`Remote Debugging +Protocol <Remote Debugging Protocol>` (RDP) by implementing a subset of the +`Chrome DevTools Protocol`_ (CDP). + +.. _Chrome DevTools Protocol: https://chromedevtools.github.io/devtools-protocol/ + +.. toctree:: + :maxdepth: 1 + + Usage.md + Prefs.md + + +Internals +========= + +.. toctree:: + :maxdepth: 1 + + Building.md + Debugging.md + Testing.md + Architecture.md + Prefs.md + CodeStyle.md + PuppeteerVendor.md + Security.md + + +Bugs +==== + +Bugs are tracked under the `Remote Protocol product`_. + +.. _Remote Protocol product: https://bugzilla.mozilla.org/describecomponents.cgi?product=Remote%20Protocol + + +Communication +============= + +See `Communication`_ on `our project wiki`_. + +.. _Communication: https://wiki.mozilla.org/Remote#Communication +.. _our project wiki: https://wiki.mozilla.org/Remote |