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