Commit Graph

18453 Commits

Author SHA1 Message Date
Cosmin Sabou
be84eb7037 Backed out 11 changesets (bug 1582512) for causing valgrind bustages.
Backed out changeset 8b850fd66bf5 (bug 1582512)
Backed out changeset 07d3631e609a (bug 1582512)
Backed out changeset fa91b085eb59 (bug 1582512)
Backed out changeset 232d5735d404 (bug 1582512)
Backed out changeset 47045fa2ffd2 (bug 1582512)
Backed out changeset 40a0f6c6cd61 (bug 1582512)
Backed out changeset 5fb3e489c31f (bug 1582512)
Backed out changeset 379318a35b20 (bug 1582512)
Backed out changeset bf81985c33b7 (bug 1582512)
Backed out changeset 1e0dd57b8041 (bug 1582512)
Backed out changeset 2787043f1fab (bug 1582512)
2019-11-20 18:44:45 +02:00
Oriol Brufau
c6d83e8581 Bug 1593552 - Fix delete key not being able to remove cookies in Storage Inspector after opening context menu. r=miker
Differential Revision: https://phabricator.services.mozilla.com/D53707

--HG--
extra : moz-landing-system : lando
2019-11-19 14:01:24 +00:00
Tom Ritter
78396e5c2c Bug 1582512 - Disable the javascript filename load restriction on specific tests r=jdescottes
Certain tests load data: URIs, blob: URIs, or otherwise do unusual things
that mean we need to disable the restriction for them.

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

--HG--
extra : moz-landing-system : lando
2019-11-18 20:46:52 +00:00
Tom Ritter
a136102b6a Bug 1582512 - Switch test-actor-registry.js to use a chrome:// URL r=jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D51675

--HG--
extra : moz-landing-system : lando
2019-11-18 20:45:26 +00:00
Nicolas Chevobbe
fb841e986b Bug 1597905 - Replace usage of webConsoleUI.clearOutput to head.js clearOutput in tests. r=jdescottes.
The helper function waits for an event to be dispatched,
which adds extra safety.

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

--HG--
extra : moz-landing-system : lando
2019-11-20 10:18:24 +00:00
Andreea Pavel
03a2c54d6f Backed out 3 changesets (bug 1595154) for failing bc at browser_autocomplete_marked_detached_tab.js on a CLOSED TREE
Backed out changeset f512953534ac (bug 1595154)
Backed out changeset 803a2dfdda82 (bug 1595154)
Backed out changeset ddd336d5bf1a (bug 1595154)

--HG--
rename : browser/extensions/formautofill/FormAutofillChild.jsm => browser/extensions/formautofill/content/FormAutofillFrameScript.js
2019-11-20 05:03:37 +02:00
Andreea Pavel
2edc95fe48 Bug 1594897 - disable browser_webconsole_location_logpoint_debugger_link.js on ccov r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D53885

--HG--
extra : moz-landing-system : lando
2019-11-19 22:16:58 +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
Neil Deakin
a6095ebaf4 Bug 1595154, replace the frame script FormAutofillFrameScript.js with an actor and fix up setTimeout calls in places that were relying on Timer.jsm being loaded in that frame script, r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D52721

--HG--
rename : browser/extensions/formautofill/content/FormAutofillFrameScript.js => browser/extensions/formautofill/FormAutofillChild.jsm
extra : moz-landing-system : lando
2019-11-20 01:25:20 +00:00
Andrew McCreight
3906df9ebd Bug 1597804 - Fix "pricnipal" typos in some comments. r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D53882

--HG--
extra : moz-landing-system : lando
2019-11-19 23:07:54 +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
Dorel Luca
b9735a21f4 Backed out changeset d5baee70482a (bug 1597197) for DevTools failures in test/browser/browser_jsterm_no_input_and_tab_key_pressed.js. CLOSED TREE 2019-11-19 14:59:36 +02:00
Nicolas Chevobbe
14ded0304c Bug 1597197 - Add a feature-callout badge on the open editor icon. r=Honza.
Differential Revision: https://phabricator.services.mozilla.com/D53394

--HG--
extra : moz-landing-system : lando
2019-11-19 09:27:58 +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
Alexandre Poirot
27c69caaec Bug 1578242 - Make the inspector use the TargetList. r=gl,pbro
Differential Revision: https://phabricator.services.mozilla.com/D48859

--HG--
extra : moz-landing-system : lando
2019-11-18 15:06:02 +00:00
David Walsh
98b765cbb7 Bug 1595413 - Revert debugger min-width to fix resizing r=jlast
Differential Revision: https://phabricator.services.mozilla.com/D52836

--HG--
extra : moz-landing-system : lando
2019-11-18 13:45:03 +00:00
Tim Nguyen
064e6fd1a7 Bug 1596947 - Stop using XUL <stack> in style editor. r=gl
I believe <stack> was used for the CSS coverage tool which needed to be overlaid on top of the main UI. The code for the CSS coverage tool has however been removed since, so the UI no longer needs to use <stack>.

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

--HG--
extra : moz-landing-system : lando
2019-11-18 13:51:52 +00:00
JaStenson
a1ff10a14a Bug 1592637 - [popup] Lazyload link.js in Description.js, r=julienw
Differential Revision: https://phabricator.services.mozilla.com/D53324

--HG--
extra : moz-landing-system : lando
2019-11-18 14:16:04 +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
Nicolas Chevobbe
ed92bb6da0 Bug 1596681 - Use URLSearchParams for utmParams. r=jlast.
This way it's easier to not make mistake when writing an
URL in the panel.

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

--HG--
extra : moz-landing-system : lando
2019-11-18 08:40:04 +00:00
Nicolas Chevobbe
be1cc54b37 Bug 1596681 - Send Tabs to mobile link should not point to en-US page.r=jlast.
mozilla.org will do the redirect to the correct
localized page.

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

--HG--
extra : moz-landing-system : lando
2019-11-18 08:39:38 +00:00
Nicolas Chevobbe
3cf5da7002 Bug 1596681 - Clicking link in WhatsNew panel should honor Ctrl/Cmd to open link in background tab. r=jlast.
Differential Revision: https://phabricator.services.mozilla.com/D53157

--HG--
extra : moz-landing-system : lando
2019-11-18 08:39:24 +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
Anujan M
60570c4aae Bug 1590195 - Remove actorHasMethodCheck r=gl
Refactor and Remove the actorHasMethod check

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

--HG--
extra : moz-landing-system : lando
2019-11-16 20:26:27 +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
Patrick Brosset
559b2a0287 Bug 1596673 - Fixing the position of anchors in a few urls, and replacing one with hacks.m.o r=jlast
Some anchors were appearing before the url params part, which prevented them from
actually being recognized and the page being scrolled to the right position.

Also the inactive CSS link went to mdn, but we don't have docs there yet for it. So I
changed it to go to hacks.m.o instead.

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

--HG--
extra : moz-landing-system : lando
2019-11-15 16:51:01 +00: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
Kris Maglione
6ccf7e42c1 Bug 1595927 - Remove XPCOM gunk around RemoteWebNavigation creation. r=mconley
It just adds a lot of unnecessary overhead and indirection.

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

--HG--
extra : moz-landing-system : lando
2019-11-15 01:23:40 +00:00
Nicolas Chevobbe
0183fb838b Bug 1596342 - Update sending patch documentation to only mention Phabricator + moz-phab. r=rcaliman.
The documentation was mentioning arc as the primary
tool to push to review (and was discouraging using
moz-phab). moz-phab is now much more stable and
is the prefered way of pushing patches, so we shouldn't
mention arc anymore.
There was also a (not recommended) mention of attaching
patch to Bugzilla for reviews, which I think isn't
something we recommend anymore.

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

--HG--
extra : moz-landing-system : lando
2019-11-14 16:49:44 +00:00
Dorel Luca
ebebe87aca Backed out changeset c4ff245706ab (bug 1595155) for Android mochitest failures on mobile/android/components/extensions/test/mochitest/test_ext_webNavigation_onCommitted.html. CLOSED TREE
--HG--
rename : browser/actors/ClickHandlerParent.jsm => browser/modules/ContentClick.jsm
2019-11-14 19:14:27 +02: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
ljyjeff
028699d2ee Bug 1593919 - Moved RequestList* related files into request-list directory. r=Honza
Moved RequestList* related files into new directory. Updated necessary references to and within these components.

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

--HG--
rename : devtools/client/netmonitor/src/components/RequestList.js => devtools/client/netmonitor/src/components/request-list/RequestList.js
rename : devtools/client/netmonitor/src/components/RequestListColumnCause.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnCause.js
rename : devtools/client/netmonitor/src/components/RequestListColumnContentSize.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnContentSize.js
rename : devtools/client/netmonitor/src/components/RequestListColumnCookies.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnCookies.js
rename : devtools/client/netmonitor/src/components/RequestListColumnDomain.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnDomain.js
rename : devtools/client/netmonitor/src/components/RequestListColumnFile.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnFile.js
rename : devtools/client/netmonitor/src/components/RequestListColumnMethod.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnMethod.js
rename : devtools/client/netmonitor/src/components/RequestListColumnProtocol.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnProtocol.js
rename : devtools/client/netmonitor/src/components/RequestListColumnRemoteIP.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnRemoteIP.js
rename : devtools/client/netmonitor/src/components/RequestListColumnResponseHeader.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnResponseHeader.js
rename : devtools/client/netmonitor/src/components/RequestListColumnScheme.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnScheme.js
rename : devtools/client/netmonitor/src/components/RequestListColumnSetCookies.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnSetCookies.js
rename : devtools/client/netmonitor/src/components/RequestListColumnStatus.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnStatus.js
rename : devtools/client/netmonitor/src/components/RequestListColumnTime.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnTime.js
rename : devtools/client/netmonitor/src/components/RequestListColumnTransferredSize.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnTransferredSize.js
rename : devtools/client/netmonitor/src/components/RequestListColumnType.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnType.js
rename : devtools/client/netmonitor/src/components/RequestListColumnUrl.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnUrl.js
rename : devtools/client/netmonitor/src/components/RequestListColumnWaterfall.js => devtools/client/netmonitor/src/components/request-list/RequestListColumnWaterfall.js
rename : devtools/client/netmonitor/src/components/RequestListContent.js => devtools/client/netmonitor/src/components/request-list/RequestListContent.js
rename : devtools/client/netmonitor/src/components/RequestListEmptyNotice.js => devtools/client/netmonitor/src/components/request-list/RequestListEmptyNotice.js
rename : devtools/client/netmonitor/src/components/RequestListHeader.js => devtools/client/netmonitor/src/components/request-list/RequestListHeader.js
rename : devtools/client/netmonitor/src/components/RequestListItem.js => devtools/client/netmonitor/src/components/request-list/RequestListItem.js
extra : moz-landing-system : lando
2019-11-14 14:45:27 +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
Gurzau Raul
fb4e134778 Bug 1533943 - Fixed eslint failure at browser/web-navigation.js on a CLOSED TREE.
--HG--
extra : source : 15e1d046f2905279d6f0f151919a07231f0676ac
2019-11-14 03:57:50 +02:00
Neil Deakin
fd6f562cbe Bug 1533943, modify WebNavigation to inherit from JSWindowActor, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D50886

--HG--
extra : source : 6e3c105cfcde3a6821120a83674f77692f5c7bf2
2019-11-14 00:53:29 +00:00
Gijs Kruitbosch
517d8b97c1 Bug 1596149 - ensure first plural form in English in devtools includes a plural form reference so its contents provide value when used as a fallback in other locales, r=Pike,nchevobbe
This loses the specialcasing for "One message/request", which seems like an acceptable trade-off. We can reinstate that type of distinction when using fluent.

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

--HG--
extra : moz-landing-system : lando
2019-11-14 06:58:20 +00:00
Jason Laster
8a536247fd Bug 1594885 - What's New in DevTools Panel in Firefox 71. r=jdescottes,victoria
Depends on D52733

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

--HG--
extra : moz-landing-system : lando
2019-11-14 08:42:16 +00:00
Julian Descottes
4a8f004c68 Bug 1594885 - Basic scaffolding for whatsnew panel in DevTools r=jlast,nchevobbe
Differential Revision: https://phabricator.services.mozilla.com/D52733

--HG--
extra : moz-landing-system : lando
2019-11-14 08:11:07 +00:00
Daniel Varga
cc80b874b2 Backed out changeset 6e3c105cfcde (bug 1533943) for causing mochitest failures at mobile/android/components/extensions/test/mochitest/test_ext_webNavigation_onCommitted.html on a CLOSED TREE 2019-11-14 08:30:55 +02:00
Daniel Varga
d4b08ce864 Backed out changeset 15e1d046f290 (bug 1533943) for causing conflict when backing out Bug 1533943 2019-11-14 08:29:37 +02:00
Nicolas Chevobbe
c1e9d9b526 Bug 1595068 - Fix issue with debounced autocompletion in JsTerm. r=Honza,julienw.
The issue was that if a user typed a legitimate letter,
then, quickly after (i.e. before the autocompletion results
are here) hit Enter or Tab, the resulting input value would
be erroneous.
This is because we retrieve the value to insert from the
autocomplete popup, which at that time, is out-of-date, for
this brief moment.
The fix consists in updating the preLabel property of the
autocomplete popup items in order to get the proper
completion if the user ever hit enter, tab or arrow right.
We also take this as an opportunity to have a mechanism
to be able to cancel a registered update.

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

--HG--
extra : moz-landing-system : lando
2019-11-13 16:19:18 +00:00