Граф коммитов

3367 Коммитов

Автор SHA1 Сообщение Дата
Alexandre Poirot 5ce7bb5816 Bug 1599037 - Fix RootActor.listRemoteFrames against non-browser windows. r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D54465

--HG--
extra : moz-landing-system : lando
2019-11-28 09:53:16 +00:00
Emilio Cobos Álvarez 06bd8b4c06 Bug 1598944 - Allow to paste innerHTML in fragments. r=jdescottes
No reason not to.

Differential Revision: https://phabricator.services.mozilla.com/D55098

--HG--
extra : moz-landing-system : lando
2019-11-28 14:39:55 +00:00
jaril 658cf442ca Bug 1599221 - Fixed promoting and demoting of object actors with watchpoints r=jlast
Differential Revision: https://phabricator.services.mozilla.com/D54955

--HG--
extra : moz-landing-system : lando
2019-11-27 22:32:05 +00:00
Nazım Can Altınova 3817d21f33 Bug 1590706 - Part 2: Update devtools and popup panels to include BrowsingContext IDs. r=gregtatum
Differential Revision: https://phabricator.services.mozilla.com/D54145

--HG--
extra : moz-landing-system : lando
2019-11-27 14:27:48 +00:00
Mihai Alexandru Michis 096946a25f Backed out 2 changesets (bug 1590706) for causing bustages in gtest/GeckoProfiler.cpp CLOSED TREE
Backed out changeset c98daf6c7687 (bug 1590706)
Backed out changeset 4c2af658ce76 (bug 1590706)
2019-11-27 15:42:55 +02:00
Nazım Can Altınova 993e44188b Bug 1590706 - Part 2: Update devtools and popup panels to include BrowsingContext IDs. r=gregtatum
Differential Revision: https://phabricator.services.mozilla.com/D54145

--HG--
extra : moz-landing-system : lando
2019-11-27 12:56:00 +00:00
Yura Zenevich b7e64c314b Bug 1598060 - removing walker actor/front passing as an argument where not necessary. r=rcaliman
Differential Revision: https://phabricator.services.mozilla.com/D54339

--HG--
extra : moz-landing-system : lando
2019-11-26 19:03:01 +00:00
Michael Ratcliffe 135486b4d9 Bug 1594810 - Remove DevTools support for IndexedDB persistent storage r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D52564

--HG--
extra : moz-landing-system : lando
2019-11-23 23:30:36 +00:00
Yura Zenevich 767d25addb Bug 1598667 - hide box model highlighter from a11y tree. r=rcaliman
Differential Revision: https://phabricator.services.mozilla.com/D54310

--HG--
extra : moz-landing-system : lando
2019-11-26 00:28:03 +00:00
Yura Zenevich 16ad43e850 Bug 1598404 - remove accessible-destroy event and make the way accessible walker actor manages accessible actors more consistent with the inspector walker and node actors. r=nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D54333

--HG--
extra : moz-landing-system : lando
2019-11-25 15:47:38 +00:00
Alexandre Poirot 59f821be92 Bug 1598364 - Re-register DOMWindowCreated listeners when reloading browser.xhtml. r=jdescottes
In the context of the browser toolbox, the ParentProcessTarget Actor watches
all top level window's docshells. But as it registers DOMWindowCreated/pageshow/pagehide
listeners against the docshell's window (because there is no parent chromeEventListener),
it has to ensure re-registering these listeners on navigation.

Differential Revision: https://phabricator.services.mozilla.com/D54193

--HG--
extra : moz-landing-system : lando
2019-11-22 10:18:22 +00:00
Bianca Danforth c71a7e9564 Bug 1573201 - Add limited write support for extension storage.local data in addon debugger r=miker,rpl
* Update the extensionStorage actor to enable some writing to extension storage.local through the Storage panel client.
* All values in the client are displayed as strings, so the actor must stringify them before sending them to the client and parse them when receiving changes from the client. For this reason, there is currently limited write support.
  * Item values that are JSONifiable (numbers, strings, booleans, object literals, arrays and null) can be edited from the Storage panel.
    * Object literals and arrays are only editable if their values are JSONifiable, with a maximum nested depth of 2 (e.g. an object with a nested object is editable, provided the nested object contains only primitive values). Object literals' keys must also be strings to be editable.
  * Non-JSONifiable values cannot be edited, and will be represented by "{}" in most cases in the panel, though some non-JSONifiable values (undefined, Date, and BigInt) will be displayed as more readable strings.
  * Some modifications are a little more complex, requiring an IndexedDB transaction. This will be handled in a separate patch.
    * Item names cannot be edited from the Storage panel.
    * New items cannot be added from the Storage panel.
  * Any item can be removed.
  * All items can be removed at once.
* In-line comments referencing Bugs 1542038 and 1542039 indicate places where the implementation may differ for local storage versus the other storage areas in the actor.
* The parseItemValue method used in the client was moved to a shared directory, so that the actor could parse string values from the client in its editItem method.

Differential Revision: https://phabricator.services.mozilla.com/D34416

--HG--
rename : devtools/client/shared/vendor/JSON5_LICENSE => devtools/shared/storage/vendor/JSON5_LICENSE
rename : devtools/client/shared/vendor/JSON5_UPGRADING.md => devtools/shared/storage/vendor/JSON5_UPGRADING.md
rename : devtools/client/shared/vendor/json5.js => devtools/shared/storage/vendor/json5.js
rename : devtools/client/shared/vendor/stringvalidator/UPDATING.md => devtools/shared/storage/vendor/stringvalidator/UPDATING.md
rename : devtools/client/shared/vendor/stringvalidator/moz.build => devtools/shared/storage/vendor/stringvalidator/moz.build
rename : devtools/client/shared/vendor/stringvalidator/tests/unit/head_stringvalidator.js => devtools/shared/storage/vendor/stringvalidator/tests/unit/head_stringvalidator.js
rename : devtools/client/shared/vendor/stringvalidator/tests/unit/test_sanitizers.js => devtools/shared/storage/vendor/stringvalidator/tests/unit/test_sanitizers.js
rename : devtools/client/shared/vendor/stringvalidator/tests/unit/test_validators.js => devtools/shared/storage/vendor/stringvalidator/tests/unit/test_validators.js
rename : devtools/client/shared/vendor/stringvalidator/tests/unit/xpcshell.ini => devtools/shared/storage/vendor/stringvalidator/tests/unit/xpcshell.ini
rename : devtools/client/shared/vendor/stringvalidator/util/assert.js => devtools/shared/storage/vendor/stringvalidator/util/assert.js
rename : devtools/client/shared/vendor/stringvalidator/util/moz.build => devtools/shared/storage/vendor/stringvalidator/util/moz.build
rename : devtools/client/shared/vendor/stringvalidator/validator.js => devtools/shared/storage/vendor/stringvalidator/validator.js
extra : moz-landing-system : lando
2019-11-22 20:09:59 +00:00
Nicolas Chevobbe ed982614a2 Bug 1326182 - Send all the console.table items in the console message. r=Honza.
This allows us to not have to reach for the server
again from the client to get all the data we need
to render the table.

We still need to keep the old function to handle
connections to older servers. We'll use Bug 1597955
in Firefox 74 to clean the bits we don't need anymore.

A test is added to ensure the bug is fixed and we don't
regress; stubs are updated.

Differential Revision: https://phabricator.services.mozilla.com/D53962

--HG--
extra : moz-landing-system : lando
2019-11-22 09:48:58 +00:00
Geoff Lankow fa730a61a7 Bug 1597906 - Fix test_extension_storage_actor.js to work with e10s disabled. r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D54056

--HG--
extra : moz-landing-system : lando
2019-11-21 21:39:16 +00:00
Jason Laster 5ac14e224d Bug 1598174 - Fix skipBreakpoints is undefined error in tests. r=bhackett
Differential Revision: https://phabricator.services.mozilla.com/D54064

--HG--
extra : moz-landing-system : lando
2019-11-21 16:17:28 +00:00
Ehsan Akhgari e580bb5d66 Bug 1505917 - Only consider a resource as a tracker if we would be blocking its load from the network in strict content blocking mode; r=Honza
Differential Revision: https://phabricator.services.mozilla.com/D54029

--HG--
extra : moz-landing-system : lando
2019-11-21 09:45:13 +00:00
Alexandre Poirot 19058de285 Bug 1590401 - Refactor Front.onFront+onFrontDestroyed into Front.watchFronts. r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D53881

--HG--
rename : devtools/server/tests/unit/test_protocol_onFront.js => devtools/server/tests/unit/test_protocol_watchFronts.js
extra : moz-landing-system : lando
2019-11-20 17:13:01 +00:00
Brad Werth f6f97abc9b Bug 1391994 Part 2: Use the new SetAttributeDevtools methods in callsites where devtools modifies a node it hasn't just created. r=bzbarsky
Differential Revision: https://phabricator.services.mozilla.com/D41319

--HG--
extra : moz-landing-system : lando
2019-11-20 22:50:37 +00:00
wartmanm d30d028c18 Bug 1478665 - Follow source maps when viewing custom element definition r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D50016

--HG--
extra : moz-landing-system : lando
2019-11-20 22:57:47 +00:00
Jason Laster d0771d94df Bug 1594941 - Remove unused Frame.environment field. r=bhackett
Differential Revision: https://phabricator.services.mozilla.com/D53851

--HG--
extra : moz-landing-system : lando
2019-11-19 19:53:14 +00:00
Yura Zenevich 9b1b95b745 Bug 1596728 - fix an error when opening a color picker for an element with a pseudo child. r=rcaliman
Differential Revision: https://phabricator.services.mozilla.com/D53673

--HG--
extra : moz-landing-system : lando
2019-11-19 11:36:47 +00:00
Cyferouss 45748e7e4f Bug 1595256 - Amended grid-*-gap legacy shorthands to invalid properties of non-flex, non-grid, or non-multi-col containers. r=pbro
Differential Revision: https://phabricator.services.mozilla.com/D53753

--HG--
extra : moz-landing-system : lando
2019-11-19 16:55:19 +00:00
Yura Zenevich 1a348de365 Bug 1596428 - fix a rare intermittent issue when nsIDOMWindowUtils::layerManagerType fails when checing if web render is enabled. r=nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D53688

--HG--
extra : moz-landing-system : lando
2019-11-19 07:28:22 +00:00
Andreea Pavel 47d35b097d Backed out changeset 352bd579f519 (bug 1594941) for failing xpcshell at test_breakpoint-16.js on a CLOSED TREE 2019-11-19 20:56:26 +02:00
Jason Laster 67ab86708e Bug 1594941 - Remove unused Frame.environment field. r=bhackett
Differential Revision: https://phabricator.services.mozilla.com/D52282

--HG--
extra : moz-landing-system : lando
2019-11-19 15:44:58 +00:00
Nicolas Chevobbe 790f56fb4a Bug 1595594 - Add support for typed arrays to console.table. r=Honza.
In order to render a table, we first check that console.table is
called with data that can be displayed in a table. Until now, we
were missing all the typed arrays.
This revealed some smaller issues:
- BigInt64Array were not marked as typed arrays on the server.
- Generating the repeatId for a message containing BigInts would
  throw because BigInts can't be serialized.

We add test cases for all the typed array, and we take this opportunity
to add a test case to ensure object insides table cells can be expanded.

Differential Revision: https://phabricator.services.mozilla.com/D53155

--HG--
extra : moz-landing-system : lando
2019-11-19 13:37:07 +00:00
Ehsan Akhgari dc998c5c5a Bug 1592599 - Switch nsIDocShell.getDocShellEnumerator() away from using nsISimpleEnumerator; r=bzbarsky
Differential Revision: https://phabricator.services.mozilla.com/D51100

--HG--
extra : moz-landing-system : lando
2019-11-18 20:11:58 +00:00
Emilio Cobos Álvarez ddad5ae430 Bug 1596800 - Remove document.getAnonymousNodes as well. r=smaug
As it always returns null.

Depends on D53342

Differential Revision: https://phabricator.services.mozilla.com/D53343

--HG--
extra : moz-landing-system : lando
2019-11-18 19:15:16 +00:00
Emilio Cobos Álvarez 422bc064f3 Bug 1596800 - Remove document.getBindingParent usage from devtools. r=jdescottes
This removes the concept of shadowAnonymous, which doesn't make a lot of sense,
and re-enables the shadow dom tests which were disabled when we removed the old
style system (as stylo didn't supported shadow DOM yet by then).

This is a change in behavior as you can now remove nodes from shadow DOM (no
reason you weren't able to, before).

Differential Revision: https://phabricator.services.mozilla.com/D53340

--HG--
extra : moz-landing-system : lando
2019-11-18 20:54:10 +00:00
Micah Tigley 5ad3c2f6bf Bug 1593708 - Part 4: Update RDM to set inRDMPane property on the BrowsingContext. r=bradwerth
Depends on D52217

Differential Revision: https://phabricator.services.mozilla.com/D52219

--HG--
extra : moz-landing-system : lando
2019-11-07 22:17:18 +00:00
Emilio Cobos Álvarez d25e252b68 Bug 1596792 - Remove useless usage of getBindingParent in devtools. r=jdescottes
There's a nice Node.isConnected that does what you want.

Differential Revision: https://phabricator.services.mozilla.com/D53213

--HG--
extra : moz-landing-system : lando
2019-11-18 10:31:32 +00:00
chujun 6ce098c064 Bug 1588007-Add fetch event listener breakpoint for service worker r=loganfsmyth
From Harald's comment, it seems there're more events to add, hence making a service worker section.
I didn't find a related test in server. Let me know if I miss any!
{F1687381}

Differential Revision: https://phabricator.services.mozilla.com/D52297

--HG--
extra : moz-landing-system : lando
2019-11-13 22:28:16 +00:00
Brian Hackett 6c92f8d784 Bug 1512152 - Use threadFrontTest instead of initTestDebuggerServer when possible, r=ochameau.
Differential Revision: https://phabricator.services.mozilla.com/D52205

--HG--
extra : moz-landing-system : lando
2019-11-15 19:16:10 +00:00
Noemi Erli bbbd04084e Backed out changeset 31a1b40b2008 (bug 1594810) for causing devtools failures CLOSED TREE 2019-11-15 19:48:46 +02:00
Michael Ratcliffe 5ddba6a78c Bug 1594810 - Remove DevTools support for IndexedDB persistent storage r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D52564

--HG--
extra : moz-landing-system : lando
2019-11-15 15:49:17 +00:00
Yura Zenevich dabe0349ce Bug 1594743 - ensure that the keyboard audit does not interfere with other audit types. r=nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D52378

--HG--
extra : moz-landing-system : lando
2019-11-12 15:05:42 +00:00
Yura Zenevich 6063e87304 Bug 1591409 - improve keyboard a11y checks by avoiding false positive for interactive elements when they are focusable. r=nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D52201

--HG--
extra : moz-landing-system : lando
2019-11-14 06:00:27 +00:00
Kirk Steuber a844cacc35 Bug 1588142 - Fix test failure of browser_canvasframe_helper_02.js r=bgrins
Depends on D52289

Differential Revision: https://phabricator.services.mozilla.com/D52937

--HG--
extra : moz-landing-system : lando
2019-11-14 00:35:53 +00:00
Brian Grinstead 34fb6bc0fa Bug 1595636 - Rename xul->xhtml for tests in DevTools r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D52710

--HG--
rename : devtools/client/inspector/markup/test/doc_markup_xul.xul => devtools/client/inspector/markup/test/doc_markup_xul.xhtml
rename : devtools/client/inspector/shared/test/doc_content_stylesheet.xul => devtools/client/inspector/shared/test/doc_content_stylesheet.xhtml
rename : devtools/client/inspector/test/doc_inspector_reload_xul.xul => devtools/client/inspector/test/doc_inspector_reload_xul.xhtml
rename : devtools/client/shared/sourceeditor/test/head.xul => devtools/client/shared/sourceeditor/test/head.xhtml
rename : devtools/client/shared/test/doc_html_tooltip-02.xul => devtools/client/shared/test/doc_html_tooltip-02.xhtml
rename : devtools/client/shared/test/doc_html_tooltip-03.xul => devtools/client/shared/test/doc_html_tooltip-03.xhtml
rename : devtools/client/shared/test/doc_html_tooltip-04.xul => devtools/client/shared/test/doc_html_tooltip-04.xhtml
rename : devtools/client/shared/test/doc_html_tooltip-05.xul => devtools/client/shared/test/doc_html_tooltip-05.xhtml
rename : devtools/client/shared/test/doc_html_tooltip.xul => devtools/client/shared/test/doc_html_tooltip.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_arrow-01.xul => devtools/client/shared/test/doc_html_tooltip_arrow-01.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_arrow-02.xul => devtools/client/shared/test/doc_html_tooltip_arrow-02.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_doorhanger-01.xul => devtools/client/shared/test/doc_html_tooltip_doorhanger-01.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_doorhanger-02.xul => devtools/client/shared/test/doc_html_tooltip_doorhanger-02.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_hover.xul => devtools/client/shared/test/doc_html_tooltip_hover.xhtml
rename : devtools/client/shared/test/doc_html_tooltip_rtl.xul => devtools/client/shared/test/doc_html_tooltip_rtl.xhtml
rename : devtools/client/shared/test/doc_inplace-editor_autocomplete_offset.xul => devtools/client/shared/test/doc_inplace-editor_autocomplete_offset.xhtml
rename : devtools/client/shared/test/doc_options-view.xul => devtools/client/shared/test/doc_options-view.xhtml
rename : devtools/client/shared/test/doc_tableWidget_keyboard_interaction.xul => devtools/client/shared/test/doc_tableWidget_keyboard_interaction.xhtml
rename : devtools/client/shared/test/doc_tableWidget_mouse_interaction.xul => devtools/client/shared/test/doc_tableWidget_mouse_interaction.xhtml
rename : devtools/client/styleeditor/test/doc_xulpage.xul => devtools/client/styleeditor/test/doc_xulpage.xhtml
rename : devtools/server/tests/mochitest/doc_Debugger.Source.prototype.introductionType.xul => devtools/server/tests/mochitest/doc_Debugger.Source.prototype.introductionType.xhtml
extra : moz-landing-system : lando
2019-11-13 23:44:09 +00:00
Julian Descottes d80bec141d Bug 1543156 - Wait for the addon manager to start in DevTools addons xpcshell tests r=ochameau
Differential Revision: https://phabricator.services.mozilla.com/D52535

--HG--
extra : moz-landing-system : lando
2019-11-13 12:29:08 +00:00
Razvan Caliman a07852b3fc Bug 1593944 - Emit event with StyleRuleActor as argument when its underlying CSS rule is updated. r=pbro
The fix for [Bug 1557689](https://bugzilla.mozilla.org/show_bug.cgi?id=1557689) created a situation in the [`Rule.onDeclarationsChanged()`](https://searchfox.org/mozilla-central/rev/6566d92dd46417a2f57e75c515135ebe84c9cef5/devtools/client/inspector/rules/models/rule.js#869-887) whereby the `isUsed` state of  client-side declarations was made to point to a fixed `isUsed` state received from the server, thus losing sync with the latest state of the `StyleRuleActor`. Until another "declarations-update" event was fired from the `StyleRuleActor`, the rule's declarations' `isUsed` flag would point to the state with which they were overwritten on the last event handler call.

As a reminder, the root cause of [Bug 1557689](https://bugzilla.mozilla.org/show_bug.cgi?id=1557689) was the inability force a "refresh" of the `StyleRuleFront` so it picked-up the latest `isUsed` state for its declarations when they depend on other declarations from other rules (ex: `justify-content: center` depends on `display:flex`). Therefore, the "declarations-updated" event was introduced with a payload of changed declarations to overwrite the client-side ones. It was convoluted, but it worked.

However, while investigating the cause of this newer bug [Bug 1593944](https://bugzilla.mozilla.org/show_bug.cgi?id=1593944), I discovered an unusual but perhaps expected side-effect: when dispatching an event over the protocol with a payload of the `StyleRuleActor`, its corresponding `StyleRuleFront` on the client would "refresh" automatically (meaning that, looking up state on the previous front reference would point to the latest state from the actor) . The client doesn't even need to use this payload to replace its previous front reference. Surprisingly, the client doesn't even need to explicitly listen to the event which carries the `StyleRuleActor`/`StyleRuleFront` reference. So long as a previous reference of the front exists on the client, it will point to the updated state of the actor. I haven't been able to identify whether this is a known and expected behavior, so I'm pinging @jdescottes and @ochameau to weigh in on the validity of these findings.

Relying on this behavior, the fix for both [Bug 1557689](https://bugzilla.mozilla.org/show_bug.cgi?id=1557689) and [Bug 1557689](https://bugzilla.mozilla.org/show_bug.cgi?id=1557689) involves simply emitting an event, "rule-updated", with the `StyleRuleActor` instance as payload whenever its internal state changes meaningfully so the corresponding front updates. The client will pick-up the latest `isUsed` state of declarations from its reference to the `StyleRuleFront`.


---

Another way to check this behavior and hypothesis is to do the following:
- In [`StyleRuleActor.setRuleText()`](https://searchfox.org/mozilla-central/rev/6566d92dd46417a2f57e75c515135ebe84c9cef5/devtools/server/actors/styles.js#1704) replace `return this` with `return null`; (this will no longer return the `StyleRuleActor` over the protocol; it's not explicitly used on the client anyway).
- In the spec, replace the [`setRuleText()`](https://searchfox.org/mozilla-central/rev/6566d92dd46417a2f57e75c515135ebe84c9cef5/devtools/shared/specs/styles.js#222) return value  with `RetVal("nullable:domstylerule")` so the protocol doesn't throw an error when getting the `null` from the actor.
- Make a build.
- Then, open the Inspector -> Rules View and change the value of a valid declaration, say: `display: block`, to something invalid, like `display: booo`. Notice that the declaration is no longer marked invalid with a warning sign. That's because the declaration's [`isValid`](https://searchfox.org/mozilla-central/rev/6566d92dd46417a2f57e75c515135ebe84c9cef5/devtools/server/actors/styles.js#1447) flag is set on the actor but it no longer syncs with the client which uses the corresponding front to render the declaration after the change. Not returning the `StyleRuleActor` over the protocol breaks this sync actor-front sync.

Differential Revision: https://phabricator.services.mozilla.com/D52560

--HG--
extra : moz-landing-system : lando
2019-11-13 14:04:37 +00:00
Narcis Beleuzu ec2e46ea6b Backed out changeset 4d4982e04e4d (bug 1543156) for xpcshell failures on test_extension_storage_actor.js. CLOSED TREE 2019-11-13 13:36:30 +02:00
Julian Descottes ae692f9401 Bug 1543156 - Wait for the addon manager to start in DevTools addons xpcshell tests r=ochameau
Differential Revision: https://phabricator.services.mozilla.com/D52535

--HG--
extra : moz-landing-system : lando
2019-11-13 09:33:49 +00:00
Greg Tatum 5f235fa2c5 Bug 1585659 - Add a getSupportedFeatures method to the perf actor; r=canaltinova
Differential Revision: https://phabricator.services.mozilla.com/D50668

--HG--
extra : moz-landing-system : lando
2019-11-12 19:07:28 +00:00
Greg Tatum 691c9057fc Bug 1594842 - Move gecko-profiler-interface.js out of the server and into shared; r=julienw
It's being used in the client and server, and so is a shared file.

Differential Revision: https://phabricator.services.mozilla.com/D52247

--HG--
rename : devtools/server/performance-new/gecko-profiler-interface.js => devtools/shared/performance-new/gecko-profiler-interface.js
rename : devtools/server/performance-new/moz.build => devtools/shared/performance-new/moz.build
extra : moz-landing-system : lando
2019-11-12 19:07:03 +00:00
Tim Nguyen b081bf6c33 Bug 1576946 - Remove nsStackFrame platform code. r=mats
Differential Revision: https://phabricator.services.mozilla.com/D49487

--HG--
extra : moz-landing-system : lando
2019-11-12 19:50:19 +00:00
Brian Hackett 830e9c1b8c Bug 1594975 - Fix ThreadActor.frames argument, r=jlast.
Differential Revision: https://phabricator.services.mozilla.com/D52477

--HG--
extra : moz-landing-system : lando
2019-11-11 12:30:31 +00:00
Brian Hackett 2843abc6be Bug 1595426 - Gather pause data for event logpoint hits, r=jlast.
Differential Revision: https://phabricator.services.mozilla.com/D52494

--HG--
extra : moz-landing-system : lando
2019-11-11 01:10:45 +00:00
Nicolas Chevobbe 116dcd0e39 Bug 1595012 - Remove WebConsoleFront evaluateJS. r=jdescottes.
The function is only used in tests, which is a bit concerning
as we should test the actual function being used (evaluateJSAsync).

Differential Revision: https://phabricator.services.mozilla.com/D52331

--HG--
extra : moz-landing-system : lando
2019-11-10 11:47:45 +00:00
Dorel Luca 5bb844b4ce Backed out changeset b8c3e2f3cd42 (bug 1595012) for causing DevTools failures in devtools/client/webconsole/test/browser/browser_webconsole_stubs_evaluation_result.js. CLOSED TREE 2019-11-10 05:14:38 +02:00