Commit Graph

5837 Commits

Author SHA1 Message Date
Jonathan Hao
b3c9a8ce3d Bug 1342178 - Combine test_network_security-{hsts/hpkp}.html. r=Honza,keeler
MozReview-Commit-ID: 3xXdOa1j7hm

--HG--
extra : rebase_source : 9e496b0cb1d38e6292b8540a6023f7f2c83451e2
2017-04-11 10:14:08 +08:00
Julian Descottes
6d54a87bb1 Bug 1345529 - fix inspector DocumentWaler children() method;r=pbro
The inspector's DocumentWalker had several issues when trying to retrieve
children for a given node, especially if the starting node was filtered
out by the filter function of the walker.

If the starting node was provided by options.center or options.start
and if this starting node was filtered out by the walker's filter
then the walker would fallback to the first valid parent of this node.

eg with
parent1 > parent2 > [valid-node, invalid-node, valid-node]

When asking for the children of parent2, if the walker started on
"invalid-node", then the walker would instead use parent2 and in turn
we would retrieve the children of parent 1

To fix that we can either tell the walker wether it should fallback to a
sibling of the starting node or to a parent, or make sure that the nodes
provided to the walker are valid.

A second issue was with the utility methods _readForward and _readBackward.
They both use the next/previousSibling() methods of a walker in order to
collect all the valid siblings of the walker's current node. But they were
always including the current node of the walker in their return array. And
there is no guarantee that the walker's currentNode is actually valid for it's
filter.

eg with a walker containing [invalid-node-1, invalid-node-2, valid-node].
Let's say the walker is currently on valid-node and we call previousSibling
The walker will do 3 steps:
- this.walker.previousSibling() > returns invalid-node-2, fails filtering
- this.walker.previousSibling() > returns invalid-node-1, fails filtering
- this.walker.previousSibling() > returns null, stop looping and return null

But at this stage the internal walker still points to the last visited node
(invalid-node-1). So if _readForward/Backward blindly add the current node
of the walker, we might be returning invalid nodes.

MozReview-Commit-ID: 72Be7DP5ky6

--HG--
extra : rebase_source : 31e7d3321abef04243b741196d4ca6279cefd53a
2017-04-06 23:17:03 +02:00
Wes Kocher
59b56514c9 Backed out 4 changesets (bug 1342178) for frequent test_network_security.html failures a=backout
Backed out changeset 7f9114ffbcae (bug 1342178)
Backed out changeset f19289f0cfef (bug 1342178)
Backed out changeset 4afce44bc2b9 (bug 1342178)
Backed out changeset db9b64a44012 (bug 1342178)

--HG--
rename : devtools/shared/webconsole/test/test_network_security.html => devtools/shared/webconsole/test/test_network_security-hpkp.html
2017-04-10 12:34:10 -07:00
Sebastian Hengst
75ef19148e merge mozilla-central to autoland. r=merge a=merge 2017-04-11 11:33:40 +02:00
Ricky Chien
feac5ac63d Bug 1350224 - Support for loading ContextMenu in Launchpad r=gasolin
MozReview-Commit-ID: GXFz9ZtiBWy

--HG--
extra : rebase_source : d051b72876a14b62a9e79f8ee1b9336dd343cbbb
2017-04-10 23:38:48 +08:00
Fred Lin
63adc37c0d Bug 1352049 - Network panel documentation;r=Honza,rickychien
MozReview-Commit-ID: J4EZnTSmRDA

--HG--
extra : rebase_source : 297c51531b06a2509bffa4804af1f20528b703d4
2017-04-10 15:51:24 +08:00
J. Ryan Stinnett
fefcbc4f99 Bug 1354614 - Remove legacy performance front. r=gregtatum
The legacy performance path supports servers running Firefox 42 and earlier.
Now that Firefox OS is no longer supported, there's no reason to keep this
around.

MozReview-Commit-ID: K40e93VUjj9

--HG--
extra : rebase_source : ec2fbe68b7fe2f4d8e53b30d194dc026294b5f53
2017-04-07 13:14:26 -05:00
Jonathan Hao
851f486bfc Bug 1342178 - Pass origin attributes to isSecureURI in devtools and browser. r=keeler,past
MozReview-Commit-ID: HIOYH8iUUkO

--HG--
extra : rebase_source : e8cfe06ac3691d45bf97f61a3f5603cbec1bae39
2017-04-06 15:43:35 +08:00
Jonathan Hao
f44e174e46 Bug 1342178 - Regression tests for HSTS/HPKP information in private browsing window. r=Honza,keeler
MozReview-Commit-ID: FqRj6RL7noP

--HG--
extra : rebase_source : df632fb3b69955834531fdf9a996f7c04a008f81
2017-04-06 15:43:32 +08:00
Jonathan Hao
3a8f450157 Bug 1342178 - Rename test_network_security-hpkp.html. r=Honza,keeler
MozReview-Commit-ID: I82vZXxJgTI

--HG--
rename : devtools/shared/webconsole/test/test_network_security-hpkp.html => devtools/shared/webconsole/test/test_network_security.html
extra : rebase_source : ca38bb55d43c9ef22e2f74494c631af4a048abf4
2017-04-06 15:43:32 +08:00
Jonathan Hao
eaff28bb6e Bug 1342178 - Combine test_network_security-{hsts/hpkp}.html. r=Honza,keeler
MozReview-Commit-ID: 3xXdOa1j7hm

--HG--
extra : rebase_source : ae273604e6a7a9e89c6082a04b3f8820ec2427bc
2017-04-06 15:43:31 +08:00
Phil Ringnalda
a79eb1fa8e Backed out changeset fda9bea59c6f (bug 1345529) for timeouts in browser_markup_mutation_01.js 2017-04-10 08:18:03 -07:00
Julian Descottes
68eb222f26 Bug 1345529 - fix inspector DocumentWaler children() method;r=pbro
The inspector's DocumentWalker had several issues when trying to retrieve
children for a given node, especially if the starting node was filtered
out by the filter function of the walker.

If the starting node was provided by options.center or options.start
and if this starting node was filtered out by the walker's filter
then the walker would fallback to the first valid parent of this node.

eg with
parent1 > parent2 > [valid-node, invalid-node, valid-node]

When asking for the children of parent2, if the walker started on
"invalid-node", then the walker would instead use parent2 and in turn
we would retrieve the children of parent 1

To fix that we can either tell the walker wether it should fallback to a
sibling of the starting node or to a parent, or make sure that the nodes
provided to the walker are valid.

A second issue was with the utility methods _readForward and _readBackward.
They both use the next/previousSibling() methods of a walker in order to
collect all the valid siblings of the walker's current node. But they were
always including the current node of the walker in their return array. And
there is no guarantee that the walker's currentNode is actually valid for it's
filter.

eg with a walker containing [invalid-node-1, invalid-node-2, valid-node].
Let's say the walker is currently on valid-node and we call previousSibling
The walker will do 3 steps:
- this.walker.previousSibling() > returns invalid-node-2, fails filtering
- this.walker.previousSibling() > returns invalid-node-1, fails filtering
- this.walker.previousSibling() > returns null, stop looping and return null

But at this stage the internal walker still points to the last visited node
(invalid-node-1). So if _readForward/Backward blindly add the current node
of the walker, we might be returning invalid nodes.

MozReview-Commit-ID: 72Be7DP5ky6

--HG--
extra : rebase_source : 6230899f57b624ad8dd374f8f9e712f430acf9df
2017-04-06 23:17:03 +02:00
Vangelis Katsikaros
9307a44c96 Bug 966209 - Add a context menu for images in the Response panel. r=rickychien
MozReview-Commit-ID: B3aNoGxVBNQ

--HG--
extra : rebase_source : f87dae2df09bdb2dd192300dceefc9a80b636884
2017-04-10 12:21:36 +03:00
Ricky Chien
614a5e5e24 Bug 1352699 - Fix mochitest failures r=gasolin
MozReview-Commit-ID: HmlBgPkjxoS

--HG--
extra : rebase_source : 087b99e0a957347e5652924eb5770a4b1500a1fe
2017-04-09 16:55:13 +08:00
Ricky Chien
b01b798a47 Bug 1352699 - Remove cyclic dependency in devtools loader r=Honza
MozReview-Commit-ID: 3tzqmyOGM7M

--HG--
extra : rebase_source : b4f5461af4c9d6a466489df94ea5733e1c7e0180
2017-04-09 16:51:41 +08:00
Ricky Chien
4a003809b3 Bug 1352699 - Make netmonitor run on devtools-launchpad r=Honza
MozReview-Commit-ID: 4khCXm2lfzG

--HG--
extra : rebase_source : d50dd14c0532df7b0cb30c432af3de1dd55953a1
2017-04-01 23:01:06 +08:00
Ricky Chien
ed84ed26de Bug 1352699 - Fix gStore instance issue in NetMonitorController r=Honza
MozReview-Commit-ID: CWAnmdEtJwc

--HG--
extra : rebase_source : 5d7f145bf29976c189b7675fae62ba7abba7c751
2017-04-01 16:39:41 +08:00
Ricky Chien
4bd13775e6 Bug 1352699 - Access single Services.prefs instance r=Honza
MozReview-Commit-ID: GS77TZqwFc

--HG--
extra : rebase_source : a6a7528d14bcb51bf9dd77e9da647ed38a57a7a7
2017-04-01 12:32:27 +08:00
Fred Lin
3d18a99f39 Bug 1343774 - remove unused functions;r=Honza
MozReview-Commit-ID: CCB8o7mXOPR

--HG--
extra : rebase_source : 707c92c992e00aa7de8c9d28a1d85b6f8ea44d28
2017-04-07 11:55:13 +08:00
Sebastian Hengst
2215f699e3 Bug 1352801 - Disable MDN tooltip feature in rule inspector. r=gl
MozReview-Commit-ID: 6QOi9yqKcVH

--HG--
extra : rebase_source : b046ca72d0bcbc400b8109d246f10509829fed03
2017-04-09 21:53:18 +02:00
Tim Nguyen
c066dea37b Bug 1306986 - Fix occurances of :-moz-locale-dir affecting HTML devtools panels. r=jdescottes
MozReview-Commit-ID: Bi2s5Eq9Qap

--HG--
extra : rebase_source : e8be90311050f7c717fa885532249a3876ced3da
2017-04-09 23:48:22 +02:00
Sebastian Hengst
e1a015ae5c Backed out changeset f74ec3b3a49a (bug 1352801) for eslint failure. r=backout 2017-04-09 22:33:34 +02:00
Sebastian Hengst
8975f9e7e1 Bug 1352801 - Disable MDN tooltip feature in rule inspector. r=gl
MozReview-Commit-ID: 6QOi9yqKcVH

--HG--
extra : rebase_source : 975341a1f31a04b45a746c9476d28c70d1b21109
2017-04-04 11:12:26 +02:00
Tim Nguyen
76d0710e86 Bug 1041895 - Add support for different flags with text filtering. r=rickychien
MozReview-Commit-ID: GvHXYIxwFrM

--HG--
extra : rebase_source : 91e217701e43cc78fd638c09f889ca16e81af35f
2017-04-09 17:42:00 +02:00
Sebastian Hengst
6a5fe3bae0 merge mozilla-inbound to mozilla-central. r=merge a=merge
MozReview-Commit-ID: IkoXCAwjjKu
2017-04-08 22:49:04 +02:00
Mayank Srivastav
ae997781f5 Bug 1156019 - Fix the issue of background-size property, regenerated properties css database & updated tests. r=xidorn
MozReview-Commit-ID: ACRxUEWBbSM

--HG--
extra : rebase_source : 87876016c618465552bb86a21e12a5643cd530cc
2017-04-07 11:01:00 -04:00
Sebastian Hengst
6240016cff Backed out changeset bfbe5b157e77 (bug 1353706) for likely letting devtools' browser_webconsole_hpkp_invalid-headers.js fail. r=backout 2017-04-07 21:36:10 +02:00
Florian Scholz
3147efb1ca Bug 1353706 – Update errordocs mapping to include more JS errors. r=Honza 2017-04-06 06:17:00 -04:00
Gabriel Luong
d12219f2e5 Bug 1350046 - Fix react-related errors in the layout panel. r=jdescottes 2017-04-07 13:11:33 -04:00
Phil Ringnalda
1c365d10e3 Backed out 2 changesets (bug 1343167) for mass failures in browser_inspector_textbox-menu.js
Backed out changeset 6aa495cd9908 (bug 1343167)
Backed out changeset 98d4fa0f8bf8 (bug 1343167)
2017-04-06 21:01:43 -07:00
Wes Kocher
0c3144c6f6 Merge inbound to central, a=merge 2017-04-06 15:01:34 -07:00
Sebastian Hengst
222d5ebd0d Backed out changeset ed9cefa8d2db (bug 1352699) for failing talos damp test. r=backout 2017-04-06 20:16:01 +02:00
Sebastian Hengst
7370b3abcb Backed out changeset 259e15518d23 (bug 1352699) 2017-04-06 20:15:19 +02:00
Sebastian Hengst
8eaa228f2c Backed out changeset a3ef74b43978 (bug 1352699) 2017-04-06 20:15:15 +02:00
Sebastian Hengst
c3051461a1 Backed out changeset 5ce4dbfe0248 (bug 1352699) 2017-04-06 20:15:10 +02:00
Sebastian Hengst
f3ad96d350 Backed out changeset b4ea2d6a8a14 (bug 1352699) 2017-04-06 20:15:06 +02:00
Gabriel Luong
79d1d3cffc Bug 1343167 - Fix eslint errors in BoxModelMain.js. r=me 2017-04-06 12:08:35 -04:00
Gabriel Luong
7afb653508 Bug 1343167 - Add navigation for the box model's position, padding, border, margin and content layout. r=jdescottes 2017-04-06 11:24:38 -04:00
Stoyan Dimitrov
49cdc6d567 Bug 1045273 - "[gcli] optional parameters labeled as 'helpManOptional', not as optional in help" r=mratcliffe
MozReview-Commit-ID: HFGkU77huBw

--HG--
extra : rebase_source : f8b921760207d9cb86cd7a297e7ac7ac3bd40164
2017-04-04 05:48:00 +01:00
Carsten "Tomcat" Book
207b516e89 merge mozilla-inbound to mozilla-central a=merge 2017-04-06 12:50:50 +02:00
Stanford Lockhart
21ae462510 Bug 1352790 - Don't rotate box model position labels. r=gl
MozReview-Commit-ID: LtIwkkFebwt
2017-04-04 16:36:38 -03:00
Jan Odvarko
f9e8db3c62 Bug 1353006 - Stop using sdk/window/utils in JSONViewer; r=jryans
MozReview-Commit-ID: 5znvDLtUjWO

--HG--
extra : rebase_source : 3b9f6bbca626abc0a6082cb0fdb8aff39bf62707
2017-04-05 15:00:31 +02:00
Jan Odvarko
1d58a4ae9a Bug 1353006 - Stop using sdk/clipboard in JSONViewer; r=jryans
MozReview-Commit-ID: AQXsf3DQdS9

--HG--
extra : rebase_source : c204f9ba27c3c9852b7fade9d0c207bd8bc00eff
2017-04-05 14:57:49 +02:00
Jan Odvarko
88956229a0 Bug 1353006 - Stop using sdk/dom/events in JSONViewer; r=pbro
MozReview-Commit-ID: CxpW8aysaSJ

--HG--
extra : rebase_source : a9696913aa212b06858c7376eccc038299fac266
2017-04-05 14:35:16 +02:00
Patrick Brosset
498369fdf0 Bug 1354647 - Move the eyedropper l10n strings to /devtools/shared/; r=jryans
MozReview-Commit-ID: Fgu72wGpFK1

--HG--
rename : devtools/client/locales/en-US/eyedropper.properties => devtools/shared/locales/en-US/eyedropper.properties
extra : rebase_source : 25ceb960d644fea262caa4d2535f2d306f79aff2
2017-04-07 22:00:00 +02:00
Patrick Brosset
f5dd02cc37 Bug 1353012 - Use the ObserverService in webaudio actor instead of sdk/system/events; r=jdescottes
MozReview-Commit-ID: DxNf72egWVP

--HG--
extra : rebase_source : eb13d6865e61429cb428c654bc38d7ef7ccd4cb1
2017-04-05 15:44:46 +02:00
Patrick Brosset
7fe590f6f3 Bug 1354587 - Move the RDP docs to the tree; r=pbro
Just a copy of the existing wiki article. No review needed.

MozReview-Commit-ID: 5P03t3QI6Wh

--HG--
extra : rebase_source : ad53b60caf575fc44a0a59ded79c4f7907722d1a
2017-04-07 17:55:34 +02:00
Locke Chen
29b6845e6b Bug 1350229 - Removing Preview side panel. r=rickychien
MozReview-Commit-ID: aDksj7VKAp

--HG--
extra : rebase_source : b0c19cc8fc7b41fed7909f3a1ee56a16ee0f4468
2017-04-07 23:31:18 +08:00
J. Ryan Stinnett
f9f3e1275b Bug 1352157 - Avoid listTabs for global actors. r=ochameau
Adds a new `getRoot` request to the root actor which lists the global actors
only (leaving out the tabs).  This is a much better fit for callers who want to
access some global actor only, since it avoids visiting every tab, which could
be a very expensive operation.

MozReview-Commit-ID: 1lIAuaV7zoF

--HG--
extra : rebase_source : bf64ee1298591f26ffa4c6a660cca52145084b66
2017-04-06 23:00:22 -05:00
J. Ryan Stinnett
926b7c208f Bug 1352157 - Improve root actor style with async / await. r=ochameau
MozReview-Commit-ID: 3UspkZ63auc

--HG--
extra : rebase_source : 5af879ca85fefbfba8cdb9851e4cf374a3a7a106
2017-04-06 22:25:34 -05:00
Sebastian Hengst
8045da95a8 Backed out changeset bfbe4eb625ef (bug 1352699) for failing talos damp test. r=backout 2017-04-07 18:56:59 +02:00
Sebastian Hengst
e9c9d0ef84 Backed out changeset c5af4cbaeaef (bug 1352699) 2017-04-07 18:56:23 +02:00
Sebastian Hengst
70ac186890 Backed out changeset 41b035e87e4c (bug 1352699) 2017-04-07 18:56:19 +02:00
Sebastian Hengst
57b9517bfd Backed out changeset ebf51fe3e266 (bug 1352699) 2017-04-07 18:56:15 +02:00
Sebastian Hengst
598aa2f2fe Backed out changeset 018647263e4a (bug 1352699) 2017-04-07 18:56:10 +02:00
J. Ryan Stinnett
5de2d8377f Bug 1353045 - Remove SDK usage from RDM. r=pbro
MozReview-Commit-ID: I2dodBb9NHh

--HG--
extra : rebase_source : 0ce62635307c19e1d449f2c773bacaaf998a5970
2017-04-06 21:42:21 -05:00
Ricky Chien
50848b589c Bug 1352699 - Fix mochitest failures r=Honza
MozReview-Commit-ID: 8rhAQw5oflC

--HG--
extra : rebase_source : 493e558a566548ca713c952b87c00575b5332e0d
2017-04-05 22:59:57 +08:00
Ricky Chien
83be5c2660 Bug 1352699 - Remove cyclic dependency in devtools loader r=Honza
MozReview-Commit-ID: GrtNP7WD8ys

--HG--
extra : rebase_source : de8de90aeb4d74389a8fbfebb3960266019c6911
2017-04-02 08:28:29 +08:00
Ricky Chien
bce38c9490 Bug 1352699 - Make netmonitor run on devtools-launchpad r=Honza
MozReview-Commit-ID: 4khCXm2lfzG

--HG--
extra : rebase_source : a520cc21fd1444fa1deeb2eacb3a9f973d693d7a
2017-04-01 23:01:06 +08:00
Ricky Chien
d006b3aa8a Bug 1352699 - Fix gStore instance issue in NetMonitorController r=Honza
MozReview-Commit-ID: CWAnmdEtJwc

--HG--
extra : rebase_source : cafe5d7a0f7e99b1076b42339a47c767af1dc861
2017-04-01 16:39:41 +08:00
Ricky Chien
e0a7b8f112 Bug 1352699 - Access single Services.prefs instance r=Honza
MozReview-Commit-ID: GS77TZqwFc

--HG--
extra : rebase_source : 72bb532891c61e321a173b163d4101a637f5e581
2017-04-01 12:32:27 +08:00
Ricky Chien
9a679079d7 Bug 1350221 - Support for loading Chart in Launchpad r=Honza
MozReview-Commit-ID: 9VDJ03yXo3l

--HG--
extra : rebase_source : 51c1da13d711160ba3783ece8a81c4d15d73e2a1
2017-04-07 21:03:01 +08:00
Sebastian Hengst
04a9d28a8f Backed out changeset c001a2501875 (bug 1343774) for failing talos damp. r=backout 2017-04-07 13:48:53 +02:00
Fred Lin
94e7614dff Bug 1343774 - remove unused functions;r=Honza
MozReview-Commit-ID: CCB8o7mXOPR

--HG--
extra : rebase_source : 207bc91aaf9057b57153e76034f273906f27200b
2017-04-07 11:55:13 +08:00
Carsten "Tomcat" Book
ab87252d1a Backed out changeset e22c18d39a92 (bug 1352699) for talos failures 2017-04-07 10:49:21 +02:00
Carsten "Tomcat" Book
84176d993c Backed out changeset a822f74d410e (bug 1352699) 2017-04-07 10:48:10 +02:00
Carsten "Tomcat" Book
5010bfe1c5 Backed out changeset afbfe3a5cdb6 (bug 1352699) 2017-04-07 10:48:08 +02:00
Carsten "Tomcat" Book
5db0c1c8bf Backed out changeset 48d3321e3474 (bug 1352699) 2017-04-07 10:48:06 +02:00
Carsten "Tomcat" Book
83d84af024 Backed out changeset 2b6c014551e0 (bug 1352699) 2017-04-07 10:48:04 +02:00
Ricky Chien
808805247c Bug 1352699 - Fix mochitest failures r=Honza
MozReview-Commit-ID: 8rhAQw5oflC

--HG--
extra : rebase_source : 609bd5ad639e7bbedbef23b23dc890ff6fb178f3
2017-04-05 22:59:57 +08:00
Ricky Chien
8503cf41b6 Bug 1352699 - Remove cyclic dependency in devtools loader r=Honza
MozReview-Commit-ID: GrtNP7WD8ys

--HG--
extra : rebase_source : 564f4ab9bfa4d5b644312bb495b338d435611384
2017-04-02 08:28:29 +08:00
Ricky Chien
02dbca99f3 Bug 1352699 - Make netmonitor run on devtools-launchpad r=Honza
MozReview-Commit-ID: 4khCXm2lfzG

--HG--
extra : rebase_source : de8167f771793f2da2092470d261a2a56afa3683
2017-04-01 23:01:06 +08:00
Ricky Chien
470287a219 Bug 1352699 - Fix gStore instance issue in NetMonitorController r=Honza
MozReview-Commit-ID: CWAnmdEtJwc

--HG--
extra : rebase_source : d22e2b5a517fd244b22e39f38cc3688e7a2863e5
2017-04-01 16:39:41 +08:00
Ricky Chien
99b7c5bdf8 Bug 1352699 - Access single Services.prefs instance r=Honza
MozReview-Commit-ID: GS77TZqwFc

--HG--
extra : rebase_source : b26fae943c475596069da2ad12bc6be9f4560cf0
2017-04-01 12:32:27 +08:00
Iris Hsiao
acf7c794ef Backed out changeset 33be5bce0905 (bug 1346902) for devtool test failing in browser_browser_toolbox_debugger.js 2017-04-06 10:41:47 +08:00
J. Ryan Stinnett
adb8a3db8c Bug 1346902 - Re-enable new debugger UI for Browser Toolbox. r=Gijs,rpl
It appears the new debugger UI is working for the Browser Toolbox case, so let's
turn it on to match our approach with web content.

MozReview-Commit-ID: 1HhSKwZMH2f

--HG--
extra : rebase_source : e879a84c894e5f21eeaf47f8d116c02364114989
2017-03-13 14:31:53 -05:00
Wes Kocher
264adb55c2 Merge m-c to autoland, a=merge 2017-04-05 14:20:01 -07:00
Wes Kocher
3d900a5d7e Merge inbound to central, a=merge 2017-04-05 14:16:37 -07:00
Carsten "Tomcat" Book
c5364b4b43 Merge mozilla-central to mozilla-inbound 2017-04-05 14:50:28 +02:00
Carsten "Tomcat" Book
7a670cdd01 merge mozilla-inbound to mozilla-central a=merge 2017-04-05 14:33:35 +02:00
Joel Maher
e1589df318 Bug 1083140 - Intermittent devtools/client/projecteditor/test/browser_projecteditor_contextmenu_01.js. disable on asan. r=jryans
MozReview-Commit-ID: HUXF2MUXqfi
2017-04-05 08:31:00 -04:00
Tim Nguyen
fc37fb23db Bug 1353389 - Fix network monitor sidebar panel scrollbars. r=Honza
MozReview-Commit-ID: AYAaFNTAw1N

--HG--
extra : rebase_source : 755052c137434b10b5bc5bd6017e6399d49d6921
2017-04-05 11:38:38 +02:00
nchevobbe
5534f094a3 Bug 1347490 - Return isConnected in node grip to indicate if a node is in the DOM tree. r=ochameau
node.isConnected (see https://dom.spec.whatwg.org/#dom-node-isconnected) returns true if the node is
in the DOM tree (including in a shadowDOM tree), which can be used in the frontend to display additional
tools and information.

MozReview-Commit-ID: LjUbkc7VPcB

--HG--
extra : rebase_source : b43644cf869663412a9ed6b956093e7a41afb01f
2017-04-04 12:08:54 +02:00
Locke Chen
9965da51ca Bug 1324533 - link timings panel to explanation. r=ntim,rickychien
MozReview-Commit-ID: KwaB7k9ehEe

--HG--
extra : rebase_source : 3b81d718d5ccd739c93ba57b0bcc5d496385c55b
2017-04-05 23:17:28 +08:00
bechen
7b4c35c268 Bug 1318542 - fix testcases due to new pseudo element ::cue. r=heycam
MozReview-Commit-ID: F10y2zTtBoT

--HG--
extra : rebase_source : 8d6ab4a78c1fcd62dc688e9b31f7f1b6fb4056fc
2017-04-05 10:50:58 +08:00
Matteo Ferretti
c69aedcdd8 Bug 1345434 - Implementation of a virtual canvas technique for grid highlighter; r=pbro
A virtual canvas is basically a canvas that seems bigger than is actually is.
The technique consists in moving a fixed sized canvas during the scrolling, when
is needed, to give the illusion that it always covers the entire document.

MozReview-Commit-ID: Hp4cUZaBdm8

--HG--
extra : rebase_source : 536891732a6247103734d60f9d8720dc2131815f
2017-04-04 15:11:04 +02:00
J. Ryan Stinnett
ee3845099d Bug 1353559 - Filter out exited browsers from tab list. r=ochameau
This adds higher level protection to ignore exited browser actors, so we don't
end up triggering methods like `form` on them, since they won't make much sense
anyway.

MozReview-Commit-ID: KgUCA04N2fY

--HG--
extra : rebase_source : 4dbf0dfe0a21755796625106840209bed0f9db82
2017-04-05 07:27:30 -05:00
J. Ryan Stinnett
54d3dab9ca Bug 1353559 - Guard against null browser in exited actor. r=ochameau
MozReview-Commit-ID: 4TZZMywFIdu

--HG--
extra : rebase_source : 73a3f1cdff33d29604d76e2163ab5ce485525332
2017-04-04 17:41:30 -05:00
Ricky Chien
c67966b88a Bug 1350223 - alias for all images path in webpack.config r=Honza
MozReview-Commit-ID: 1drm67GM3Ml

--HG--
extra : rebase_source : 6d34c5687441a07c735db2ab53fdc3c1ab2c82ce
2017-03-31 14:31:23 +08:00
Patrick Brosset
d64e4e25b7 Bug 1353010 - Remove the unused director-manager/registry API; r=ochameau
MozReview-Commit-ID: 3TZUs0MAhAi

--HG--
extra : rebase_source : a8fbdc1d5372ee60a77e5f31e297789b679dd740
2017-04-05 10:44:07 +02:00
Tim Nguyen
1c1a12c609 Bug 1353380 - Add tests for hiding/showing columns. r=rickychien
MozReview-Commit-ID: 6kPgCYsmCMN

--HG--
extra : rebase_source : 71771e8c5c3bd0f5b2a9a42c9d539056d7cf462e
2017-04-05 15:52:47 +02:00
Wes Kocher
f18ad1cfc8 Merge m-c to autoland, a=merge 2017-04-04 11:28:54 -07:00
Wes Kocher
bceaacd2b8 Merge inbound to central, a=merge 2017-04-04 11:25:13 -07:00
Aryeh Gregor
b03daa975a Bug 1314388 - Remove SVGZoomEvent; r=longsonr,smaug
Some code in SVGSVGElement.cpp might be unnecessary now, but Robert said
to leave it for a followup.

MozReview-Commit-ID: 8PpRGeGrREJ
2017-04-04 15:36:22 +03:00
Patrick Brosset
bcf9b2f668 Bug 1338582 - New devtools highlighter for signaling paused state; r=jlast
This adds a new highlighter to our collection of highlighters.
This one is a simple overlay on top of the page and a message at the
top.
It will be used by the debugger to signal to users that script execution
is paused.

In later versions, the message at the top will also contain stepping and
resuming buttons.

MozReview-Commit-ID: JNGWrVjMzkm

--HG--
extra : rebase_source : 2006068b82f808c284aebe9f1f364970bda428c5
2017-04-04 12:03:03 +02:00
Christoph Kerschbaumer
78d8448ba5 Bug 1352778 - Do not reset triggeringPrincipal but only principalToInherit within loadInfo when forced to. r=gijs 2017-04-03 20:06:53 +02:00
Bill McCloskey
4b205424a5 Bug 1350724 - Remove telemetry for tab cache position (r=mconley)
MozReview-Commit-ID: 5yJUeC2HxPs
2017-04-03 19:41:13 -07:00
Paul Bignier
9103ac60ef Bug 1352808 - Typo fixes for 'browser' in comments. r=MattN
MozReview-Commit-ID: IA42yQO5Sb8

--HG--
extra : rebase_source : b5426724c5b740639f71e5d058742b01868085e2
2017-04-03 15:26:11 -07:00
Wes Kocher
53dde6a1d2 Merge inbound to central, a=merge 2017-04-03 14:50:18 -07:00
Tim Nguyen
df9c9d0f27 Bug 1350228 - Add network monitor status bar. r=Honza
MozReview-Commit-ID: DEOllBeirq8

--HG--
extra : rebase_source : ff6a8a4d89766ccda9dba3f980009ea39968fe73
2017-04-03 18:01:22 +02:00
Ruturaj K. Vartak
96ab370d82 Bug 1258628 - Network monitor displays extra double quotes. r=ntim
- Added useQuotes: false to TreeView of properties-view.js
- Fixed test cases
2017-04-03 08:02:00 -04:00
Carsten "Tomcat" Book
97a726afc2 Backed out changeset dcbdfb3fdaf2 (bug 1258628) for eslint failure 2017-04-03 15:35:15 +02:00
Ruturaj K. Vartak
38a4dbd7f6 Bug 1258628 - Network monitor displays extra double quotes. r=ntim
- Added useQuotes: false to TreeView of properties-view.js
- Fixed test cases

--HG--
extra : rebase_source : 1973c79ad40c68af88b14c689e54483ea227af40
2017-04-03 03:56:00 -04:00
Stefan Yohansson
9bbee44013 Bug 1349520 - disable checkered background for font preview tooltips;r=jdescottes
Added flag hideCheckeredBackground to hide checkered background if pass true.

MozReview-Commit-ID: FOQO59xqGvt

--HG--
extra : rebase_source : 839fdba629d3eac77ea37509bb049a233c72a163
2017-03-28 17:28:54 -03:00
Sebastian Hengst
427e8f836d Backed out 2 changesets (bug 1314388) for timing out in dom/svg/test/test_zoom.xhtml. r=backout
Backed out changeset 804d8199aeca (bug 1314388)
Backed out changeset b7fab6a89c1d (bug 1314388)
2017-04-02 14:37:08 +02:00
Aryeh Gregor
4a039c1336 Bug 1314388 - Remove SVGZoomEvent; r=longsonr,smaug
Some code in SVGSVGElement.cpp might be unnecessary now, but Robert said
to leave it for a followup.

MozReview-Commit-ID: 8PpRGeGrREJ
2017-04-02 13:51:33 +03:00
Tim Nguyen
749b78d5ae Bug 1350234 - Clean up network monitor CSS. r=Honza
MozReview-Commit-ID: 6wTU8sg54oe

--HG--
extra : rebase_source : 48a6fc820a5b14b2d6eb10286a9365515cde956c
2017-04-03 18:04:29 +02:00
Tim Nguyen
0a91b7e53b Bug 1350234 - Add stack trace panel. r=Honza
MozReview-Commit-ID: A2koumbZFbO

--HG--
extra : rebase_source : 8065db8acb93d774ce1bdfa96c48b93b67d420ef
2017-04-03 18:04:25 +02:00
Patrick Brosset
6f722840ed Bug 1353015 - Remove unused reference to sdk/system/unload in the inspector; r=jdescottes
MozReview-Commit-ID: 1Yb5lyQBwlp

--HG--
extra : rebase_source : 5ec179d9de2e73b755896bbe0dc682734f3b4f84
2017-04-03 16:41:13 +02:00
Locke Chen
33297fc924 Bug 1352035 - Removed the dependency on the test case preview-panel settings. r=Honza
MozReview-Commit-ID: yiNyfPYnFD

--HG--
extra : rebase_source : b535d201ccb46806a04546c74bf66bb9bfbb8c95
2017-03-31 19:21:55 +08:00
Locke Chen
0bbe2d1660 Bug 1352035 - Removed test case for preview-panel. r=Honza
MozReview-Commit-ID: HhpCnxuRiBI

--HG--
extra : rebase_source : ef6a571b6a13fc9bbe797c357c2bdd0c56a58207
2017-03-31 12:26:28 +08:00
Patrick Brosset
4472fb4e88 Bug 1352369 - Delete unused RectHighlighter CSS; r=zer0
MozReview-Commit-ID: Gz0m9fLJyKS

--HG--
extra : rebase_source : 4b2c0cc5dae43e8a8df3a6f73f94f038881e27a4
2017-03-31 12:23:59 +02:00
Carsten "Tomcat" Book
095969b8ee merge mozilla-inbound to mozilla-central a=merge 2017-03-31 14:45:33 +02:00
Ryan VanderMeulen
05037eec1a Merge m-c to inbound. a=merge 2017-03-30 15:21:27 -04:00
Ryan VanderMeulen
615c542a03 Merge inbound to m-c. a=merge
CLOSED TREE
2017-03-30 15:20:22 -04:00
Carsten "Tomcat" Book
74e36e1adb Merge mozilla-central to autoland on a CLOSED TREE
--HG--
extra : amend_source : 5026c19958cdc458c0f0887582fd00b8038fe93e
2017-03-30 16:48:10 +02:00
Iris Hsiao
0d26c7dc74 Backed out changeset 3d0faaeb8496 (bug 1350229) for eslint failure 2017-03-30 18:07:37 +08:00
Locke Chen
151dbfed9b Bug 1350229 - Removing Preview side panel. r=rickychien. 2017-03-29 23:29:00 +08:00
Michael Ratcliffe
579c548c22 Bug 1347517 - Add telemetry for GCLI commands used r=miker
MozReview-Commit-ID: FBBsZeZkPEt

--HG--
extra : rebase_source : ce8068ff1e644fa857357f76801072012cd8bfce
2017-03-15 18:33:52 +01:00
Wes Kocher
208190c049 Merge m-c to inbound, a=merge 2017-04-04 11:28:06 -07:00
Ricky Chien
a2f3ae372e Bug 1352288 - Fix versioned scripts regression and update devtools-core r=Honza
MozReview-Commit-ID: GYojMk8RmMc

--HG--
extra : rebase_source : b3b6da1cddfa5eda0e2420f8cdc0e0664ea69b65
2017-03-31 11:14:32 +08:00
Jan Odvarko
3bf8d6ec24 Bug 1328001 - Fix focusring on devtools buttons; r=jryans,ntim
MozReview-Commit-ID: 2SA3ZLLIE8E

--HG--
extra : rebase_source : 70e98d6eccaf6781fe367e1a9a04eb215917aa4e
2017-03-29 14:31:19 +02:00
Stanford Lockhart
9435159411 Bug 1349686: Polish the Box Model Properties. r=gl
MozReview-Commit-ID: FfgTVBx8mcw
2017-03-28 19:51:41 -03:00
Gabriel Luong
7ab5ac6467 Bug 1350894 - Check if the node is dead in getOffsetParent. r=pbro 2017-03-30 00:10:40 -04:00
Wes Kocher
8e0bc97954 Merge inbound to central, a=merge 2017-03-29 15:41:57 -07:00
Sebastian Hengst
95d52e6546 Backed out changeset e4ecf720b3a1 (bug 713680) for crashing in dom/tests/mochitest/chrome/test_xray_event_constructor.xul on Windows 7 debug. r=backout 2017-03-29 21:51:05 +02:00
J. Ryan Stinnett
1cb189a564 Bug 1351537 - devtools-source-map v0.3.0: Update bundle from GitHub. r=jdescottes
MozReview-Commit-ID: 1W9OXHs5pHq

--HG--
extra : rebase_source : a3bc710a0d57816f6a07303c232361d4c60ceac6
2017-03-28 23:07:17 -05:00
Julian Descottes
4d76300445 Bug 1351565 - update reps to v0.5.0;r=nchevobbe
MozReview-Commit-ID: 2Q7isM1jF2P

--HG--
extra : rebase_source : 45c6cef6b04c6e1d8a299e3c624e0301612d43cd
2017-03-29 10:05:14 +02:00
Ryan VanderMeulen
f4a0d77ffc Merge inbound to m-c. a=merge 2017-03-29 09:41:54 -04:00
Chris Peterson
9a7117b6ae Bug 713680 - Change default Windows monospace font from Courier New to Consolas. r=jfkthame r=masayuki
MozReview-Commit-ID: 6WPOOCcF43M

--HG--
extra : rebase_source : 83a416e89a479c25281128630935b0ec19dd915f
extra : histedit_source : cea4b90eb46eeac04fd2de120d1044576405aa2f%2C0dc86ac28399a3af673ebd40d11a75c57ef04f4b
2017-03-08 00:20:41 -08:00
Wes Kocher
914dd4b76c Merge inbound to m-c a=merge 2017-03-28 13:30:56 -07:00
ffxbld
9ad80a7a2d Bug 1335192 - improving accessibility of tree-view component (keyboard and semantics). r=Honza
MozReview-Commit-ID: BXWZLaAlSuK
2017-03-28 12:53:45 -04:00
Sebastian Hengst
7900c19a09 Bug 1348169 - Fix NaN shown in the Box Model's margins. Fix eslint issues. r=style-fix on a CLOSED TREE 2017-03-28 18:00:58 +02:00
Sebastian Hengst
f6069b6fb6 Bug 1349216 - Fix NaN shown in the Box Model's positions. Fix eslint issues. r=style-fix 2017-03-28 18:00:35 +02:00
Micah Tigley
225b5f860e Bug 1343447 - Bug 1343447 - Maintain aspect ratio of grid outline. r=pbro
MozReview-Commit-ID: 97mdXIyDhSw
2017-03-24 14:01:09 -06:00
Gabriel Luong
6f8e00fa54 Bug 1349216 - Fix NaN shown in the Box Model's positions. r=pbro 2017-03-28 11:13:41 -04:00
Gabriel Luong
86379c327c Bug 1348169 - Fix NaN shown in the Box Model's margins. r=pbro 2017-03-28 11:13:32 -04:00
Sebastian Hengst
935d22e0f2 Backed out changeset 405c692a053a (bug 1343774) for failing browser_net_raw_headers.js, browser_net_resend.js and browser_net_resend_cors.js. r=backout 2017-03-28 17:05:29 +02:00
Fred Lin
45d55d1ea8 Bug 1343774 - remove unused functions;r=Honza
MozReview-Commit-ID: 3fOopWrQMKR

--HG--
extra : rebase_source : 4659885bd910cc75622696a91d5ef7e9c70d7253
2017-03-02 12:41:38 +08:00
Zibi Braniecki
5b976eeccb Bug 1347272 - Move ChromeRegistry::IsLocaleRTL to LocaleService::IsAppLocaleRTL. r=jfkthame
MozReview-Commit-ID: BDhgIKNSOEL

--HG--
extra : rebase_source : 6a009ba4d397e6794e86c87c10982fdfb8e7ba08
2017-03-14 12:35:06 -07:00
Iris Hsiao
394f455b8e Backed out changeset c7174ac72d14 (bug 1347272) for build bustage
--HG--
extra : amend_source : b4f3d5997190ce3db799e3586131cc3cb9ce034d
2017-03-28 18:16:33 +08:00
Zibi Braniecki
70c168c03f Bug 1347272 - Move ChromeRegistry::IsLocaleRTL to LocaleService::IsAppLocaleRTL. r=jfkthame
MozReview-Commit-ID: BDhgIKNSOEL

--HG--
extra : rebase_source : 8440ae6b21887bae5142c86220f02092d1b12aed
2017-03-14 12:35:06 -07:00
Luca Greco
231a6e81de Bug 1350782 - Fix undefined Cu error on unregistering tool using its definition object. r=ochameau
MozReview-Commit-ID: FWBwTcQKf0T

--HG--
extra : rebase_source : 12b97a63c47d9469291278f6c7fc2c1c198d4287
2017-03-27 03:37:06 +02:00
Andrea Marchesini
2f37beddea Bug 1349538 - JSONView should not open more than 1 filePicker at the same time, r=honza 2017-03-28 13:30:34 +02:00
Ricky Chien
3bac035994 Bug 1350217 - Introduce webpack.config.js r=Honza
MozReview-Commit-ID: 5k5TMEKWQl

--HG--
extra : rebase_source : d27ed089d9fad1a9e1b31bc2ba72542bdac940ec
2017-03-29 14:30:34 +08:00
Ricky Chien
53d97ab60a Bug 1350217 - Remove redundant shared module dependencies r=Honza
MozReview-Commit-ID: GhQn2RKfDgq

--HG--
extra : rebase_source : 5ad29424bf63fb6a52d3ccf0dcb887b92340ceab
2017-03-29 15:21:25 +08:00
Tim Nguyen
d96389660c Bug 862855 - Add the ability to show/hide more columns in the network panel. r=Honza
MozReview-Commit-ID: EwFR65651Fs

--HG--
extra : rebase_source : eaaf6e068d94a4dc02451880c50380264d65aa3e
2017-04-04 16:38:44 +02:00
Rahul Chaudhary
dd5683bd4f Bug 1332090 - Added a contrast ratio component to the Color Widget. r=pbro
MozReview-Commit-ID: 9FA0h9ST62E
2017-02-20 22:27:22 -05:00
Ryan VanderMeulen
3348cc9f53 Bug 1355984 - Skip browser static analysis check tests on ASAN when running in the devtools suite as well. r=Gijs
--HG--
extra : rebase_source : e04b45363b6e63d68a175517f9060315633fe302
2017-04-18 12:57:15 -04:00
Alexandre Poirot
acdbbd6e15 Bug 1320939 - Lazy load all tooltip widgets until each is really used. r=jdescottes
MozReview-Commit-ID: 9P93GocdLm8

--HG--
extra : rebase_source : e57883d36c2cbcfa895a3217dea9e82df87874ec
2017-01-31 15:31:37 +01:00
J. Ryan Stinnett
1a54932a26 Bug 1353897 - Only destroy preference front if used. r=ochameau
The toolbox can get a preference front for toggling various prefs on the server.
The toolbox destruction code path was written in such a way that it would
request a preference front during toolbox destroy, only to immediately destroy
the front right after.  This is extra painful, since we send a `listTabs`
request and other fun things as part of this.

With this change, we cache the preference front when it is first used, and we
only attempt to destroy it if it was previously used.

MozReview-Commit-ID: 9repQSXjdRj

--HG--
extra : rebase_source : 574faf83072f355c250673726c19f7da90cb33c5
2017-04-05 16:17:47 -05:00
Julian Descottes
72e3864e49 Bug 1348254 - grid inspector: update grid inspector colors;r=gl
MozReview-Commit-ID: 3gMvXwJjYdX

--HG--
extra : rebase_source : 6216b2c9fb79f118570d054fcf9e1435032b3a69
2017-04-03 15:57:56 +02:00
Ricky Chien
6b26310580 Bug 1352699 - Fix mochitest failures r=Honza
MozReview-Commit-ID: 8rhAQw5oflC

--HG--
extra : rebase_source : dbfeab0a091971dcbfe3ce772dc55276d034c563
2017-04-05 22:59:57 +08:00
Ricky Chien
6423b83552 Bug 1352699 - Remove cyclic dependency in devtools loader r=Honza
MozReview-Commit-ID: GrtNP7WD8ys

--HG--
extra : rebase_source : fd0832770cc9db7c2504dfa59c0e82ef800d268d
2017-04-02 08:28:29 +08:00
Ricky Chien
d52f99b739 Bug 1352699 - Make netmonitor run on devtools-launchpad r=Honza
MozReview-Commit-ID: 4khCXm2lfzG

--HG--
extra : rebase_source : f9fc2e4c0b342409a6a1c9e6acd992506585e8e4
2017-04-01 23:01:06 +08:00
Ricky Chien
25e9d7c59d Bug 1352699 - Fix gStore instance issue in NetMonitorController r=Honza
MozReview-Commit-ID: CWAnmdEtJwc

--HG--
extra : rebase_source : 5cc36be6b1a6ea42ad230b3a9e4fc27e539af404
2017-04-01 16:39:41 +08:00
Ricky Chien
61404e8a18 Bug 1352699 - Access single Services.prefs instance r=Honza
MozReview-Commit-ID: GS77TZqwFc

--HG--
extra : rebase_source : 2e141d1a57cb5a3683dfc06cb3aa4b35cfa616f0
2017-04-01 12:32:27 +08:00
Jan Odvarko
822f0bfea9 Bug 1354014 - Fix Status bar layout; r=ntim
MozReview-Commit-ID: KZGNN2PBdkr

--HG--
extra : rebase_source : 1b94dd0079cb15b0fa62ffdb17ec89581d7df8f4
2017-04-06 11:47:26 +02:00
Julian Descottes
0e9ee02fa8 Bug 1341612 - align grid highlighter numbers with lines and increase readability;r=zer0
MozReview-Commit-ID: AGmWT3gmzL0

--HG--
extra : rebase_source : 1c76ac614898a8350e26495730f1cc5d9af01572
2017-03-28 20:42:00 +02:00
Jan Odvarko
f23f2a9822 Bug 1354021 - Open source in the Debugger panel; r=ntim
MozReview-Commit-ID: 6Fh4hOBHNAn

--HG--
extra : rebase_source : 8eb35ebc2a9cbed8629c11173f4e27ce27912297
2017-04-06 12:16:02 +02:00
Carsten "Tomcat" Book
1aa7e647b7 Merge mozilla-central to autoland 2017-04-06 13:11:40 +02:00
Ricky Chien
5bfaab2025 Bug 1252254 - Re-enable browser_net_accessibility-02.js for macOS r=ntim
MozReview-Commit-ID: KpJJLMDjEt1

--HG--
extra : rebase_source : 652cc5728b2be8bd633c65d0ee14f09b51e8da83
2017-04-06 11:00:20 +08:00
Michael Brennan
dddee3eb0c Bug 1350235 - Move copy related menus into a sub-menu in netmonitor. r=gasolin, r=Honza
--HG--
extra : rebase_source : ce05afe19c2b7502aca30f1629a48d155a15007b
2017-03-30 04:45:00 -04:00
Stefan Yohansson
18fa48d27c Bug 1353535 - Fix "copy as curl" POST request without json data. r=gasolin
--HG--
extra : rebase_source : 35d42a108df7e2241f8b0740a6ca8bc3997bdf13
2017-04-04 18:35:29 -03:00
Ricky Chien
afedd31482 Bug 1350215 - Rename components from camelcase to hyphens r=Honza
MozReview-Commit-ID: Em8AYdGzTcb

--HG--
rename : devtools/client/netmonitor/src/components/CustomRequestPanel.js => devtools/client/netmonitor/src/components/custom-request-panel.js
rename : devtools/client/netmonitor/src/components/Editor.js => devtools/client/netmonitor/src/components/editor.js
rename : devtools/client/netmonitor/src/components/MDNLink.js => devtools/client/netmonitor/src/components/mdn-link.js
rename : devtools/client/netmonitor/src/components/PreviewPanel.js => devtools/client/netmonitor/src/components/preview-panel.js
rename : devtools/client/netmonitor/src/components/RequestListEmptyNotice.js => devtools/client/netmonitor/src/components/request-list-empty-notice.js
rename : devtools/client/netmonitor/src/components/RequestListHeader.js => devtools/client/netmonitor/src/components/request-list-header.js
rename : devtools/client/netmonitor/src/components/RequestListItem.js => devtools/client/netmonitor/src/components/request-list-item.js
rename : devtools/client/netmonitor/src/components/StatisticsPanel.js => devtools/client/netmonitor/src/components/statistics-panel.js
rename : devtools/client/netmonitor/src/components/TimingsPanel.js => devtools/client/netmonitor/src/components/timings-panel.js
rename : devtools/client/netmonitor/src/components/Toolbar.js => devtools/client/netmonitor/src/components/toolbar.js
extra : rebase_source : 1a464ae2c12c6c9a3b93d77bb809a4b3f5977201
2017-03-28 18:51:26 +08:00
Ricky Chien
70f688acfc Bug 1350215 - Move netmonitor.css to netmonitor folder r=Honza
MozReview-Commit-ID: 7GKV7WFNrHE

--HG--
rename : devtools/client/themes/netmonitor.css => devtools/client/netmonitor/src/assets/styles/netmonitor.css
extra : rebase_source : c32573cadcfa77df8c21a4362425b2cb1488d414
2017-03-27 16:35:22 +08:00
Ricky Chien
06707cbe52 Bug 1350215 - Fix mochitest failures r=Honza
MozReview-Commit-ID: CNo5JeqMyVn

--HG--
extra : rebase_source : 5ab54e4d138c22b1626bc32610f62389fe0786df
2017-03-27 00:01:35 +08:00
Ricky Chien
2767bf0179 Bug 1350215 - Merge toolbox launcher in index.html r=Honza
MozReview-Commit-ID: B4AzUVmD2f4

--HG--
extra : rebase_source : 2e741030138bf0e79a6979e3b2368ff32db1969c
2017-03-26 21:37:16 +08:00
Ricky Chien
d594697e35 Bug 1350215 - Move top level source files to src folder r=gasolin,Honza
MozReview-Commit-ID: 6iJr5BNlnbd

--HG--
rename : devtools/client/netmonitor/actions/batching.js => devtools/client/netmonitor/src/actions/batching.js
rename : devtools/client/netmonitor/actions/filters.js => devtools/client/netmonitor/src/actions/filters.js
rename : devtools/client/netmonitor/actions/index.js => devtools/client/netmonitor/src/actions/index.js
rename : devtools/client/netmonitor/actions/moz.build => devtools/client/netmonitor/src/actions/moz.build
rename : devtools/client/netmonitor/actions/requests.js => devtools/client/netmonitor/src/actions/requests.js
rename : devtools/client/netmonitor/actions/selection.js => devtools/client/netmonitor/src/actions/selection.js
rename : devtools/client/netmonitor/actions/sort.js => devtools/client/netmonitor/src/actions/sort.js
rename : devtools/client/netmonitor/actions/timing-markers.js => devtools/client/netmonitor/src/actions/timing-markers.js
rename : devtools/client/netmonitor/actions/ui.js => devtools/client/netmonitor/src/actions/ui.js
rename : devtools/client/netmonitor/components/App.js => devtools/client/netmonitor/src/components/App.js
rename : devtools/client/netmonitor/components/CookiesPanel.js => devtools/client/netmonitor/src/components/CookiesPanel.js
rename : devtools/client/netmonitor/components/CustomRequestPanel.js => devtools/client/netmonitor/src/components/CustomRequestPanel.js
rename : devtools/client/netmonitor/components/Editor.js => devtools/client/netmonitor/src/components/Editor.js
rename : devtools/client/netmonitor/components/HeadersPanel.js => devtools/client/netmonitor/src/components/HeadersPanel.js
rename : devtools/client/netmonitor/components/MDNLink.js => devtools/client/netmonitor/src/components/MDNLink.js
rename : devtools/client/netmonitor/components/MonitorPanel.js => devtools/client/netmonitor/src/components/MonitorPanel.js
rename : devtools/client/netmonitor/components/NetworkDetailsPanel.js => devtools/client/netmonitor/src/components/NetworkDetailsPanel.js
rename : devtools/client/netmonitor/components/ParamsPanel.js => devtools/client/netmonitor/src/components/ParamsPanel.js
rename : devtools/client/netmonitor/components/PreviewPanel.js => devtools/client/netmonitor/src/components/PreviewPanel.js
rename : devtools/client/netmonitor/components/PropertiesView.js => devtools/client/netmonitor/src/components/PropertiesView.js
rename : devtools/client/netmonitor/components/RequestList.js => devtools/client/netmonitor/src/components/RequestList.js
rename : devtools/client/netmonitor/components/RequestListContent.js => devtools/client/netmonitor/src/components/RequestListContent.js
rename : devtools/client/netmonitor/components/RequestListEmptyNotice.js => devtools/client/netmonitor/src/components/RequestListEmptyNotice.js
rename : devtools/client/netmonitor/components/RequestListHeader.js => devtools/client/netmonitor/src/components/RequestListHeader.js
rename : devtools/client/netmonitor/components/RequestListItem.js => devtools/client/netmonitor/src/components/RequestListItem.js
rename : devtools/client/netmonitor/components/ResponsePanel.js => devtools/client/netmonitor/src/components/ResponsePanel.js
rename : devtools/client/netmonitor/components/SecurityPanel.js => devtools/client/netmonitor/src/components/SecurityPanel.js
rename : devtools/client/netmonitor/components/StatisticsPanel.js => devtools/client/netmonitor/src/components/StatisticsPanel.js
rename : devtools/client/netmonitor/components/TabboxPanel.js => devtools/client/netmonitor/src/components/TabboxPanel.js
rename : devtools/client/netmonitor/components/TimingsPanel.js => devtools/client/netmonitor/src/components/TimingsPanel.js
rename : devtools/client/netmonitor/components/toolbar.js => devtools/client/netmonitor/src/components/Toolbar.js
rename : devtools/client/netmonitor/components/moz.build => devtools/client/netmonitor/src/components/moz.build
rename : devtools/client/netmonitor/constants.js => devtools/client/netmonitor/src/constants.js
rename : devtools/client/netmonitor/har/har-automation.js => devtools/client/netmonitor/src/har/har-automation.js
rename : devtools/client/netmonitor/har/har-collector.js => devtools/client/netmonitor/src/har/har-collector.js
rename : devtools/client/netmonitor/har/har-exporter.js => devtools/client/netmonitor/src/har/har-exporter.js
rename : devtools/client/netmonitor/har/har-utils.js => devtools/client/netmonitor/src/har/har-utils.js
rename : devtools/client/netmonitor/har/moz.build => devtools/client/netmonitor/src/har/moz.build
rename : devtools/client/netmonitor/har/test/.eslintrc.js => devtools/client/netmonitor/src/har/test/.eslintrc.js
rename : devtools/client/netmonitor/har/test/browser.ini => devtools/client/netmonitor/src/har/test/browser.ini
rename : devtools/client/netmonitor/har/test/browser_net_har_copy_all_as_har.js => devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js
rename : devtools/client/netmonitor/har/test/browser_net_har_post_data.js => devtools/client/netmonitor/src/har/test/browser_net_har_post_data.js
rename : devtools/client/netmonitor/har/test/browser_net_har_throttle_upload.js => devtools/client/netmonitor/src/har/test/browser_net_har_throttle_upload.js
rename : devtools/client/netmonitor/har/test/head.js => devtools/client/netmonitor/src/har/test/head.js
rename : devtools/client/netmonitor/har/test/html_har_post-data-test-page.html => devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html
rename : devtools/client/netmonitor/har/toolbox-overlay.js => devtools/client/netmonitor/src/har/toolbox-overlay.js
rename : devtools/client/netmonitor/middleware/batching.js => devtools/client/netmonitor/src/middleware/batching.js
rename : devtools/client/netmonitor/middleware/moz.build => devtools/client/netmonitor/src/middleware/moz.build
rename : devtools/client/netmonitor/middleware/prefs.js => devtools/client/netmonitor/src/middleware/prefs.js
rename : devtools/client/netmonitor/netmonitor-controller.js => devtools/client/netmonitor/src/netmonitor-controller.js
rename : devtools/client/netmonitor/reducers/batching.js => devtools/client/netmonitor/src/reducers/batching.js
rename : devtools/client/netmonitor/reducers/filters.js => devtools/client/netmonitor/src/reducers/filters.js
rename : devtools/client/netmonitor/reducers/index.js => devtools/client/netmonitor/src/reducers/index.js
rename : devtools/client/netmonitor/reducers/moz.build => devtools/client/netmonitor/src/reducers/moz.build
rename : devtools/client/netmonitor/reducers/requests.js => devtools/client/netmonitor/src/reducers/requests.js
rename : devtools/client/netmonitor/reducers/sort.js => devtools/client/netmonitor/src/reducers/sort.js
rename : devtools/client/netmonitor/reducers/timing-markers.js => devtools/client/netmonitor/src/reducers/timing-markers.js
rename : devtools/client/netmonitor/reducers/ui.js => devtools/client/netmonitor/src/reducers/ui.js
rename : devtools/client/netmonitor/request-list-context-menu.js => devtools/client/netmonitor/src/request-list-context-menu.js
rename : devtools/client/netmonitor/request-list-tooltip.js => devtools/client/netmonitor/src/request-list-tooltip.js
rename : devtools/client/netmonitor/selectors/filters.js => devtools/client/netmonitor/src/selectors/filters.js
rename : devtools/client/netmonitor/selectors/index.js => devtools/client/netmonitor/src/selectors/index.js
rename : devtools/client/netmonitor/selectors/moz.build => devtools/client/netmonitor/src/selectors/moz.build
rename : devtools/client/netmonitor/selectors/requests.js => devtools/client/netmonitor/src/selectors/requests.js
rename : devtools/client/netmonitor/selectors/ui.js => devtools/client/netmonitor/src/selectors/ui.js
rename : devtools/client/netmonitor/utils/client.js => devtools/client/netmonitor/src/utils/client.js
rename : devtools/client/netmonitor/utils/create-store.js => devtools/client/netmonitor/src/utils/create-store.js
rename : devtools/client/netmonitor/utils/filter-predicates.js => devtools/client/netmonitor/src/utils/filter-predicates.js
rename : devtools/client/netmonitor/utils/format-utils.js => devtools/client/netmonitor/src/utils/format-utils.js
rename : devtools/client/netmonitor/utils/l10n.js => devtools/client/netmonitor/src/utils/l10n.js
rename : devtools/client/netmonitor/utils/mdn-utils.js => devtools/client/netmonitor/src/utils/mdn-utils.js
rename : devtools/client/netmonitor/utils/moz.build => devtools/client/netmonitor/src/utils/moz.build
rename : devtools/client/netmonitor/utils/prefs.js => devtools/client/netmonitor/src/utils/prefs.js
rename : devtools/client/netmonitor/utils/request-utils.js => devtools/client/netmonitor/src/utils/request-utils.js
rename : devtools/client/netmonitor/utils/sort-predicates.js => devtools/client/netmonitor/src/utils/sort-predicates.js
rename : devtools/client/netmonitor/waterfall-background.js => devtools/client/netmonitor/src/waterfall-background.js
extra : rebase_source : 550e2876ee907f543cfbe1135d0d5792faabdda5
2017-03-26 20:35:38 +08:00
Ricky Chien
6b4a333ba7 Bug 1350215 - Move store.js into utils/store.js r=gasolin,Honza
MozReview-Commit-ID: BmEktkb2QXt

--HG--
extra : rebase_source : d032488f778bad3829e11c07b6591e4ef71fb407
2017-03-26 19:26:11 +08:00
Ricky Chien
6230cb4d18 Bug 1350215 - Merge shared/components to components r=Honza
MozReview-Commit-ID: 9BQBRYCfdsu

--HG--
rename : devtools/client/netmonitor/components/request-list-empty.js => devtools/client/netmonitor/components/RequestListEmptyNotice.js
extra : rebase_source : b27aed35a589d11c790896a5d9522d8382627b8e
2017-03-26 19:11:01 +08:00
Wes Kocher
f4d0026eb3 Backed out 7 changesets (bug 1350215) for OSX failures in browser_all_files_referenced.js a=backout
Backed out changeset 435557f30204 (bug 1350215)
Backed out changeset b8358b21928c (bug 1350215)
Backed out changeset 59d2a3f98f6d (bug 1350215)
Backed out changeset e219f3f6e8e7 (bug 1350215)
Backed out changeset f812f7a98a9c (bug 1350215)
Backed out changeset e676e004d08e (bug 1350215)
Backed out changeset e6d27888cb6f (bug 1350215)

--HG--
rename : devtools/client/netmonitor/src/actions/batching.js => devtools/client/netmonitor/actions/batching.js
rename : devtools/client/netmonitor/src/actions/filters.js => devtools/client/netmonitor/actions/filters.js
rename : devtools/client/netmonitor/src/actions/index.js => devtools/client/netmonitor/actions/index.js
rename : devtools/client/netmonitor/src/actions/moz.build => devtools/client/netmonitor/actions/moz.build
rename : devtools/client/netmonitor/src/actions/requests.js => devtools/client/netmonitor/actions/requests.js
rename : devtools/client/netmonitor/src/actions/selection.js => devtools/client/netmonitor/actions/selection.js
rename : devtools/client/netmonitor/src/actions/sort.js => devtools/client/netmonitor/actions/sort.js
rename : devtools/client/netmonitor/src/actions/timing-markers.js => devtools/client/netmonitor/actions/timing-markers.js
rename : devtools/client/netmonitor/src/actions/ui.js => devtools/client/netmonitor/actions/ui.js
rename : devtools/client/netmonitor/src/components/moz.build => devtools/client/netmonitor/components/moz.build
rename : devtools/client/netmonitor/src/components/request-list-empty-notice.js => devtools/client/netmonitor/components/request-list-empty.js
rename : devtools/client/netmonitor/src/components/toolbar.js => devtools/client/netmonitor/components/toolbar.js
rename : devtools/client/netmonitor/src/constants.js => devtools/client/netmonitor/constants.js
rename : devtools/client/netmonitor/src/har/har-automation.js => devtools/client/netmonitor/har/har-automation.js
rename : devtools/client/netmonitor/src/har/har-collector.js => devtools/client/netmonitor/har/har-collector.js
rename : devtools/client/netmonitor/src/har/har-exporter.js => devtools/client/netmonitor/har/har-exporter.js
rename : devtools/client/netmonitor/src/har/har-utils.js => devtools/client/netmonitor/har/har-utils.js
rename : devtools/client/netmonitor/src/har/moz.build => devtools/client/netmonitor/har/moz.build
rename : devtools/client/netmonitor/src/har/test/.eslintrc.js => devtools/client/netmonitor/har/test/.eslintrc.js
rename : devtools/client/netmonitor/src/har/test/browser.ini => devtools/client/netmonitor/har/test/browser.ini
rename : devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js => devtools/client/netmonitor/har/test/browser_net_har_copy_all_as_har.js
rename : devtools/client/netmonitor/src/har/test/browser_net_har_post_data.js => devtools/client/netmonitor/har/test/browser_net_har_post_data.js
rename : devtools/client/netmonitor/src/har/test/browser_net_har_throttle_upload.js => devtools/client/netmonitor/har/test/browser_net_har_throttle_upload.js
rename : devtools/client/netmonitor/src/har/test/head.js => devtools/client/netmonitor/har/test/head.js
rename : devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html => devtools/client/netmonitor/har/test/html_har_post-data-test-page.html
rename : devtools/client/netmonitor/src/har/toolbox-overlay.js => devtools/client/netmonitor/har/toolbox-overlay.js
rename : devtools/client/netmonitor/src/middleware/batching.js => devtools/client/netmonitor/middleware/batching.js
rename : devtools/client/netmonitor/src/middleware/moz.build => devtools/client/netmonitor/middleware/moz.build
rename : devtools/client/netmonitor/src/middleware/prefs.js => devtools/client/netmonitor/middleware/prefs.js
rename : devtools/client/netmonitor/src/netmonitor-controller.js => devtools/client/netmonitor/netmonitor-controller.js
rename : devtools/client/netmonitor/src/reducers/batching.js => devtools/client/netmonitor/reducers/batching.js
rename : devtools/client/netmonitor/src/reducers/filters.js => devtools/client/netmonitor/reducers/filters.js
rename : devtools/client/netmonitor/src/reducers/index.js => devtools/client/netmonitor/reducers/index.js
rename : devtools/client/netmonitor/src/reducers/moz.build => devtools/client/netmonitor/reducers/moz.build
rename : devtools/client/netmonitor/src/reducers/requests.js => devtools/client/netmonitor/reducers/requests.js
rename : devtools/client/netmonitor/src/reducers/sort.js => devtools/client/netmonitor/reducers/sort.js
rename : devtools/client/netmonitor/src/reducers/timing-markers.js => devtools/client/netmonitor/reducers/timing-markers.js
rename : devtools/client/netmonitor/src/reducers/ui.js => devtools/client/netmonitor/reducers/ui.js
rename : devtools/client/netmonitor/src/request-list-context-menu.js => devtools/client/netmonitor/request-list-context-menu.js
rename : devtools/client/netmonitor/src/request-list-tooltip.js => devtools/client/netmonitor/request-list-tooltip.js
rename : devtools/client/netmonitor/src/selectors/filters.js => devtools/client/netmonitor/selectors/filters.js
rename : devtools/client/netmonitor/src/selectors/index.js => devtools/client/netmonitor/selectors/index.js
rename : devtools/client/netmonitor/src/selectors/moz.build => devtools/client/netmonitor/selectors/moz.build
rename : devtools/client/netmonitor/src/selectors/requests.js => devtools/client/netmonitor/selectors/requests.js
rename : devtools/client/netmonitor/src/selectors/ui.js => devtools/client/netmonitor/selectors/ui.js
rename : devtools/client/netmonitor/src/utils/client.js => devtools/client/netmonitor/utils/client.js
rename : devtools/client/netmonitor/src/utils/filter-predicates.js => devtools/client/netmonitor/utils/filter-predicates.js
rename : devtools/client/netmonitor/src/utils/format-utils.js => devtools/client/netmonitor/utils/format-utils.js
rename : devtools/client/netmonitor/src/utils/l10n.js => devtools/client/netmonitor/utils/l10n.js
rename : devtools/client/netmonitor/src/utils/mdn-utils.js => devtools/client/netmonitor/utils/mdn-utils.js
rename : devtools/client/netmonitor/src/utils/moz.build => devtools/client/netmonitor/utils/moz.build
rename : devtools/client/netmonitor/src/utils/prefs.js => devtools/client/netmonitor/utils/prefs.js
rename : devtools/client/netmonitor/src/utils/request-utils.js => devtools/client/netmonitor/utils/request-utils.js
rename : devtools/client/netmonitor/src/utils/sort-predicates.js => devtools/client/netmonitor/utils/sort-predicates.js
rename : devtools/client/netmonitor/src/waterfall-background.js => devtools/client/netmonitor/waterfall-background.js
rename : devtools/client/netmonitor/src/assets/styles/netmonitor.css => devtools/client/themes/netmonitor.css
2017-03-28 23:25:01 -07:00
Matteo Ferretti
c2450fbc4d Bug 1349275 - refactored moveInfobar function; r=pbro
- Added `getViewportDimensions`
- Added `getComputedStylePropertyValue` to `CanvasFrameAnonymousContentHelper`
- Refactored totally `moveInfobar` to works with both APZ enabled and new
  positioned absolutely highlighters
- Updated `AutoRefreshHighlighter` for having a `scrollUpdate` method.
- Updated tests

MozReview-Commit-ID: 5m31ZzRzLXr

--HG--
extra : rebase_source : c5abac64217ee0b86413594461fb6a50d5df655e
2017-03-28 12:40:22 +02:00
Ricky Chien
d18618bd5e Bug 1350215 - Rename components from camelcase to hyphens r=Honza
MozReview-Commit-ID: Em8AYdGzTcb

--HG--
rename : devtools/client/netmonitor/src/components/CustomRequestPanel.js => devtools/client/netmonitor/src/components/custom-request-panel.js
rename : devtools/client/netmonitor/src/components/Editor.js => devtools/client/netmonitor/src/components/editor.js
rename : devtools/client/netmonitor/src/components/MDNLink.js => devtools/client/netmonitor/src/components/mdn-link.js
rename : devtools/client/netmonitor/src/components/PreviewPanel.js => devtools/client/netmonitor/src/components/preview-panel.js
rename : devtools/client/netmonitor/src/components/RequestListEmptyNotice.js => devtools/client/netmonitor/src/components/request-list-empty-notice.js
rename : devtools/client/netmonitor/src/components/RequestListHeader.js => devtools/client/netmonitor/src/components/request-list-header.js
rename : devtools/client/netmonitor/src/components/RequestListItem.js => devtools/client/netmonitor/src/components/request-list-item.js
rename : devtools/client/netmonitor/src/components/StatisticsPanel.js => devtools/client/netmonitor/src/components/statistics-panel.js
rename : devtools/client/netmonitor/src/components/TimingsPanel.js => devtools/client/netmonitor/src/components/timings-panel.js
rename : devtools/client/netmonitor/src/components/Toolbar.js => devtools/client/netmonitor/src/components/toolbar.js
extra : rebase_source : e889b5a89f9915c5a03dab400de01d573e07b6fb
2017-03-28 18:51:26 +08:00
Ricky Chien
61d4633d05 Bug 1350215 - Move netmonitor.css to netmonitor folder r=Honza
MozReview-Commit-ID: 7GKV7WFNrHE

--HG--
rename : devtools/client/themes/netmonitor.css => devtools/client/netmonitor/src/assets/styles/netmonitor.css
extra : rebase_source : d620ba7866af6e3bf91baa19a2f9a7aeb69985a8
2017-03-27 16:35:22 +08:00
Ricky Chien
4708faa113 Bug 1350215 - Fix mochitest failures r=Honza
MozReview-Commit-ID: CNo5JeqMyVn

--HG--
extra : rebase_source : bcf8a1ee8db6e3a3b74e95e3e108aabe9d0b6e67
2017-03-27 00:01:35 +08:00
Ricky Chien
30cde483f7 Bug 1350215 - Merge toolbox launcher in index.html r=Honza
MozReview-Commit-ID: B4AzUVmD2f4

--HG--
extra : rebase_source : 8764ae8a9b05561c6e46ea48c5b22e54ac3b12cc
2017-03-26 21:37:16 +08:00
Ricky Chien
826781f87a Bug 1350215 - Move top level source files to src folder r=gasolin,Honza
MozReview-Commit-ID: 6iJr5BNlnbd

--HG--
rename : devtools/client/netmonitor/actions/batching.js => devtools/client/netmonitor/src/actions/batching.js
rename : devtools/client/netmonitor/actions/filters.js => devtools/client/netmonitor/src/actions/filters.js
rename : devtools/client/netmonitor/actions/index.js => devtools/client/netmonitor/src/actions/index.js
rename : devtools/client/netmonitor/actions/moz.build => devtools/client/netmonitor/src/actions/moz.build
rename : devtools/client/netmonitor/actions/requests.js => devtools/client/netmonitor/src/actions/requests.js
rename : devtools/client/netmonitor/actions/selection.js => devtools/client/netmonitor/src/actions/selection.js
rename : devtools/client/netmonitor/actions/sort.js => devtools/client/netmonitor/src/actions/sort.js
rename : devtools/client/netmonitor/actions/timing-markers.js => devtools/client/netmonitor/src/actions/timing-markers.js
rename : devtools/client/netmonitor/actions/ui.js => devtools/client/netmonitor/src/actions/ui.js
rename : devtools/client/netmonitor/components/App.js => devtools/client/netmonitor/src/components/App.js
rename : devtools/client/netmonitor/components/CookiesPanel.js => devtools/client/netmonitor/src/components/CookiesPanel.js
rename : devtools/client/netmonitor/components/CustomRequestPanel.js => devtools/client/netmonitor/src/components/CustomRequestPanel.js
rename : devtools/client/netmonitor/components/Editor.js => devtools/client/netmonitor/src/components/Editor.js
rename : devtools/client/netmonitor/components/HeadersPanel.js => devtools/client/netmonitor/src/components/HeadersPanel.js
rename : devtools/client/netmonitor/components/MDNLink.js => devtools/client/netmonitor/src/components/MDNLink.js
rename : devtools/client/netmonitor/components/MonitorPanel.js => devtools/client/netmonitor/src/components/MonitorPanel.js
rename : devtools/client/netmonitor/components/NetworkDetailsPanel.js => devtools/client/netmonitor/src/components/NetworkDetailsPanel.js
rename : devtools/client/netmonitor/components/ParamsPanel.js => devtools/client/netmonitor/src/components/ParamsPanel.js
rename : devtools/client/netmonitor/components/PreviewPanel.js => devtools/client/netmonitor/src/components/PreviewPanel.js
rename : devtools/client/netmonitor/components/PropertiesView.js => devtools/client/netmonitor/src/components/PropertiesView.js
rename : devtools/client/netmonitor/components/RequestList.js => devtools/client/netmonitor/src/components/RequestList.js
rename : devtools/client/netmonitor/components/RequestListContent.js => devtools/client/netmonitor/src/components/RequestListContent.js
rename : devtools/client/netmonitor/components/RequestListEmptyNotice.js => devtools/client/netmonitor/src/components/RequestListEmptyNotice.js
rename : devtools/client/netmonitor/components/RequestListHeader.js => devtools/client/netmonitor/src/components/RequestListHeader.js
rename : devtools/client/netmonitor/components/RequestListItem.js => devtools/client/netmonitor/src/components/RequestListItem.js
rename : devtools/client/netmonitor/components/ResponsePanel.js => devtools/client/netmonitor/src/components/ResponsePanel.js
rename : devtools/client/netmonitor/components/SecurityPanel.js => devtools/client/netmonitor/src/components/SecurityPanel.js
rename : devtools/client/netmonitor/components/StatisticsPanel.js => devtools/client/netmonitor/src/components/StatisticsPanel.js
rename : devtools/client/netmonitor/components/TabboxPanel.js => devtools/client/netmonitor/src/components/TabboxPanel.js
rename : devtools/client/netmonitor/components/TimingsPanel.js => devtools/client/netmonitor/src/components/TimingsPanel.js
rename : devtools/client/netmonitor/components/toolbar.js => devtools/client/netmonitor/src/components/Toolbar.js
rename : devtools/client/netmonitor/components/moz.build => devtools/client/netmonitor/src/components/moz.build
rename : devtools/client/netmonitor/constants.js => devtools/client/netmonitor/src/constants.js
rename : devtools/client/netmonitor/har/har-automation.js => devtools/client/netmonitor/src/har/har-automation.js
rename : devtools/client/netmonitor/har/har-collector.js => devtools/client/netmonitor/src/har/har-collector.js
rename : devtools/client/netmonitor/har/har-exporter.js => devtools/client/netmonitor/src/har/har-exporter.js
rename : devtools/client/netmonitor/har/har-utils.js => devtools/client/netmonitor/src/har/har-utils.js
rename : devtools/client/netmonitor/har/moz.build => devtools/client/netmonitor/src/har/moz.build
rename : devtools/client/netmonitor/har/test/.eslintrc.js => devtools/client/netmonitor/src/har/test/.eslintrc.js
rename : devtools/client/netmonitor/har/test/browser.ini => devtools/client/netmonitor/src/har/test/browser.ini
rename : devtools/client/netmonitor/har/test/browser_net_har_copy_all_as_har.js => devtools/client/netmonitor/src/har/test/browser_net_har_copy_all_as_har.js
rename : devtools/client/netmonitor/har/test/browser_net_har_post_data.js => devtools/client/netmonitor/src/har/test/browser_net_har_post_data.js
rename : devtools/client/netmonitor/har/test/browser_net_har_throttle_upload.js => devtools/client/netmonitor/src/har/test/browser_net_har_throttle_upload.js
rename : devtools/client/netmonitor/har/test/head.js => devtools/client/netmonitor/src/har/test/head.js
rename : devtools/client/netmonitor/har/test/html_har_post-data-test-page.html => devtools/client/netmonitor/src/har/test/html_har_post-data-test-page.html
rename : devtools/client/netmonitor/har/toolbox-overlay.js => devtools/client/netmonitor/src/har/toolbox-overlay.js
rename : devtools/client/netmonitor/middleware/batching.js => devtools/client/netmonitor/src/middleware/batching.js
rename : devtools/client/netmonitor/middleware/moz.build => devtools/client/netmonitor/src/middleware/moz.build
rename : devtools/client/netmonitor/middleware/prefs.js => devtools/client/netmonitor/src/middleware/prefs.js
rename : devtools/client/netmonitor/netmonitor-controller.js => devtools/client/netmonitor/src/netmonitor-controller.js
rename : devtools/client/netmonitor/reducers/batching.js => devtools/client/netmonitor/src/reducers/batching.js
rename : devtools/client/netmonitor/reducers/filters.js => devtools/client/netmonitor/src/reducers/filters.js
rename : devtools/client/netmonitor/reducers/index.js => devtools/client/netmonitor/src/reducers/index.js
rename : devtools/client/netmonitor/reducers/moz.build => devtools/client/netmonitor/src/reducers/moz.build
rename : devtools/client/netmonitor/reducers/requests.js => devtools/client/netmonitor/src/reducers/requests.js
rename : devtools/client/netmonitor/reducers/sort.js => devtools/client/netmonitor/src/reducers/sort.js
rename : devtools/client/netmonitor/reducers/timing-markers.js => devtools/client/netmonitor/src/reducers/timing-markers.js
rename : devtools/client/netmonitor/reducers/ui.js => devtools/client/netmonitor/src/reducers/ui.js
rename : devtools/client/netmonitor/request-list-context-menu.js => devtools/client/netmonitor/src/request-list-context-menu.js
rename : devtools/client/netmonitor/request-list-tooltip.js => devtools/client/netmonitor/src/request-list-tooltip.js
rename : devtools/client/netmonitor/selectors/filters.js => devtools/client/netmonitor/src/selectors/filters.js
rename : devtools/client/netmonitor/selectors/index.js => devtools/client/netmonitor/src/selectors/index.js
rename : devtools/client/netmonitor/selectors/moz.build => devtools/client/netmonitor/src/selectors/moz.build
rename : devtools/client/netmonitor/selectors/requests.js => devtools/client/netmonitor/src/selectors/requests.js
rename : devtools/client/netmonitor/selectors/ui.js => devtools/client/netmonitor/src/selectors/ui.js
rename : devtools/client/netmonitor/utils/client.js => devtools/client/netmonitor/src/utils/client.js
rename : devtools/client/netmonitor/utils/create-store.js => devtools/client/netmonitor/src/utils/create-store.js
rename : devtools/client/netmonitor/utils/filter-predicates.js => devtools/client/netmonitor/src/utils/filter-predicates.js
rename : devtools/client/netmonitor/utils/format-utils.js => devtools/client/netmonitor/src/utils/format-utils.js
rename : devtools/client/netmonitor/utils/l10n.js => devtools/client/netmonitor/src/utils/l10n.js
rename : devtools/client/netmonitor/utils/mdn-utils.js => devtools/client/netmonitor/src/utils/mdn-utils.js
rename : devtools/client/netmonitor/utils/moz.build => devtools/client/netmonitor/src/utils/moz.build
rename : devtools/client/netmonitor/utils/prefs.js => devtools/client/netmonitor/src/utils/prefs.js
rename : devtools/client/netmonitor/utils/request-utils.js => devtools/client/netmonitor/src/utils/request-utils.js
rename : devtools/client/netmonitor/utils/sort-predicates.js => devtools/client/netmonitor/src/utils/sort-predicates.js
rename : devtools/client/netmonitor/waterfall-background.js => devtools/client/netmonitor/src/waterfall-background.js
extra : rebase_source : 550e2876ee907f543cfbe1135d0d5792faabdda5
2017-03-26 20:35:38 +08:00
Ricky Chien
5e1d557c94 Bug 1350215 - Move store.js into utils/store.js r=gasolin,Honza
MozReview-Commit-ID: BmEktkb2QXt

--HG--
extra : rebase_source : d032488f778bad3829e11c07b6591e4ef71fb407
2017-03-26 19:26:11 +08:00
Ricky Chien
4985cbf293 Bug 1350215 - Merge shared/components to components r=Honza
MozReview-Commit-ID: 9BQBRYCfdsu

--HG--
rename : devtools/client/netmonitor/components/request-list-empty.js => devtools/client/netmonitor/components/RequestListEmptyNotice.js
extra : rebase_source : b27aed35a589d11c790896a5d9522d8382627b8e
2017-03-26 19:11:01 +08:00
Fred Lin
03a5b0fc19 Bug 1349415 - Pass Connection data into NetmonitorController to run on both toolbar and browser tab;r=Honza
MozReview-Commit-ID: xsJLqnL5O6

--HG--
extra : rebase_source : 25ec477794ee65b76968e428752e7d53caf5390f
2017-03-22 09:27:46 +08:00
Iris Hsiao
b26415ec87 Backed out changeset 448adfbcfda1 (bug 1349275) for eslint failure
--HG--
extra : rebase_source : 0728e29de869800694671a1133fa7c9beb66df06
2017-03-29 10:29:13 +08:00
Matteo Ferretti
4f078211da Bug 1349275 - refactored moveInfobar function; r=pbro
- Added `getViewportDimensions`
- Added `getComputedStylePropertyValue` to `CanvasFrameAnonymousContentHelper`
- Refactored totally `moveInfobar` to works with both APZ enabled and new
  positioned absolutely highlighters
- Updated `AutoRefreshHighlighter` for having a `scrollUpdate` method.
- Updated tests

MozReview-Commit-ID: 5m31ZzRzLXr

--HG--
extra : rebase_source : 8c599a323ff51f1e032405fae47674b695c75b86
2017-03-28 12:40:22 +02:00
Vangelis Katsikaros
d3f229778c Bug 1345489 - Introduce a new column for protocol version. r=Honza
MozReview-Commit-ID: IKfGHiaacv8

--HG--
extra : rebase_source : dd4dd75261cd873d9896b430c2a7d1c9b9395af7
2017-04-10 22:09:57 +03:00
Alexandre Poirot
41dd51eec8 Bug 1335419 - Lazy load and instanciate computed view, ruleview and font inspector. r=jdescottes
MozReview-Commit-ID: CtI8w6Ao35u

--HG--
extra : rebase_source : e68ac3b4c3922a23d14d6345a3ed4433f06c6d34
2017-01-31 16:26:40 +01:00
Ricky Chien
bb13410e5c Bug 1350218 - Support L10N properties loader in Launchpad r=Honza
MozReview-Commit-ID: HCtAzZzl04z

--HG--
extra : rebase_source : f0de524a28ddf22f923d6e1e661c3a84078752dd
2017-03-30 18:40:18 +08:00
Julian Descottes
1cc1cb498c Bug 1348005 - update grid panel on reflows;r=gl
Extracted the reflow tracking logic from the box-model to a dedicated util in
inspector/shared/reflow-tracker.js to use it in both box-model and grid-inspector.

MozReview-Commit-ID: DZCOH3RDY6

--HG--
extra : rebase_source : 490befd89eb1011a02d8a99ac965b077da324067
2017-03-29 20:51:27 +02:00
Julian Descottes
9791406fea Bug 1350499 - exclude styles for pseudo-els when building boxmodel widget;r=gl
MozReview-Commit-ID: GSoqlJ97KT7

--HG--
extra : rebase_source : 8cceb22ad3a7326f72a3a112a904a741f2017f45
2017-03-29 15:41:42 +02:00
Andrew McCreight
cb4bfc4017 Bug 1351385, part 4 - Move the JSON sniffer out of its own file. r=Honza
The sniffer is always run. By moving it out of its own file we can
avoid importing the devtools loader system at startup, which uses a
number of compartments.

MozReview-Commit-ID: IoMIzZeRDo2

--HG--
extra : rebase_source : a58f03898c5eeabfb7b43052e7f65d715c3a5b1e
2017-03-28 11:32:34 -07:00
Andrew McCreight
6c3486e2e6 Bug 1351385, part 3 - Rename stuff for the JSON sniffer. r=Honza
This is in preparation for moving it to converter-observer.js.

MozReview-Commit-ID: 8TsIvQsOqoc

--HG--
extra : rebase_source : 0bcc4f8fe5c24ef3cbe8f0384a8fa37ac820f12d
2017-03-28 09:20:02 -07:00
Andrew McCreight
87776ec0a5 Bug 1351385, part 2 - Lazily load JsonViewService. r=Honza
This avoids triggering the devtools loading system just to register a
factory.

MozReview-Commit-ID: BVMfCRlG9kv

--HG--
extra : rebase_source : 06dadfb180ae8855a7edfba38322d08afeb8dc8e
2017-03-28 09:13:05 -07:00
Andrew McCreight
b9480f3867 Bug 1351385, part 1 - Rename JSON viewer things in preparation for a move to another file. r=Honza
MozReview-Commit-ID: 1jj5VEELkrv

--HG--
extra : rebase_source : 6d8c9321e8e099947e401583408dfd9179d371fe
2017-03-28 08:45:03 -07:00
Patrick Brosset
a44fd997b0 Bug 1346424 - Wait for the button to become paused instead of the timeline-data-changed event; r=pbro
MozReview-Commit-ID: 9xsx5gguspP

--HG--
extra : rebase_source : 4db987e0742315446d191bf9b6041a30ac971281
2017-03-22 14:37:51 +01:00
Alexandre Poirot
ba94c75930 Bug 1320939 - Lazy load tooltip event helpers. r=jdescottes
MozReview-Commit-ID: 1FXSUprpCN7

--HG--
extra : rebase_source : d641c6d6f27390f9dfaaeecffe2ec86a88617652
2016-12-06 03:50:57 -08:00
Kris Maglione
0ee4a22385 Bug 1314861: Minor optimization: Define globals for shared sandbox modules on the sandbox rather than each module. r=ochameau
MozReview-Commit-ID: Lre6L2u4Y2r

--HG--
extra : rebase_source : 118422fee9361152037f7746fa4beaffa6d5157d
2017-04-14 16:13:41 -07:00
Kris Maglione
04e16d2f2a Bug 1314861: Add defineLazyGetter global to SDK loader modules. r=ochameau
MozReview-Commit-ID: L1NShFpnb2S

--HG--
extra : rebase_source : 8d4b132da64a3af03a120f45f160731295a8b086
2017-04-14 13:28:02 -07:00
Kris Maglione
e1feed9d51 Bug 1317697: Split ExtensionContent.jsm into a stub process script. r=mixedpuppy
MozReview-Commit-ID: 4vn0ERZiBQd

--HG--
rename : toolkit/components/extensions/ExtensionContent.jsm => toolkit/components/extensions/extension-process-script.js
extra : rebase_source : cc473732c152fa2ac47202a8c5634e4a68a30763
extra : absorb_source : 4a9b52534bee64e907e61f3bb229b0ad7849c097
2017-04-14 17:00:51 -07:00
Florian Queze
f935ddc4b3 Bug 1356569 - Remove notifyObservers' last parameter when it is falsy, r=jaws. 2017-04-14 21:51:39 +02:00
Florian Queze
37ff4fc7cc Bug 1356569 - Remove addObserver's last parameter when it is false, r=jaws. 2017-04-14 21:51:38 +02:00