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

1489 Коммитов

Автор SHA1 Сообщение Дата
Wes Kocher 0fbf6c1476 merge inbound to m-c a=merge
MozReview-Commit-ID: BHxDQF6gIe3
2016-03-08 16:00:45 -08:00
Tooru Fujisawa a9ce01a3e6 Bug 1253859 - Properly stringify thrown symbol in console. r=fitzgen 2016-03-09 01:32:34 +09:00
Lin Clark 05225c81fc Bug 1253650 - Fix React propType warnings. r=fitzgen 2016-03-04 18:23:00 +01:00
Julian Descottes 523168a54c Bug 1253881 - memory profiler: toggle diffing when clearing snapshots;r=fitzgen
When clearing all snapshots, if currently displaying a diff, dispatch the
diffing.toggleDiffing action.

MozReview-Commit-ID: 1DyPZ7tHC1X

--HG--
extra : rebase_source : 595d182023567c01fc14b7fb25fc65406296466d
2016-03-07 21:23:32 +01:00
Brian Grinstead 4fbcf8548f Bug 1243958 - e10s fixes for browser_webconsole_bug_588342_document_focus.js;r=linclark
MozReview-Commit-ID: 6UPTfFWAFE9
2016-03-07 16:54:18 -08:00
J. Ryan Stinnett 3094c5d8e4 Bug 1253781 - Better perf with pure render. r=gl
There are few easy wins that greatly improve our perf with React:

* Add the PureRenderMixin to pure components that always render the same thing
  given the same props and state.  This implements React's shouldComponentUpdate
  as a shallow equality check of the props and state, so render() will be
  skipped if they match the previous values.
* Change action dispatch functions so they are only created once instead of on
  each render().  If an outer component creates new functions for each render()
  call, then the PureRenderMixin equality check fails for only the new function
  instances, even though no data has changed.

MozReview-Commit-ID: D96X048nEF4
2016-03-07 12:00:43 -06:00
Patrick Brosset 61aab1f481 Bug 1245383 - Use ContentTask.spawn to access the content window in 2 scratchpad tests; r=ochameau
browser_scratchpad_contexts.js and browser_scratchpad_execute_print.js used to
access javascript properties on the content window object by using 'content.'
directly.
Now these tests use 'ContentTask.spawn' instead, which required the
runAsyncCallbackTests helper to be changed so it would use a Task and yield
on the promises returned by prepare and then.

MozReview-Commit-ID: Cgw2mRxPrP4

--HG--
extra : rebase_source : de57e5c7ab155ee48f537941e0db7cf7f82ed266
2016-03-07 17:56:05 +01:00
Gabriel Luong 9227e41d43 Bug 1253879 - Update the devtools-separator to be the same style as the sidebar tab separator r=pbro 2016-03-07 11:43:07 -05:00
Julian Descottes ed8fb019e9 Bug 1230325 - markup-view: skip keyboard shortcuts if any modifier;r=pbrosset
Bail out from the markup view onKeyDown handler if any modifier is currently
true. All shortcuts specified in this handler are intended to be used without
modifier, so for now this approach is fine.

Added a test checking the use case mentioned in Bug 1230325, with the S
shortcut. In order to write the test, had to create an additional method on
the test actor to be able to wait for events in the window of the content process.

MozReview-Commit-ID: 67icou0HkfA

--HG--
extra : rebase_source : e7235c487134505563cae3c5ac8bdabd42dc4363
2016-03-04 18:15:32 +01:00
Myk Melez db9a40ca42 Bug 1238079 - remove the desktop web runtime; r=fabrice,mossop,gps,jryans,jmaher,marco 2016-03-07 13:33:12 -08:00
CuriousLearner 97f4f90224 Bug 1222937 - Show a dedicated error message for animated pseudo elements; r=pbro
MozReview-Commit-ID: Gv9YAsX9l2F
2016-02-05 20:10:18 +05:30
Julian Descottes 1b8d59ea79 Bug 1251755 - markupview: add z-index 1 to pseudoclass ind.r=pbrosset
With Bug 1195120, the ".tag-line .tag-state" has a z-index of 0 instead
of -1. This element is used to display the colored background of a selected
row.

Adding z-index:1 to the pseudoclass indicator ensures it is displayed above
the .tag-state element.

MozReview-Commit-ID: K4aWyJXevWf

--HG--
extra : amend_source : 0db0ef5ae49d838949fd9f105d6c5733c9c9aed0
2016-03-07 09:15:15 +01:00
Ryan VanderMeulen 34d8629eea Bug 1253935 - Skip browser_styleeditor_fetch-from-cache.js on Windows debug e10s for frequent failures depending which chunk it runs in. 2016-03-06 13:22:36 -05:00
Ryan VanderMeulen 6dbe3f44d4 Bug 1252641 - Skip browser_net_image-tooltip.js for frequent failures.
--HG--
extra : histedit_source : 9332418f3c9177d55897cc07a5cdcd0f7d6bdb9c
2016-03-05 22:41:43 -05:00
Ryan VanderMeulen 49633b7903 Bug 1242204 - Skip browser_net_details-no-duplicated-content.js on Linux debug e10s for being nearly permafail.
--HG--
extra : histedit_source : 0af2cbee0f1f8382399e8e4788ffe47217365832
2016-03-05 22:35:17 -05:00
Ryan VanderMeulen 1f49ee764c Bug 1232931 - Skip browser_service_workers_timeout.js for frequent failures across all platforms. 2016-03-05 22:31:05 -05:00
Ryan VanderMeulen 301805c46d Bug 1252283 - Skip the animationinspector tests on Linux debug e10s. 2016-03-05 22:31:05 -05:00
Ryan VanderMeulen e41e37efae Bug 1250058 - Skip browser_inspector_initialization.js on Linux debug e10s as well. 2016-03-05 22:31:02 -05:00
Ryan VanderMeulen f11c8d4e74 Bug 1229272 - Skip browser_storage_sidebar.js on Windows e10s for frequent failures. 2016-03-05 22:18:40 -05:00
Ryan VanderMeulen a262a0ac66 Bug 1252201 - Skip various leaky devtools tests on Linux debug as well. 2016-03-05 22:17:23 -05:00
Ryan VanderMeulen 599f2304e0 Merge m-c to inbound. a=merge 2016-03-05 19:30:51 -05:00
Ryan VanderMeulen 54367e83bf Merge fx-team to m-c. a=merge 2016-03-05 19:22:45 -05:00
Philip Chee 0772ec1731 Bug 1252479 - Adding the Developer Dynamically (Bug 1248601) doesn't work in SeaMonkey because it doesn't have a "browser-bottombox" r=ochameau
--HG--
extra : rebase_source : 9038cc693f739a2f4bd09ad1e1ee4ce26f588df0
2016-03-06 01:44:38 +08:00
J. Ryan Stinnett e1bf9e0d01 Bug 1245121 - Enable JSON Viewer on !RELEASE_BUILD. r=Honza
MozReview-Commit-ID: ItfrT4SPE6e
2016-03-04 17:03:39 -06:00
Jarda Snajdr 3986fe2698 Bug 1244725: DevTools: Show text of a HTTP response for video live streaming content types r=Honza
MozReview-Commit-ID: CA4tiyEtsTX

--HG--
extra : rebase_source : cb53c731f051df2083f197ccc5977e96ab19b52f
2016-03-03 04:39:00 -08:00
Lin Clark 9308035592 Bug 1253693 - Switch prefer-es6-class React .eslintrc to prefer createClass. r=jlong
MozReview-Commit-ID: 1IuYNShuBwH

--HG--
extra : rebase_source : ced881f0fc5c5949032199ffb61a2ee8892e1f89
2016-03-04 12:22:00 -08:00
Victor Porof 182a7e33b9 Bug 1243925 - Extra white space in JIT view. r=jsantell 2016-03-02 20:00:41 +01:00
Ryan VanderMeulen a9d4eb0d80 Bug 1229272 - Skip browser_storage_sidebar.js for debug e10s on all Windows versions.
--HG--
extra : rebase_source : 87f10bbeaba2496bca6ba5df6ab3c87842daa295
2016-03-05 15:53:56 -05:00
Ryan VanderMeulen 082f681fb6 Bug 1252283 - Skip the animationinspector tests on Windows debug e10s due to frequent asserts.
--HG--
extra : rebase_source : f6a82b608ca699cef03064c09e0d068853c96727
2016-03-05 15:21:17 -05:00
Alexandre Poirot d0c7567616 Bug 1247203 - Register tools and themes in the sorted order. r=jryans 2016-03-04 07:51:12 -08:00
Alexandre Poirot a65ec348c1 Bug 1247203 - Do not hardcode main module path in Loader.jsm. r=jryans 2016-03-04 07:51:12 -08:00
Alexandre Poirot 2148b1df6a Bug 1247203 - Move telemetry ping from gDevTools to gDevToolsBrowser. r=jryans 2016-03-04 07:51:12 -08:00
Alexandre Poirot a31928ec8f Bug 1247203 - Remove useless call to main(). r=jryans 2016-03-04 07:51:11 -08:00
Alexandre Poirot 8e3356b5c8 Bug 1247203 - Emit devtools-loaded from the loader. r=jryans 2016-03-04 07:51:11 -08:00
Alexandre Poirot fc8a7748f7 Bug 1247203 - Stop exporting useless symbols of of devtools/client/main. r=jryans 2016-03-04 07:51:11 -08:00
Mike de Boer 7a4941b3e4 Bug 1241930: Part 3 - convert all assertion methods used inside content tasks to the Assert.* family in devtools tests. r=mconley 2016-03-04 14:32:27 +01:00
Carsten "Tomcat" Book 6e681479dc Merge mozilla-central to fx-team 2016-03-04 13:40:08 +01:00
Eddy Bruel 3924bc97e6 Bug 1207506 - Replace all uses of Services.io in path.js with URL;r=janx 2016-03-04 13:06:48 +01:00
Eddy Bruel 21cd137fcb Bug 1252077 - The debugger should identify Scratchpad sources as JavaScript;r=jlong 2016-03-04 13:01:47 +01:00
Carsten "Tomcat" Book 7141570807 merge mozilla-inbound to mozilla-central a=merge 2016-03-04 11:49:58 +01:00
Phil Ringnalda 4fc06aef08 Back out 054bd8841f4c (bug 1249106) for doing just what it intended, causing devtools tests to fail with "Warning: Failed propType", just a bit too often 2016-03-03 21:41:32 -08:00
Nick Fitzgerald f92f7a7fae Bug 1251492 - Don't prevent default behavior of unrelated mouse events in HSplitBox. r=linclark 2016-03-02 11:05:00 -05:00
Tim Nguyen 74c6f50e80 Bug 1253072 - Small bug fixes to the Storage Inspector functionality. r=miker
MozReview-Commit-ID: 7s1Ua2ecy0I
2016-03-02 14:52:00 -05:00
Greg Tatum e150ac87f6 Bug 1242958 - The cursor type is not I-beam when the mouse pointer is over the heap-view. r=fitzgen 2016-03-01 07:28:00 -05:00
Lin Clark 75dc726f8f Bug 1249106 - Fail tests when React propType errors are logged. r=jryans 2016-03-02 17:07:00 -05:00
Greg Tatum 6e1bb67700 Bug 1252971 - Memory panel docs update. r=fitzgen
After going through a deep dive into the memory tool I've updated
and clarified a few things in the docs that I found confusing.
2016-03-02 12:51:00 -05:00
Patrick Brosset 138604079b Bug 1252099 - Final eslint cleanups in devtools/client/inspector/markup/test; r=miker
Many event-bubble tests had max-len issues that would have been really
awkward to fix by wrapping the lines. So I decided to disable eslint for
those lines instead.

This patch fixes the last remaining eslint issues and un-ignores the
directory in .eslintignore.

MozReview-Commit-ID: KQ8qtrFceaf

--HG--
extra : rebase_source : d907de27c9d866af174ac8135f8317520c4d87a2
2016-03-02 16:14:16 +01:00
Patrick Brosset 3dc525e814 Bug 1252099 - Remove usage of getNode and content in markupview tests; r=ochameau
MozReview-Commit-ID: F58e1CcwHNs

--HG--
extra : rebase_source : 6492997a05363bc88e00d0726a60f7dfe1bb8125
2016-03-03 16:35:21 +01:00
Patrick Brosset c03927677a Bug 1252099 - Main eslint cleanup of markupview tests; r=zer0
MozReview-Commit-ID: FJpdiPUeVcr

--HG--
extra : rebase_source : ecdeff2df26ef39afef5aa6cc33439d91d33fda3
2016-03-03 16:20:03 +01:00
Matteo Ferretti 67f2481ef2 Bug 1239464 - Close button for exiting the responsive design view; r=jryans
MozReview-Commit-ID: Fygjgc7FHzF
2016-03-04 01:21:19 -05:00