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

2310 Коммитов

Автор SHA1 Сообщение Дата
Ryan VanderMeulen 3b7fc0b68e No bug - Enable some e10s that pass and add some more annotations to ones that don't. 2016-05-09 17:01:16 -04:00
Eddy Bruel e106b98532 Bug 1268458 - Decouple HighlighterFront from HighlighterActor;r=jryans 2016-05-10 11:07:03 +02:00
Alexandre Poirot 5e04fa16fa Bug 1260493 - Introduce a module to handle key shortcuts in devtools. r=bgrins 2016-05-10 01:40:51 -07:00
Tim Nguyen 90210699e7 Bug 1271048 - Fix eslint issues in devtools/bootstrap.js. r=pbro
MozReview-Commit-ID: J5BXwB4dXhD
2016-05-10 00:15:03 +02:00
Nicolas Chevobbe 050540ba1b Bug 958167 - Use Inspector DevToolsUtils.makeInfallible in inspector actor instead of its own version. r=fitzgen
MozReview-Commit-ID: 4U7DCDFhQ6Y
2016-05-08 10:51:14 +02:00
Nikhil Handa bbae341c72 Bug 1014533: Moved spectrum.css to /client/themes/ from /client/shared/widgets and changed the respective references made to it. r=helenvholmes
MozReview-Commit-ID: 5R1KAmzQ6Ss

--HG--
rename : devtools/client/shared/widgets/spectrum.css => devtools/client/themes/spectrum.css
2016-05-09 19:56:24 +05:30
Julian Descottes b873e263bd Bug 1259834 - Create basic HTML tooltip API;r=bgrins
First implementation of HTML based tooltip to be used in devtools
instead of XUL panels. API is similar to the current API of
Tooltip.js

MozReview-Commit-ID: 8njiKBubLSj

--HG--
extra : rebase_source : 930bf7aef48e6c16d7a560d261e2bfd06fe02a63
extra : source : 09874a1e6f2c942a1f9de827fedd14da7e67a6e5
2016-05-04 14:44:57 +02:00
J. Ryan Stinnett 197654cbbc Bug 1270619 - Remove .js from module IDs. r=pbro
MozReview-Commit-ID: x8zcFH2VjO
2016-05-09 13:35:09 -05:00
J. Ryan Stinnett e1b9ca77b0 Bug 1270619 - Add missing imports instead of using globals. r=pbro
MozReview-Commit-ID: 28Xn7N9FSZr
2016-05-09 13:35:09 -05:00
J. Ryan Stinnett 715153aac1 Bug 1270619 - Remove globals that aren't actually global. r=pbro
MozReview-Commit-ID: HorYPkboF4K
2016-05-09 13:35:09 -05:00
Julian Descottes d5cacd95b1 Bug 1181717 - add tooltip=aHTMLTooltip to Tooltip.js iframes;r=pbro
MozReview-Commit-ID: 8A28hbquBHB

--HG--
extra : rebase_source : e7a9e190ede67b87f9a45174573bc97d2e93d1f3
2016-05-06 19:55:02 +02:00
Eddy Bruel ef61ce0337 Bug 1268568 - Decouple StyleRuleFront from StyleRuleActor;r=jryans 2016-05-09 13:55:00 +02:00
Eddy Bruel 9c3cb25b76 Bug 1268568 - Decouple PageStyleFront from PageStyleActor;r=jryans 2016-05-09 13:13:25 +02:00
Carsten "Tomcat" Book 56fe0e8f2c merge mozilla-inbound to mozilla-central a=merge 2016-05-09 11:17:59 +02:00
Jennifer Fong 2f312892d5 Bug 1270173 - Move protocol.js from devtools/server to devtools/shared. r=ejpbruel 2016-05-06 09:19:00 +02:00
Tom Tromey 5248d37066 Bug 1270139 - don't use inIDOMUtils.colorToRGBA in devtools; r=pbro
Bug 1266842 missed a spot using colorToRGBA.  Changing this revealed
that the hsltorgb algorithm was a bit off; so this patch changes it to
be a js port of NS_HSL2RGB.

MozReview-Commit-ID: A94qE5K7b2L

--HG--
extra : transplant_source : G%02I%E5%FC%BA%CBr%BBP%08%97%D1%01%C7d%B1%27%87%CE
2016-05-04 08:51:57 -06:00
J. Ryan Stinnett ced7efcc96 Bug 1253018 - Rename cache option to mention HTTP. r=bgrins
MozReview-Commit-ID: GZH2IKaoXCm
2016-05-07 18:49:48 -05:00
J. Ryan Stinnett 3d9b8b971e Bug 1090380 - Set a basic target name for workers. r=bgrins
MozReview-Commit-ID: 6QN7kekZdWJ
2016-05-06 11:33:43 -05:00
J. Ryan Stinnett 6f6a286c6c Bug 1090380 - Show target title and URL in toolbox title. r=bgrins
MozReview-Commit-ID: BksG2GOfxVG
2016-05-06 11:33:41 -05:00
J. Ryan Stinnett b4f325c502 Bug 1270596 - Fix devtools after ESLint 2.9.0 upgrade. r=tromey
MozReview-Commit-ID: 7LmcHCcIv1Q
2016-05-06 10:49:44 -05:00
Julian Descottes df759845bc Bug 1270462 - part2: tooltip toggle callback can resolve(false);r=bgrins,jsnajdr
Previously, the targetNodeCb used in TooltipToggle had an inconsistent API. If
returning synchronously, "false" would prevent the tooltip from appearing.
However, if using a promise, resolving "false" would still show the tooltip.
It was needed to reject the promise in this case to prevent the tooltip from
being displayed.

This commit makes TooltipToggle always expect a consistent return value from
this callback, whether it is synchronous, or using promises.
- true -> show the tooltip on the event target
- DOM node -> show the tooltip on the provided node
- false (or falsy value) -> do not show the tooltip

MozReview-Commit-ID: 7PIPwBJxjWO

--HG--
extra : rebase_source : 279bab30f631a3a65a93b52226c6980210abf2f1
2016-05-05 20:25:08 +02:00
Julian Descottes 87fe331949 Bug 1270462 - part1: extract devtools tooltip toggle logic to separate file;r=bgrins,jsnajdr
The code used to make the tooltip appear/disappear when hovering targets
has been extracted to a separate class that can be shared between the
current Tooltip.js implementation and the upcoming HTMLTooltip.

MozReview-Commit-ID: UYSjPFeMYK

--HG--
extra : rebase_source : 5dcca2d5887ffc98fec621092640073a0909c13f
2016-05-06 14:54:30 +02:00
James Long e87387e53d Bug 1265775 - replace Cu.reportError with console.error in devtools client code r=tromey 2016-05-06 11:29:10 -04:00
Tom Tromey bf4a51cc20 Bug 1270203 - make css-angle eslint-clean; r=nchevobbe
MozReview-Commit-ID: IfCMc8ewLDu

--HG--
extra : transplant_source : %3F%DB%40%99I%5B%81%F4%99%9Bo%CC%3F%08%E5d%C8%11x%A7
2016-05-05 12:26:24 -06:00
Tom Tromey c2190eef2a Bug 1270203 - move css-angle.js to devtools/client/shared; r=nchevobbe
MozReview-Commit-ID: BN3lF5xT61Z

--HG--
rename : devtools/shared/css-angle.js => devtools/client/shared/css-angle.js
rename : devtools/shared/tests/unit/test_cssAngle.js => devtools/client/shared/test/unit/test_cssAngle.js
extra : transplant_source : %EF%2Bl%B2%F1%1A%1D%A2%ADc%01%7E%8E%81%AB%0E%DB4Rk
2016-05-05 12:21:17 -06:00
Carsten "Tomcat" Book 22dd4df68d Merge mozilla-central to fx-team 2016-05-06 14:24:56 +02:00
Carsten "Tomcat" Book 9b6572bf54 merge mozilla-inbound to mozilla-central a=merge 2016-05-06 14:18:17 +02:00
Astley Chen d626fe0c49 bug 859301 : Part 2 - unprefix internal css files. r=dbaron
MozReview-Commit-ID: CRyp3zQxayh

--HG--
extra : rebase_source : 6b4a5d3e5292a1bdeceab37c5067c78fac69834a
2016-05-04 13:31:24 +08:00
ale rimoldi + richard eigenmann 656c0ffbf2 Bug 1256795 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_console_server_logging.js. r=linclark 2016-05-05 12:17:00 -04:00
Ryan VanderMeulen 27ec66e090 Merge m-c to fx-team. a=merge
--HG--
extra : rebase_source : 5fa479be50a4739ccd9f42a799594afa8fcc4f28
2016-05-05 14:58:24 -04:00
Ryan VanderMeulen 70ba843b03 Merge m-c to inbound. a=merge
CLOSED TREE
2016-05-05 10:06:54 -04:00
Steve Melia 0fb164e885 Bug 1269915 - Remove right click menu from breadcrumbs;r=bgrins
MozReview-Commit-ID: 4mD2zcW7Awe
2016-05-04 22:48:15 +01:00
Nick Fitzgerald d61cdcd35e Bug 1269891 - Add more documentation comments to the Tree component; r=jlongster 2016-05-04 16:43:48 -07:00
Nicolas Chevobbe 6dff4967a0 Bug 1270166 - Get data from the store using selectors on the reducer. r=linclark
MozReview-Commit-ID: DuZzU5BWcKr
2016-05-04 12:32:09 -07:00
Brian Grinstead d593183c9d Bug 1256846 - Switch to add_task for browser_webconsole_bug_601352_scroll.js;r=tromey
MozReview-Commit-ID: KfE0WOKeLGW
2016-05-05 11:37:46 -07:00
Brian Grinstead 93747cc495 Bug 1256846 - Fix ESLint issues in browser_webconsole_bug_601352_scroll.js;r=tromey
MozReview-Commit-ID: HoHk2GDT6vf
2016-05-05 11:37:44 -07:00
Julian Descottes 25f8d97318 Bug 1260419 - part2: do not hide inplace editor autocomplete popup when scrolling;r=pbro
MozReview-Commit-ID: W5N9tFCyOM

--HG--
extra : rebase_source : 516307dbc3d6142e107a10e9c3fb44ee93acc551
extra : histedit_source : d735e4b810f9648572dee5265b220dc659025814
2016-05-04 16:39:29 +02:00
Tom Tromey b266a392fe Bug 1265787 - Add javascript CSS lexer to devtools. r=pbro
MozReview-Commit-ID: BgbACHTTMtX

--HG--
extra : transplant_source : %0B%F5%A3%AE%D8U%AB%5D%DF%D4%8A%90%21%22%0E%C6%BDW%06%88
2016-04-29 11:21:22 -06:00
Jan Odvarko 87d50e8521 Bug 1263404 - Fix condition in hasChildren. r=jryans 2016-05-04 14:56:43 +02:00
Lin Clark 3fd6712363 Bug 1264702 - [rep tests] Add tests for window rep. r=Honza 2016-05-03 10:59:00 -04:00
Lin Clark 52a43340ea Bug 1264692 - [rep tests] Add tests for object-with-url rep. r=Honza 2016-05-04 17:54:00 -04:00
Michael Kohler 7735c18415 Bug 1256775 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_bug_869003_inspect_cross_domain_object.js. r=linclark 2016-05-03 16:03:00 -04:00
Michael Kohler cd7e438938 Bug 1256781 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_console_click_focus.js. r=linclark 2016-05-03 16:03:00 -04:00
Michael Kohler 46a73ebfe0 Bug 1256786 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_console_error_source_click.js. r=linclark 2016-05-03 16:03:00 -04:00
Michael Kohler 82191c3e66 Bug 1256792 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_console_nsiconsolemessage.js. r=linclark 2016-05-03 16:04:00 -04:00
Michael Kohler c24eef3455 Bug 1256800 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_console_variables_view_highlighter.js. r=linclark 2016-05-03 16:04:00 -04:00
Eddy Bruel 58e6eb79d8 Bug 1268461 - Decouple StyleSheetsFront from StyleSheetsActor;r=jryans 2016-05-06 08:09:20 +02:00
Eddy Bruel b2cfc84b96 Bug 1268461 - Decouple StyleSheetFront from StyleSheetActor;r=jryans 2016-05-06 08:07:51 +02:00
Wellington Cordeiro e8e1662c71 Bug 1256848 - Fix ESLint issues in devtools/client/webconsole/test/browser_webconsole_bug_603750_websocket.js;r=jlast
MozReview-Commit-ID: HTmrjNK1nRI
2016-05-05 21:48:11 -07:00
Morgan Phillips 588ceb1f8d Bug 1270721 - Ensure that error format strings are not null before attempting to use them.;r=jimb
--HG--
extra : rebase_source : d57b0eb1ad935ee6dd5cd655951828e3d3ad30e3
2016-05-06 11:50:45 -07:00
Wes Kocher 419e80ad06 Merge m-c to inbound, a=merge 2016-05-06 15:58:32 -07:00
Julian Descottes c00e9f4fa4 Bug 1260419 - part1: ruleview shows more CSS suggestions, with better sorting;r=pbro
Usability changes to the ruleview autocomplete:
- max suggestions is now capped to 500 to make sure as many suggestions as possible
  as possible are displayed
- vendor-prefixed properties are moved to the end of the list
- !important is no longer the first suggested item

MozReview-Commit-ID: AOfHyqS3n8s

--HG--
extra : rebase_source : 5a4842974672bebc7427a546b4e4014201147465
extra : histedit_source : 0c008a8e7aedb60c2df0774977e54074702d555d
2016-04-07 00:43:30 +02:00
"Helen V. Holmes" f90d2f6327 Bug 1246313 - Change the devtools syntax highlighting colors to be higher contrast;r=bgrins
MozReview-Commit-ID: FEYhP6Oq5Sn
2016-03-17 08:58:32 -04:00
Brian Grinstead fb02b7fa44 Bug 1205330 - Fixup border color for devtool inputs;r=helenvholmes
MozReview-Commit-ID: Iw4j3rqVe8v
2016-05-04 11:19:35 -07:00
"Helen V. Holmes" 5fededb359 Bug 1205330 - Changes to the devtools/devedition dark theme colors;r=bgrins
MozReview-Commit-ID: 7gOuqTPBFcf
2016-05-02 09:38:44 -04:00
Eddy Bruel 53f074e796 Bug 1268461 - Decouple MediaRuleFront from MediaRuleActor;r=jryans 2016-05-04 16:46:41 +02:00
Tom Tromey 08f3ad3f7b Bug 1265876 - don't directly use Timer.jsm or timers.js in devtools; r=ochameau
MozReview-Commit-ID: HzbnNvTc5db
2016-05-04 08:02:03 -06:00
Tom Tromey 71073210e9 Bug 1268974 - make css-parsing-utils eslint-clean; r=pbro
MozReview-Commit-ID: 4iPN37XMbIy
2016-05-04 07:57:33 -06:00
Carsten "Tomcat" Book 0ca90753b9 Backed out changeset 0c860fab34ea (bug 1263404) for causing test failures in browser_jsonview_filter.js 2016-05-04 12:28:03 +02:00
Carsten "Tomcat" Book b64ae72562 Backed out changeset f54c4f5fd0ed (bug 1265787) 2016-05-04 12:27:37 +02:00
Carsten "Tomcat" Book 3db7c01bb7 Merge mozilla-central to fx-team 2016-05-04 12:01:17 +02:00
Carsten "Tomcat" Book ad9214381b merge mozilla-inbound to mozilla-central a=merge 2016-05-04 11:54:42 +02:00
Brian Grinstead f1f118fd67 Bug 1269763 - Convert instances of toolbox.frame.contentWindow to toolbox.win;r=jdescottes
MozReview-Commit-ID: 2jPa6K6io40
2016-05-03 15:46:24 -07:00
Eddy Bruel 957da1ca53 Bug 1268461 - Decouple OriginalSourceFront from OriginalSourceActor;r=jryans 2016-05-03 18:31:00 +02:00
Alexandre Poirot dca4ae52c4 Bug 1266128 - Show tabs in about:debugging. r=janx
--HG--
rename : devtools/client/aboutdebugging/components/moz.build => devtools/client/aboutdebugging/components/tabs/moz.build
2016-05-03 09:06:32 -07:00
Alexandre Poirot 5e23dabcd8 Bug 1266128 - Send tabListChanged messages when tab title changes. r=jryans 2016-05-03 09:06:31 -07:00
Alexandre Poirot 4355049b47 Bug 1266128 - Rename about debugging Tab(s) to Panel(s). r=janx
--HG--
rename : devtools/client/aboutdebugging/components/addons-controls.js => devtools/client/aboutdebugging/components/addons/controls.js
rename : devtools/client/aboutdebugging/components/addons-install-error.js => devtools/client/aboutdebugging/components/addons/install-error.js
rename : devtools/client/aboutdebugging/components/addons-tab.js => devtools/client/aboutdebugging/components/addons/panel.js
rename : devtools/client/aboutdebugging/components/addon-target.js => devtools/client/aboutdebugging/components/addons/target.js
rename : devtools/client/aboutdebugging/components/tab-header.js => devtools/client/aboutdebugging/components/panel-header.js
rename : devtools/client/aboutdebugging/components/tab-menu-entry.js => devtools/client/aboutdebugging/components/panel-menu-entry.js
rename : devtools/client/aboutdebugging/components/tab-menu.js => devtools/client/aboutdebugging/components/panel-menu.js
rename : devtools/client/aboutdebugging/components/workers-tab.js => devtools/client/aboutdebugging/components/workers/panel.js
rename : devtools/client/aboutdebugging/components/service-worker-target.js => devtools/client/aboutdebugging/components/workers/service-worker-target.js
rename : devtools/client/aboutdebugging/components/worker-target.js => devtools/client/aboutdebugging/components/workers/target.js
2016-05-03 09:06:31 -07:00
Alexandre Poirot 8cbb062041 Bug 1265599 - Fix gcli toolbox button status when toolbox goes on and off. r=jwalker 2016-05-03 09:06:30 -07:00
Brian Grinstead 234d71531a Bug 1269497 - eslint fixes for Menu API;r=jdescottes
MozReview-Commit-ID: 9iSJgWUBRbp
2016-05-03 07:42:20 -07:00
Brian Grinstead c77eeb7c73 Bug 1269497 - Provide toolbox.win getter to make lines shorter in tests;r=jdescottes
MozReview-Commit-ID: 9KuWzsyHQGF
2016-05-03 07:41:20 -07:00
Brian Grinstead 847bb23a7f Bug 1269497 - Add 'visible' support to MenuItem API;r=jdescottes
MozReview-Commit-ID: Fl3OO3kCNxQ
2016-05-03 07:40:33 -07:00
Michael Kohler 0dace514c4 Bug 1256854 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_webconsole_bug_618078_network_exceptions.js r=linclark 2016-05-02 12:28:00 +02:00
Michael Kohler 7eac34a913 Bug 1256863 - [ESLint] Fix ESLint issues in devtools/client/webconsole/test/browser_webconsole_bug_646025_console_file_location.js r=linclark 2016-05-02 12:28:00 +02:00
Jarda Snajdr 929a8d5d40 Bug 1268806 - The SyntaxTreeVisitor in Parser.jsm fails to process computed names for object properties. r=nfitzgerald 2016-04-29 02:08:00 +02:00
Tom Tromey 8a9f366080 Bug 1266842 - replace rgbToColorName, colorToRGBA, isValidCSSColor in devtools; r=pbro
MozReview-Commit-ID: G5Zly0HPJuv

--HG--
extra : rebase_source : 85e0afd02cd676a2a7e0855a0b4956b7b9a2ac36
2016-04-28 08:46:19 -06:00
Tom Tromey 3ab72b1e0f Bug 1266842 - move css-color.js to devtools/client/shared; r=pbro
MozReview-Commit-ID: 9zS1Y4Ape2u

--HG--
rename : devtools/shared/css-color.js => devtools/client/shared/css-color.js
rename : devtools/shared/tests/unit/test_cssColor.js => devtools/client/shared/test/unit/test_cssColor.js
extra : rebase_source : fb9efd824bd025af2208b9d860f44ec67ece3de2
2016-04-28 08:41:40 -06:00
Carsten "Tomcat" Book 779fe0a0a8 Backed out changeset e58df849e249 (bug 1268461) for bustage 2016-05-03 13:37:29 +02:00
Eddy Bruel 56aee50d78 Bug 1268461 - Decouple OriginalSourceFront from OriginalSourceActor;r=jryans 2016-05-03 13:14:52 +02:00
Eddy Bruel e083fbac8b Bug 1268461 - Change the order in which the stylesheet actors are defined;r=jryans 2016-05-03 11:46:58 +02:00
Nicolas Chevobbe c6eac9c8b5 Bug 1269034 - Fix getSuggestionForQuery in inspector actor for id queries. r=bgrins
Make sure that result node id is not empty before appending it to the results

MozReview-Commit-ID: 5SuTrNf4t8v

--HG--
extra : transplant_source : E%AF%D7%A9W%DC%C6u%8B%9F%FF%00%A7%FEY%1A%7E%CA%AE%95
2016-04-30 00:36:17 +02:00
Jarda Snajdr 9ae963b23e Bug 1265729 - Decouple fronts from actors in storage inspector. r=ejpbruel 2016-04-29 04:34:00 +02:00
Lin Clark 01bbefc9c1 Bug 1264700 - [rep tests] Add tests for undefined rep. r=Honza 2016-05-02 10:02:00 +02:00
Agustin Cautin 5a37523e25 Bug 1256912 - Fixed eslint errors browser_webconsole_output_regexp.js; r=linclark 2016-04-30 06:56:00 +02:00
Nicolas Chevobbe 40d57bef03 Bug 1245365 - Fix markup view search with attribute selector. r=pbro
Add an ATTRIBUTE search state to better handle attribute's search.
Edit test to make sure we handle it right

MozReview-Commit-ID: ADcIJRbhjO

--HG--
extra : transplant_source : %C7R%AC%EE%2A%BA%C1%FE%B4%E4%D3%B0%D6c%B1%AB%B5%04%C6%CB
2016-04-21 21:54:03 +02:00
Hiroyuki Ikezoe 88be285f6a Bug 1254408 - Part 3 - Use longer duration to avoid intermitent failures. r=pbro 2016-04-27 18:06:00 +02:00
Ryo Motozawa bd7fd252a0 Bug 1254408 - Part 2 - Modifing tests for animation property warnings. r=pbro
MozReview-Commit-ID: GVTiHhHbKlN
2016-04-22 20:18:02 +09:00
Ryo Motozawa be5a1aae1f Bug 1254408 - Part 1 - Expose animation performance information in DevTools. r=pbro
MozReview-Commit-ID: FHC41UoFEUl
2016-04-22 20:17:58 +09:00
Julian Descottes f41452912d Bug 1268466 - ruleview: create new rule <style> el in frame document;r=tromey
To create new rules, style elements are added to the content document.
For nodes located in an iframe, the style element should be added to the
ownerDocument of this particular node.

MozReview-Commit-ID: 7ynd7YU3WeL

--HG--
extra : rebase_source : 48e989e229b7972101c2761c881127244530273d
2016-04-30 16:41:54 +02:00
Brian Grinstead e3eb99f4b9 Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 6SRZPkKamhD
2016-04-29 13:18:00 -07:00
Nicolas Chevobbe f3f3ce693d Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 77qsML4CXlh

--HG--
rename : devtools/client/webconsole/new-console-output/output-wrapper-thingy.js => devtools/client/webconsole/new-console-output/new-console-output-wrapper.js
2016-04-29 13:18:00 -07:00
Lin Clark 4800071c32 Bug 1260283 - Implement new console output frontend behind a pref. r=bgrins
MozReview-Commit-ID: Kl0G7lEFatj
2016-04-29 13:17:00 -07:00
Nicolas Chevobbe 02fc0e20ae Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 9y4QgUsRLa2
2016-04-29 13:17:00 -07:00
Lin Clark 8322afabcf Bug 1260283 - Implement new console output frontend behind a pref. r=bgrins
MozReview-Commit-ID: JvM0xrK7rks
2016-04-29 13:17:00 -07:00
Lin Clark 9cbc113dbf Bug 1260283 - Implement new console output frontend behind a pref. r=bgrins
MozReview-Commit-ID: 54Tl5b5T2EJ

--HG--
rename : devtools/client/webconsole/new-console-output/dummy-child-component.js => devtools/client/webconsole/new-console-output/components/console-output.js
2016-04-29 13:16:00 -07:00
Brian Grinstead 3597ecef6e Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 2WL6rKpiKgz
2016-04-29 13:15:00 -07:00
Lin Clark 87d4a2d6ff Bug 1260283 - Implement new console output frontend behind a pref. r=bgrins
MozReview-Commit-ID: B23YqAOqvW5
2016-04-29 13:14:00 -07:00
Brian Grinstead dd1643d2e5 Bug 1260283 - Implement new console output frontend behind a pref. r=linclark
MozReview-Commit-ID: 7xr6Wm45LK5
2016-04-29 13:14:00 -07:00
moaazsidat 45963cc05d Bug 1211613 - Re-organized the inspector context menu; r=pbro
MozReview-Commit-ID: HkSv091hpfC
2016-05-01 18:15:00 +02:00
Carsten "Tomcat" Book a62a8252e6 Merge mozilla-central to fx-team 2016-05-02 11:39:08 +02:00
Carsten "Tomcat" Book 548d98c27e merge mozilla-inbound to mozilla-central a=merge 2016-05-02 11:25:32 +02:00
Brian Grinstead 3642cda1f9 Bug 1257613 - Add an API to open context menus from an HTML document;r=jdescottes
MozReview-Commit-ID: 4j9d5k3Ut1f
2016-05-01 17:01:47 -07:00
Aryeh Gregor 49d7e81abf Bug 1264270 - Parser should output attributes in source order, not reversed; r=hsivonen,bgrins 2016-05-01 15:15:26 +03:00
Wes Kocher 5a74f93dfd Merge m-c to inbound, a=merge
MozReview-Commit-ID: 8tbWzOpUAR8
2016-04-29 16:01:16 -07:00
Wes Kocher 7cac146323 Bug 1244265 followup ESLint fix
MozReview-Commit-ID: 6RfemDKbqlH
2016-04-28 15:35:41 -07:00
Christoph Kerschbaumer ddb9e493bf Bug 1241569 - Convert devtools/ to use channel.open2(). r=sicking 2016-04-28 21:00:22 +02:00
David Walsh 2c4851f151 Bug 1244265 - Show file picker when save button clicked within the JSONView component. r=Honza
MozReview-Commit-ID: 70q35AbSBgO

--HG--
extra : amend_source : a749a55a82bb220016ca682f594e65b0d372566f
extra : transplant_source : 6%D2%200%82%2CtN%F6%9E4%7B%91%16%0A%DFa%21%FEs
2016-04-26 11:26:22 -05:00
Jarda Snajdr f387cfc0da Bug 1259743 - Part 3: Remove the mustNotifyServiceWorkerRegistrationChanged check as it's dead code. r=janx 2016-04-28 03:55:00 -04:00
Jarda Snajdr 266d684430 Bug 1259743 - Part 2: Make devtools/server/actors/webbrowser.js eslint-clean. r=ochameau 2016-04-28 03:54:00 -04:00
Jarda Snajdr 12ed4a19f0 Bug 1259743 - Part 1: Inline sources in iframe stop being displayed after few reloads. r=ochameau 2016-04-28 03:53:00 -04:00
Gabriel Luong 115ecc4d9a Bug 1267750 - [ESLint] Fix ESLint issues in devtools/server/actors/inspector.js r=pbro 2016-04-28 11:56:19 -04:00
Carsten "Tomcat" Book efeedc62cb Merge mozilla-central to fx-team 2016-04-28 16:34:59 +02:00
Carsten "Tomcat" Book 2666074aa0 merge mozilla-inbound to mozilla-central a=merge 2016-04-28 16:30:24 +02:00
Eddy Bruel 1f2009e3aa Bug 1265429 - Refactor protocol.js to allow fronts to be decoupled from actors;r=jryans 2016-04-28 12:10:40 +02:00
David Walsh 55dee7085e Bug 1255837 - Add padding to right edge of JSON View JSON Tab. r=Honza
MozReview-Commit-ID: 9G71PrC9kcy

--HG--
extra : rebase_source : ca458065f7097b3a097af90799398791b9ed340a
2016-04-19 10:05:37 -05:00
David Walsh 784e22bcdc Bug 1244268 - Remove expand/collapse headings in JSONView Headers tab. r=honza
MozReview-Commit-ID: GB5wKTUy0Eg

--HG--
extra : rebase_source : 21b323c0bba53db4cdae620bcb8bb322837fb65c
2016-04-19 09:36:31 -05:00
Nicolas Chevobbe 8ac826b23f Bug 820926 - Hide void-element's closing tag if the page is an HTML page. r=pbro
Though, if the element has pseudo-elements, and thus can be expanded, show
the closing tag when the void element is expanded.

MozReview-Commit-ID: 7UMMlVjYqLX
2016-04-28 01:51:46 -07:00
Jan Odvarko d2e20fee1a Bug 1269445 - Include required test files; r=pbro 2016-05-02 20:56:32 +02:00
Tom Tromey 4383c1a8b1 Bug 1265787 - add javascript CSS lexer to devtools; r=pbro
MozReview-Commit-ID: BgbACHTTMtX

--HG--
extra : transplant_source : %A3iN%27%23%04g%91%06%2CsB%24%ABA%E9%81%D2%EA%8C
2016-04-29 11:21:22 -06:00
Jan Odvarko 099c9858d7 Bug 1263404 - Fix condition in hasChildren; r=jryans 2016-05-03 19:57:21 +02:00
Matthew Noorenberghe 8c8f2a8308 Bug 1267378 - Follow-up to fix devtools space-before-function-paren errors
MozReview-Commit-ID: DCCsgYbGxcr

--HG--
extra : rebase_source : 1aff679a2ae3759b695585cc6a2e69b830f76e54
2016-04-28 01:19:08 -07:00
Carsten "Tomcat" Book bba206d411 Backed out changeset 797e8190073f (bug 1265876) for memory leaks in browser_markup_mutation_02.js 2016-04-28 08:13:42 +02:00
Tom Tromey f16c510764 Bug 1267378 - fix eslint errors in css-color.js; r=miker
MozReview-Commit-ID: D1MM5Yk9IKv

--HG--
extra : amend_source : 9303a23cc67d4499567557140dacb9b74fa6da5d
2016-04-25 13:56:04 -06:00
Tom Tromey ed07ccffa3 Bug 1265876 - don't directly use Timer.jsm or timers.js in devtools; r=ochameau
MozReview-Commit-ID: HzbnNvTc5db
2016-04-21 11:20:14 -06:00
Tom Tromey f13377234d Bug 1265772 - don't use Services.console or Console.jsm in devtools; r=bgrins
MozReview-Commit-ID: Ax4EwhRVE0R

--HG--
extra : amend_source : 11297b555f1175a0be506e3ab7e72592cd3c2cd2
2016-04-19 14:05:35 -06:00
Julian Descottes 82e45d4470 Bug 1178462 - Cancel inplace editor autocomplete on window blur;r=gl
MozReview-Commit-ID: BI9LHtUKta

--HG--
extra : rebase_source : 8321f9df764f5e2faddcaaae9597e0ac35e99020
2016-04-27 09:55:18 +02:00
Julian Descottes e14d5fdb1f Bug 1217769 - aboutdebugging: default to addons tab without navigating if hash is empty;r=janx
MozReview-Commit-ID: 8hlFDqrpKit

--HG--
extra : rebase_source : 2a5e39cc7bfeb458c44cc225f833ca65fa03aa80
2016-04-27 14:07:19 +02:00
Alexandre Poirot 7164e6284d Bug 1060732 - Load sources from page loaded via POST from cache in the debugger. r=ejpbruel 2016-04-27 09:43:59 -07:00
Jan Odvarko cf416c090e Bug 1266716 - Fix Firebug theme in the Storage inspector; r=ntim 2016-04-27 14:30:05 +02:00
Jan Odvarko b6a03a0310 Bug 1267998 - Firebug theme: better CSS for memory heap-tree. r=ntim 2016-04-27 16:16:37 +02:00
J. Ryan Stinnett 0b07b90aa6 Bug 1263258 - Require space before paren for anonymous functions. r=pbro
MozReview-Commit-ID: 2F0j45Vxn2I
2016-04-27 09:06:15 -05:00
Alexandre Poirot bf4a878a28 Bug 1264626 - Test the browser toolbox debugger. r=jryans,jlongster 2016-04-27 07:04:47 -07:00
Carsten "Tomcat" Book 05d6ba16fa merge mozilla-inbound to mozilla-central a=merge 2016-04-27 11:57:21 +02:00
Wes Kocher 77752786a4 Merge m-c to fx-team, a=merge
MozReview-Commit-ID: 3xgSmlsnSpk
2016-04-26 14:28:17 -07:00
Wes Kocher f20e8d0047 Merge inbound to central, a=merge
MozReview-Commit-ID: JIAGB82GtAS
2016-04-26 14:19:01 -07:00
Alexandre Poirot c0ae627a40 Bug 1263935 - Use AddonPathService.mapURIToAddonId instead of AddonManager.mapURIToAddonID. r=ejpbruel 2016-04-26 07:11:15 -07:00
Jan Odvarko be6d109116 Bug 1267274 - Firebug theme: fix position of the Inspector button; r=helenvholmes 2016-04-26 08:52:32 +02:00
Jan Odvarko 805383743a Bug 1266733 - Firebug theme: use white color for selected elements in the Inspector panel; r=bgrins 2016-04-25 17:27:17 +02:00
Jan Odvarko 913472a7fa Bug 1266310 - Firebug theme, fix row height in the Memory panel; r=fitzgen 2016-04-25 16:59:33 +02:00
Brian Grinstead ab9bb23b31 Bug 1254025 - Force the CodeMirror editor to always use a textarea. r=jdescottes
By default it switches to a contentEditable when a custom UA is applied, which
causes errors when trying to insert a controller.

MozReview-Commit-ID: AdRUpO3NHNF

--HG--
extra : transplant_source : _%D9%CA.%2A%E2zW%F1%F6%C5a%D2%89%C5%84%B5%5E%FCD
2016-04-26 07:00:53 -07:00
Tom Tromey cc930b7621 Bug 1265840 - Remove uses of Services.tm from inspector. r=pbro
MozReview-Commit-ID: DQoXLeXKUn3

--HG--
extra : transplant_source : %97%E9%DF%0DD%D5wk0%B1%07Q%10%0BI%A45JH%A6
2016-04-19 13:33:54 -06:00
Ryan VanderMeulen 4d12b543f0 Bug 1267278 - Update the skip-if annotation for browser_menu_item_02.js for all e10s debug. 2016-04-26 14:59:38 -04:00
Gabriel Luong 5e75c0a867 Bug 1266267 - Upgrade to CodeMirror 5.14.2 r=bgrins 2016-04-26 11:44:18 -04:00
"Helen V. Holmes" c1f32120ba Bug 1262839 - instead of centering all the viewports, they align to the top now - Remove extra #root rules no longer need, r=gl 2016-04-25 09:45:00 +02:00
Michael Ratcliffe 98177632d6 Bug 1226548 - Event listeners tooltip breaks the syntax in popup if there's a comment before event handler in JS code. r=ochameau
--HG--
rename : devtools/client/inspector/markup/test/browser_markup_events.js => devtools/client/inspector/markup/test/browser_markup_events1.js
rename : devtools/client/inspector/markup/test/doc_markup_events.html => devtools/client/inspector/markup/test/doc_markup_events1.html
2016-04-26 13:37:47 +01:00
Carsten "Tomcat" Book 4b698b9d7c Backed out changeset ee2fff382352 (bug 1244268) for bustage 2016-04-26 14:59:13 +02:00
Carsten "Tomcat" Book fac9466993 Backed out changeset 0587870803e7 (bug 1244265) 2016-04-26 14:59:00 +02:00
Phil fcde8e479b Bug 1260912 Instead of generating background image in JS in drawGraphElementBackground, use CSS styling; r=pbro 2016-04-25 09:43:00 +02:00
Paul Adenot 28c7de82e0 Bug 1243857 - Use a fake track in devtools web audio tests. irc-r=jesup
MozReview-Commit-ID: HrPTyPwtuLD
2016-04-26 14:19:23 +02:00
Carsten "Tomcat" Book 3c5ee70a18 merge mozilla-inbound to mozilla-central a=merge 2016-04-26 13:44:45 +02:00
gasolin 6935908bcd Bug 1256772 - Fix ESLint issues in devtools/client/webconsole/jsterm.js; r=linclark
MozReview-Commit-ID: 4fS6PsBGORI

--HG--
extra : transplant_source : eY%E9%C2%E4%D6%D4h%04%F0%EEFbX%8F%06%3C%C8c%7E
2016-04-07 14:43:39 +08:00