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

8751 Коммитов

Автор SHA1 Сообщение Дата
Jan Odvarko 8671511dd6 Bug 1421335 - Right response info link disappears after request is expanded; r=nchevobbe
MozReview-Commit-ID: 5WEqPQaWGGt

--HG--
extra : rebase_source : eaf338dcf3ea3a1c4c3644cc4a1a2c2c988cbd9f
2017-12-07 16:28:33 +01:00
Nicolas Chevobbe ac5956e0ec Bug 1404368 - Enable browser_webconsole_document_focus.js in new frontend;r=jdescottes.
MozReview-Commit-ID: Fd9p0oigRpB

--HG--
extra : rebase_source : 5eae9a37c92687e1f5f86d919e295ae33d9f1902
2018-01-04 12:35:06 +01:00
Nicolas Chevobbe b745997208 Bug 1428006 - Remove skip-if for browser_webconsole_cspro.js;r=nchevobbe.
The test was refactored in Bug 1408932, but it wasn't actually enabled.

MozReview-Commit-ID: 85vI9iX5p2V

--HG--
extra : rebase_source : 03182ab24bd057ad0be9d2e3f3e884c346d53d98
2018-01-04 12:18:18 +01:00
Ricky Chien c32b43da30 Bug 1426809 - Prevent fetching network update packet again after packet arrived r=Honza
MozReview-Commit-ID: 5Ifgj1opsNW

--HG--
extra : rebase_source : 6ceb827520761049f79f420d3305ac9fe8844187
2017-12-23 14:03:24 +08:00
Nicolas Chevobbe 6a750a05bc Bug 1427184 - devtools-reps v0.18.0: update reps bundle from GitHub;r=Honza.
MozReview-Commit-ID: 86gvJSI7grM

--HG--
extra : rebase_source : 525bb92f9c348b7ac648bea47224274f6c8b49c7
2018-01-04 09:02:55 +01:00
Daisuke Akatsuka afb89c1360 Bug 1426194 - Part 2: Add test. r=pbro
MozReview-Commit-ID: 9A0hRjiYGTE

--HG--
extra : rebase_source : 95a5310a5755f951baeabf62ddc8f9c7eb3abe9d
2017-12-22 00:49:18 +09:00
Daisuke Akatsuka 7d7ca7e5f3 Bug 1426194 - Part 1: Correspond to the keyframes which have same offset. r=pbro
The problem with this bug was that it did not correspond to animations that
have multiple keyframes with the same offset.

In summary graph, although we were changing the resolution for the graph
creation by the distance of offset between keyframes, as the calculation of
resolution between keyframes with equivalent offset was infinite, generation
was not completed and it was in a state of freezing.
In here, in case of zero distance of offsets, we make avoiding to affect to
changing the resolution.

In addition, the detail graph did not display correctly.
For example, there is an animation below.

div.animate(
  [
    {
      offset: 0,
      opacity: 1,
    },
    {
      offset: 0.5,
      opacity: 0.5,
    },
    {
      offset: 0.5,
      opacity: 0.1,
    },
    {
      offset: 1,
      opacity: 1,
    },
  ],
  1000
);

In this animation, opacity changes from 1 to 0.5 during 0 - 499ms, from 0.1 to 1
after 500ms.
So, opacity at offset 0.5 behaves 0.5 during 0 - 499ms, 0.1 after 500ms.
Since current animation inspector creates the graph with computed value of the
time of offset, the opacity of offset 0.5 always is 0.1 in the example,
was not correct.
As a solution, same to the actual animation work, create the graph between each
keyframes with range that from start keyframe offset time to just before the
time of end keyframe offset time.
Also, in same offsets, connects between just before the time of the offset time
and the offset time.
So, in the example, we separate as below, then calculate the each coordinates,
then combine as graph shape.

1: 0 ~ 499.999ms
2: 499.999 ~ 500ms (same offsets)
3: 500 ~ 999.999ms
4: 1000ms

MozReview-Commit-ID: p4Cn2N9iFt

--HG--
extra : rebase_source : 0f175fa0b7a3c882171e59a6e4a94bb4802e96d2
2017-12-22 00:49:10 +09:00
Nicolas Chevobbe 4813426592 Bug 1404368 - Enable browser_webconsole_document_focus.js in new frontend;r=jdescottes.
MozReview-Commit-ID: Fd9p0oigRpB

--HG--
extra : rebase_source : 8a3eb4701abaf310c6347ffbedc2a20552ed844c
2018-01-04 12:35:06 +01:00
Nicolas Chevobbe 17b0c62378 Bug 1428006 - Remove skip-if for browser_webconsole_cspro.js;r=nchevobbe.
The test was refactored in Bug 1408932, but it wasn't actually enabled.

MozReview-Commit-ID: 85vI9iX5p2V

--HG--
extra : rebase_source : 928c85e00e1b690129345a03c4741f1d8175a2ad
2018-01-04 12:18:18 +01:00
Ricky Chien 5baf806cde Bug 1426809 - Prevent fetching network update packet again after packet arrived r=Honza
MozReview-Commit-ID: 5Ifgj1opsNW

--HG--
extra : rebase_source : 9ddd273520657db459df15c9a52cef120d669c51
2017-12-23 14:03:24 +08:00
Nicolas Chevobbe 1e02011a6f Bug 1427184 - devtools-reps v0.18.0: update reps bundle from GitHub;r=Honza.
MozReview-Commit-ID: 86gvJSI7grM

--HG--
extra : rebase_source : ffa32f67d08eb463d3dc3eac98f52d03a9a08473
2018-01-04 09:02:55 +01:00
Daisuke Akatsuka d740edad77 Bug 1426194 - Part 2: Add test. r=pbro
MozReview-Commit-ID: 9A0hRjiYGTE

--HG--
extra : rebase_source : e4f2f93a78f096d8cd99ecba8c33c42a1b1711f3
2017-12-22 00:49:18 +09:00
Daisuke Akatsuka c7d88e3c8e Bug 1426194 - Part 1: Correspond to the keyframes which have same offset. r=pbro
The problem with this bug was that it did not correspond to animations that
have multiple keyframes with the same offset.

In summary graph, although we were changing the resolution for the graph
creation by the distance of offset between keyframes, as the calculation of
resolution between keyframes with equivalent offset was infinite, generation
was not completed and it was in a state of freezing.
In here, in case of zero distance of offsets, we make avoiding to affect to
changing the resolution.

In addition, the detail graph did not display correctly.
For example, there is an animation below.

div.animate(
  [
    {
      offset: 0,
      opacity: 1,
    },
    {
      offset: 0.5,
      opacity: 0.5,
    },
    {
      offset: 0.5,
      opacity: 0.1,
    },
    {
      offset: 1,
      opacity: 1,
    },
  ],
  1000
);

In this animation, opacity changes from 1 to 0.5 during 0 - 499ms, from 0.1 to 1
after 500ms.
So, opacity at offset 0.5 behaves 0.5 during 0 - 499ms, 0.1 after 500ms.
Since current animation inspector creates the graph with computed value of the
time of offset, the opacity of offset 0.5 always is 0.1 in the example,
was not correct.
As a solution, same to the actual animation work, create the graph between each
keyframes with range that from start keyframe offset time to just before the
time of end keyframe offset time.
Also, in same offsets, connects between just before the time of the offset time
and the offset time.
So, in the example, we separate as below, then calculate the each coordinates,
then combine as graph shape.

1: 0 ~ 499.999ms
2: 499.999 ~ 500ms (same offsets)
3: 500 ~ 999.999ms
4: 1000ms

MozReview-Commit-ID: p4Cn2N9iFt

--HG--
extra : rebase_source : e4a89ebfbb409dede26a4aaf4a45cdd2e3a31d16
2017-12-22 00:49:10 +09:00
Yura Zenevich 4e87c5c02d Bug 1428429 - add role presentation to visual highlighter parts to prevent creation of unnecessary accessible objects. r=gl
MozReview-Commit-ID: GDM9txyiYS5
2018-01-10 13:13:05 -05:00
Julian Descottes aec4f03b2a Bug 1425393 - open sw tabs in background in about:debugging tests;r=ochameau
MozReview-Commit-ID: 8UyrTDtHa7b

--HG--
extra : rebase_source : 2737c3a0b354215713714e6b03c0e76e638fef9d
2017-12-12 15:49:36 -06:00
Noemi Erli 2da14c0702 Backed out changeset 591cf97d4777 (bug 1427077) for ES failures in /builds/worker/checkouts/gecko/devtools/client/shared/webpack/rewrite-lazy-getter.js r=backout on a CLOSED TREE 2018-01-04 10:42:44 +02:00
pd4d10 32c41ce3c9 Bug 1427077 - Make devtools/client/netmonitor work correctly at browser r=rickychien
Replace `loader.lazyGetter` pattern with normal variable assignment

MozReview-Commit-ID: I08f8hnQ0nN

--HG--
extra : rebase_source : 18d9108d1b49aad92f0c9a2223c2fff58e1dddb1
2018-01-03 21:33:57 +08:00
Ricky Chien 255b132d6a Bug 1426057 - Move chart style from skin/widgets.css StatisticsPanel.css r=Honza
MozReview-Commit-ID: B08TtEdZ9h

--HG--
extra : rebase_source : efdef2ac32111fe0fd40fc0f8c1d23c87e5b6214
2017-12-22 15:55:10 +08:00
Nicolas Chevobbe 49d939d990 Bug 1406038 - Rename and enable browser_webconsole_bug_1050691_click_function_to_source.js in new console frontend; r=bgrins.
The test differs a bit from the old one since we are now testing that there is
a button to jump to definition.

MozReview-Commit-ID: DnC5uJ3pAea

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug_1050691_click_function_to_source.html => devtools/client/webconsole/new-console-output/test/mochitest/test-click-function-to-source.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug_1050691_click_function_to_source.js => devtools/client/webconsole/new-console-output/test/mochitest/test-click-function-to-source.js
extra : rebase_source : e0700658c4a88b0e16ebf8e14102dacd52aec71f
2018-01-03 18:06:34 +01:00
Mike Park 02f6a30000 Bug 1419088 - Hitting the Esc key on the console when sidebar is open should close it. r=bgrins
MozReview-Commit-ID: DqHjv0tXdTW

--HG--
extra : rebase_source : e72f342c480cb4b7a2dbe09e20dc963c295cc136
2017-12-19 10:54:57 -05:00
Oriol Brufau ff98f5e44d Bug 1426094 - Add test for URL linkification in the JSON Viewer r=Honza
MozReview-Commit-ID: Xbn28TLcMu

--HG--
extra : rebase_source : d2249d7fc9ddc392b3b907b3e9b9b9b938939e2f
2017-12-22 17:41:09 +01:00
Gijs Kruitbosch 5e38a0cf55 Bug 1425356 - remove various dead XUL sort attributes, r=bz,florian
- sort-statics-last is no longer meaningful now non-static (ie template) items don't exist
- we don't use the 'resource' attribute anywhere in XUL.
- sortResource/sortResource2 are unused.
- we don't have meaningful consumers for sortSeparators

MozReview-Commit-ID: C31vC9MCrDo

--HG--
extra : rebase_source : 539fd84201eaeead62ac73b3213bfdf6f4333e9a
2017-12-20 15:08:27 +00:00
Nicolas Chevobbe e2178a02fc Bug 1427595 - Fix ObjectInspector css regressed by devtools-reps-0.16.0; r=Honza.
In the 0.16.0 bundle, we removed most of the ObjectInspector CSS custom properties
because they were being slow. This means that some of the styles we overrided in the
console weren't overriden anymore.
This patch fixes that so we get to the same style we have prior to the new bundle.

MozReview-Commit-ID: JP35pkX6PHZ

--HG--
extra : rebase_source : 194c90856730348e6b7ce6f9bbff52d9ae6c8151
2018-01-03 10:38:14 +01:00
Ricky Chien 2bd53a749d Bug 1425733 - Add requestLongerTimeout() in browser_net_filter-flags.js r=Honza
MozReview-Commit-ID: By6Zjxw1oqw

--HG--
extra : rebase_source : 2b6bba97c1b20e68183b206e821cfa3fde373689
2018-01-03 10:20:57 +08:00
Nicolas Chevobbe 0e02075d22 Bug 1408932 - Rename and enable browser_webconsole_cspro.js in new frontend; r=Honza.
MozReview-Commit-ID: 2qSue0CIO1c

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug_1010953_cspro.html => devtools/client/webconsole/new-console-output/test/mochitest/test-cspro.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug_1010953_cspro.html^headers^ => devtools/client/webconsole/new-console-output/test/mochitest/test-cspro.html^headers^
extra : rebase_source : d52018cb0124cdddc5e8f33f34db298be6b8d9fb
2017-12-07 14:11:11 +01:00
Julian Descottes 7cbf0a6657 Bug 1425280 - Fix localization note mismatch in devtools files;r=pbro
MozReview-Commit-ID: FVJUjB25smI

--HG--
extra : rebase_source : acdf3b9dca3fede5c3b621f8f8064002bd77e978
extra : source : 9a75a20d6fba62635c6646af38cffabb5701a77a
2017-12-14 15:43:37 -06:00
Nicolas Chevobbe 4bebcbedb0 Bug 1405252 - Enable browser_webconsole_console_logging_workers_api.js in the new frontend; r=Honza.
MozReview-Commit-ID: I7b45uLfNkw

--HG--
extra : rebase_source : e92c61b5e7376866521e2b466443039f8bab5927
2017-11-21 09:23:31 +01:00
Julian Descottes 5f1069a0f5 Bug 1425393 - open sw tabs in background in about:debugging tests;r=ochameau
MozReview-Commit-ID: 8UyrTDtHa7b

--HG--
extra : rebase_source : ec05347a3fae742eb72fe489f204cd55b86cc195
2017-12-12 15:49:36 -06:00
Noemi Erli 7306351412 Backed out changeset 591cf97d4777 (bug 1427077) for ES failures in /builds/worker/checkouts/gecko/devtools/client/shared/webpack/rewrite-lazy-getter.js r=backout on a CLOSED TREE
--HG--
extra : rebase_source : 0eb526012bdb75e7d27e1e5064d0040cb0a39ff4
2018-01-04 10:42:44 +02:00
pd4d10 f19aea9514 Bug 1427077 - Make devtools/client/netmonitor work correctly at browser r=rickychien
Replace `loader.lazyGetter` pattern with normal variable assignment

MozReview-Commit-ID: I08f8hnQ0nN

--HG--
extra : rebase_source : 591cf97d4777207e6b6964d28f66ce61795d77d2
2018-01-03 21:33:57 +08:00
Ricky Chien 52515b78c1 Bug 1426057 - Move chart style from skin/widgets.css StatisticsPanel.css r=Honza
MozReview-Commit-ID: B08TtEdZ9h

--HG--
extra : rebase_source : ff41bc9846400f41bc8152112c92c3bc0e595898
2017-12-22 15:55:10 +08:00
Nicolas Chevobbe 4022bf4f97 Bug 1406038 - Rename and enable browser_webconsole_bug_1050691_click_function_to_source.js in new console frontend; r=bgrins.
The test differs a bit from the old one since we are now testing that there is
a button to jump to definition.

MozReview-Commit-ID: DnC5uJ3pAea

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug_1050691_click_function_to_source.html => devtools/client/webconsole/new-console-output/test/mochitest/test-click-function-to-source.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug_1050691_click_function_to_source.js => devtools/client/webconsole/new-console-output/test/mochitest/test-click-function-to-source.js
extra : rebase_source : 343e6d3828bdacf54d02c79a9e9116837f3b00f1
2018-01-03 18:06:34 +01:00
Mike Park 2adeae4a8c Bug 1419088 - Hitting the Esc key on the console when sidebar is open should close it. r=bgrins
MozReview-Commit-ID: DqHjv0tXdTW

--HG--
extra : rebase_source : c4bfd034c0ee0d0fe61a7572e9a6484455cc4f57
2017-12-19 10:54:57 -05:00
Margareta Eliza Balazs 3380e11f29 Merge inbound to mozilla-central r=merge a=merge 2017-12-27 23:37:41 +02:00
Gabriel Luong 110ff92145 Bug 1427051 - Revert portait mode width of the inspector back to 700px. r=me 2017-12-27 13:28:31 -05:00
DeanTing 1b76f26695 Bug 1227746 - Hide side panels when related request is filtered out. r=rickychien
MozReview-Commit-ID: 6QolncXMVfh

--HG--
extra : rebase_source : 765519f55b10b137212468c72019dc2de473733c
2017-12-15 15:17:44 +08:00
Jan Odvarko e91b1b7b8d Bug 1424690 - Fix message expanding; r=nchevobbe
MozReview-Commit-ID: EeHZXmGtCwX

--HG--
extra : rebase_source : 6275416c4742f249032e41d0ee04c4eae2468026
2017-12-11 10:42:24 +01:00
shindli bdec02b3ec Merge inbound to mozilla-central r=merge a=merge 2017-12-22 23:41:44 +02:00
Jason Laster d52357f283 Bug 1426462 - Update Debugger Frontend (12-20). r=jdescottes
MozReview-Commit-ID: LU8UG988kll
2017-12-22 18:33:29 +01:00
Andreea Pavel 78bc55ae1f Merge inbound to mozilla-centra r=merge a=merge 2017-12-22 11:54:07 +02:00
Alexandre Poirot e65ab1463e Bug 1365574 - Release event loop between react module loading and toolbox react rendering. r=pbro
MozReview-Commit-ID: D1M9n3VFdHJ

--HG--
extra : rebase_source : 400bcbb8a4984c32e9decc0877ed9ae7ce386842
2017-11-30 08:34:05 -08:00
SagarB 8b9b4b8fd7 Bug 1402485 - Remove Delete all Session cookies option for non cookie staorage r=miker
Borrowed code from onTreePopupShowing into onTablePopupShowing

MozReview-Commit-ID: 1IotAfqwlpg

--HG--
extra : rebase_source : bd1bc0256ccfbcaf508b319167cab9c21be7dbf2
2017-12-10 18:56:12 +05:30
tera_1225@hotmail.com e7c601ce4c Bug 1425839 Reduced requests-list-headers-wrapper z-index from 1000 to 1. r=rickychien
MozReview-Commit-ID: DwLsvluvNGm

--HG--
extra : rebase_source : a37ec22be895b1e0545eeb4f396f90f20e96d877
2017-12-22 14:43:37 +01:00
Alexandre Poirot 6d25219f3c Bug 1425818 - Stop using CPOW in devtools/server/tests/browser/browser_canvasframe_helper_*.js. r=pbro
MozReview-Commit-ID: 70IEX3Q5iGa

--HG--
extra : rebase_source : 970990e5425eab8c5a1914fef86a4b539030b3f0
2017-12-18 02:21:41 -08:00
Nicolas Chevobbe 60fc06cede Bug 1405254 - Add console.count test cases in console mocha tests;r=bgrins.
This patch adds a few console.count stubs and check
that they all render as expected.

MozReview-Commit-ID: IejxMKnLTAz

--HG--
extra : rebase_source : a9df8bd9eb1b78c6f05106c16d48dd31d16087f6
2017-11-22 16:53:42 +01:00
Nicolas Chevobbe 849f7684b6 Bug 1428394 - Fix mocha network test; r=Honza.
The test was failing because we have more than one
networkUpdate in the store.
As it's not the purpose of this test case to assert the
number of updates, let's just check that we have some,
and that they are removed after MESSAGES_CLEAR.

MozReview-Commit-ID: FgZv8epfP0q

--HG--
extra : rebase_source : 269f8654fa0f9f06c8ece5fe6415f82385553e85
2018-01-05 18:51:41 +01:00
Nicolas Chevobbe bddcac1672 Bug 1428394 - Fix mocha sidebar tests; r=Honza.
The tests were failing because all the sidebarToggle actions
were renamed to sideBarClose, which made the tests inacurate.

MozReview-Commit-ID: LBkqTzNhaqV

--HG--
extra : rebase_source : 5943924d6fb073cb2375df275665de206aaf857b
2018-01-05 18:40:44 +01:00
Vincent Lequertier 450fb4980c Bug 1393464 - Remove `Heritage` from devtools helper view-helpers.js; r=pbro
Calling "devtools/shared/extend" instead.

MozReview-Commit-ID: HbonI7vq8Be

--HG--
extra : rebase_source : 5c9f2ccd0f5cddfcdb1949354932fd492564cc93
2018-01-04 18:54:52 +01:00
Nicolas Chevobbe e4b76ad2d1 Bug 1403907 - Enable browser_webconsole_duplicate_errors.js in new console frontend; r=bgrins.
MozReview-Commit-ID: 5LvsTa8zpdN

--HG--
extra : rebase_source : 6aec7a783637a3a66e354ad0afb741cff329af0f
2018-01-04 18:03:49 +01:00
Julian Descottes fa4273ed80 Bug 1425897 - Fix race condition in about:debugging test helper;r=baku
MozReview-Commit-ID: ELvxWzld9Um

--HG--
extra : rebase_source : b83e790b6e559374be302b6654b39ac1d8ab5271
2017-12-20 19:40:49 +01:00
Sebastian Hengst 92ed624d10 merge mozilla-central to autoland. r=merge a=merge
--HG--
extra : rebase_source : db451eb58e88563fe7709c8f4b3e69135df66253
2017-12-21 13:38:16 +02:00
Florian Quèze 22c55eb7b7 Bug 1421992 - Hand written cleanup patch to make tests pass after removing obsolete xpcshell functions. r=Gijs,ochameau a=Aryx 2017-12-21 11:11:57 +01:00
Florian Quèze 0f55cd45be Bug 1421992 - script-generated patch to replace do_execute_soon, do_print and do_register_cleanup with executeSoon, info and registerCleanupFunction, rs=Gijs. 2017-12-21 11:10:23 +01:00
Florian Quèze e0f995ea08 Bug 1421992 - hand written cleanup patch to make xpcshell tests pass after replacing do_check_* with Assert.*, r=Gijs. 2017-12-21 11:08:19 +01:00
Florian Quèze 032c961e0a Bug 1421992 - script-generated patch to replace do_check_* functions with their Assert.* equivalents, rs=Gijs. 2017-12-21 11:08:17 +01:00
tera_1225@hotmail.com 7363292a26 Bug 1426018 Added padding to request-list-header-wrapper firebug theme. r=Honza
MozReview-Commit-ID: 2OhRT3rvQuP

--HG--
extra : rebase_source : 77c9909957e62b2455806b26a5fc5b665a42e4c8
2017-12-19 23:36:46 +01:00
abhinav 0b870de381 Bug 1419366 - Stop using ImmutableJS in filters reducer. r=Honza
MozReview-Commit-ID: AgBGfJEy8t7

--HG--
extra : rebase_source : 16a2168d17ac01f71cb77c3d9278b3e60de2791e
2017-12-17 23:56:27 +05:30
Nicolas Chevobbe c4a9a8814e Bug 1426108 - devtools-reps v0.17.0: update reps bundle from GitHub;r=Honza.
MozReview-Commit-ID: 9mcunsVZtIf

--HG--
extra : rebase_source : 679eb82fee75894c4a7c63ac9f35b19920c43c2c
2017-12-20 19:43:07 +01:00
Alexandre Poirot e45c2e154b Bug 1420289 - Lazy load optional React components from netmonitor. r=Honza
MozReview-Commit-ID: 9kzmYrzafjj

--HG--
rename : devtools/client/netmonitor/src/components/RequestListColumnRemoteIp.js => devtools/client/netmonitor/src/components/RequestListColumnRemoteIP.js
extra : rebase_source : 523fc019bcae4a0ebe0422bb56cf25328128da18
2017-12-13 10:21:08 -08:00
Cosmin Sabou 02ce5d2807 Backed out changeset 61ec86ef441a (bug 1406415) for ESlint failure on devtools/client/shared/components/devtools-components.js:1:1 r=backout on a CLOSED TREE 2017-12-20 22:53:48 +02:00
Nicolas Chevobbe f3d82f3792 Bug 1406415 - Create a devtools-components bundle; r=gl.
MozReview-Commit-ID: 5jEsz5oBB9F

--HG--
extra : rebase_source : 31639e8b1fb7c0fed04f9c1e5e70dab20cfdeb43
2017-12-16 22:17:54 -06:00
Margareta Eliza Balazs 060948a574 Merge inbound to mozilla-central r=merge a=merge 2017-12-20 11:47:11 +02:00
Bogdan Tara 9ac9aa3461 Merge mozilla-central to inbound. r=merge a=merge on a CLOSED TREE 2017-12-20 00:17:00 +02:00
Jason Laster 13de9fd4ca Bug 1425876 - Update Debugger frontend (12-18). r=jdescottes
MozReview-Commit-ID: H6oKTciiKRO

--HG--
extra : rebase_source : 1e45afed51b1296aa4ba89b33cc20730ff8ade82
2017-12-19 18:03:15 +01:00
Ben Kelly 63518babe9 Bug 1425316 P1 Expose a chrome-only Window.shouldReportForServiceWorkerScope() method that initially forwards to ServiceWorkerManager. r=asuth 2017-12-19 10:04:47 -05:00
SagarB 7935458a33 Bug 1421491 - Style fixes in Netmonitor r=Honza
Changed CSS to fix selected row style and removed underline for tree headers

MozReview-Commit-ID: hnmnATPSAw
***
Bug 1421491 - Style fixes in Netmonitor
Updated CSS Styles to fix issues mentioned in the bug

MozReview-Commit-ID: 7ElhjWmTEgM
***
Bug 1421491 - Minor style fixes in netmonitor
Updated CSS to fix style issues in the Bug

--HG--
extra : rebase_source : d0f01d6bd7133b07c66a767d899d93e363dae857
2017-12-11 22:42:22 +05:30
Mike Park 9eae0e83cc Bug 1419086 - Render the ObjectInspector in the console sidebar. r=nchevobbe
MozReview-Commit-ID: RpJf4N5X02

--HG--
extra : rebase_source : b7932851c5108f78969328ce09c3c0db9bd488a6
2017-12-14 14:01:02 -06:00
Oriol Brufau c9ff031c33 Bug 1424721 - Allow long strings and invisible-to-debugger objects to be stored as global variables. r=nchevobbe
MozReview-Commit-ID: IZFKgror7F6

--HG--
extra : rebase_source : ef2073c1338701a3b1d654975e29d21224481c47
2017-12-18 12:52:31 +01:00
Gijs Kruitbosch ffc0ed12d2 Bug 1425363 - remove onWindowTitleChanged given that nobody uses it, r=bgrins
MozReview-Commit-ID: ALslAwZo4K9

--HG--
extra : rebase_source : ca1add0015eea86128c0c5f209252ebb6a228998
2017-12-14 21:55:44 -06:00
Yury Delendik 79f72acfbc Bug 1426251 - Update wasmparser to version 0.4.11. r=jlast
MozReview-Commit-ID: ApiiWfO2T8I

--HG--
extra : rebase_source : 03e0a46bb74cd4688720570421054c6323569ed0
2017-12-19 16:14:13 -06:00
Neerja Pancholi 3b428a8003 Bug 1417725 - (Gecko) Add -moz-column-span alias for column-span property. r=heycam on a CLOSED TREE
MozReview-Commit-ID: G4a0UTVCw9o

--HG--
extra : amend_source : 1a26aeb6712e68375f42c15ef5623faee59c0e2e
2017-11-15 16:39:21 -08:00
Alexandre Poirot adeffba1c4 Bug 1415472 - Document writing new DAMP test. r=sole
MozReview-Commit-ID: vlhuov077c

--HG--
extra : rebase_source : 15ac47b53494d2daac74082c336d6de4e9c0e9bb
2017-12-11 06:07:10 -08:00
James Teh 3721ef104b Bug 1424162: Put the filter bar before the console output in the web console. r=nchevobbe
The filter bar was already positioned before the console output visually.
However, accessibility clients such as screen readers rely on the semantic order, not the visual order, for positioning of content.
This makes it easier for screen reader users to quickly get to the bottom of the console output, which is important for efficiency when reading recent output.

MozReview-Commit-ID: Ae8z6H1k9np

--HG--
extra : rebase_source : 9a5a6cd3db4b5398e6e0f2a648721849e7c0fb78
2017-12-15 15:15:05 -06:00
Emilio Cobos Álvarez dbb3111ff1 Bug 1398492: Remove the grid pref. r=mats
MozReview-Commit-ID: 6Qez8NE8oze
2017-12-17 00:04:35 +01:00
J. Ryan Stinnett 07725c60cd Bug 1306892 - Update style editor fetch test info. r=jdescottes
MozReview-Commit-ID: Eo1yVHm3YSe

--HG--
rename : devtools/client/styleeditor/test/browser_styleeditor_fetch-from-cache.js => devtools/client/styleeditor/test/browser_styleeditor_fetch-from-netmonitor.js
extra : rebase_source : 4d3651180f9a06a0f9b9f361e56e78aea380853b
2018-01-08 12:16:31 -06:00
Alexandre Poirot 74da912044 Bug 1427818 - Fix browser_layoutHelpers-getBoxQuads.js on e10s. r=pbro
MozReview-Commit-ID: 8nA5FVLLm9H

--HG--
extra : rebase_source : 3aa998ce0d51c20b52d5a762ce3042e196b0cf86
2018-01-03 10:19:03 -08:00
Tiberius Oros aed73bde87 Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-01-18 00:31:28 +02:00
Andrea Marchesini 35717fcad1 Bug 1431105 - Prefix in Console when used by JSM, r=bgrins, r=smaug 2018-01-17 09:19:36 -08:00
Tom Tromey 1bb2ea3983 Bug 1255402 - fix getCSSValuesForProperty for object-position and perspective-origin; r=heycam
getCSSValuesForProperty was not including "calc" for object-position
and perspective-origin.  Fixed by updating the variants in
nsCSSPropList.h.

MozReview-Commit-ID: 8STipRhqFwT

--HG--
extra : rebase_source : 70cbb9fc1a9b3a1084bd8846f065f0876daccd75
2018-01-16 10:52:28 -07:00
Nicolas Chevobbe 5c75c1eb91 Bug 1404378 - Enable browser_webconsole_iframe_wrong_hud.js in new console frontend; r=jdescottes.
MozReview-Commit-ID: HBfA7lXjVdI

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-593003-iframe-wrong-hud-iframe.html => devtools/client/webconsole/new-console-output/test/mochitest/test-iframe-wrong-hud-iframe.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-593003-iframe-wrong-hud.html => devtools/client/webconsole/new-console-output/test/mochitest/test-iframe-wrong-hud.html
extra : rebase_source : fca51cb43951784007d9997d0c95da5269053dd5
2018-01-17 09:23:12 +01:00
J. Ryan Stinnett 50f195f322 Bug 1303171 - Adjust highlighters to account for writing mode and text dir. r=gl
The `getCurrentMatrix` function is used by grid and other highlighters to
account for the element's position, transforms, etc.  Here we extend it with
extra logic to account for the element's writing mode and text direction.

MozReview-Commit-ID: AZT4cJySLwk

--HG--
extra : rebase_source : 55504705fba929f6209ac8c76a000fd26cd8dd3e
2017-12-08 22:18:21 -06:00
Tom Tromey eb7d822b0c Bug 1430616 - correctly find end of keyword table in InspectorUtils; r=heycam
Currently, InspectorUtils::GetCSSValuesForProperty will not return
"match-parent" for "text-align".  The bug is that InspectorUtils uses
an out-of-date approach to finding the end of the keyword table; and
this approach conflicts with the special "unsafe" handling in
TextAlignUnsafeEnabledPrefChangeCallback:

https://dxr.mozilla.org/mozilla-central/rev/21ddfb9e6cc008e47da89db50e22697dc7b38635/layout/base/nsLayoutUtils.cpp#317-321

MozReview-Commit-ID: 58qfKQwIyMX

--HG--
extra : rebase_source : 022a8c970c121cbe76533a29d0439a64ead63085
2018-01-15 09:14:55 -07:00
Nicolas Chevobbe df698165af Bug 1430770 - Fix batchMessageAdd for test-perf.html; r=bgrins.
MozReview-Commit-ID: Doyj3Dznvnl

--HG--
extra : rebase_source : 9f56babd9d18f9f5bd1145b18ce34c1e2169cc9c
2018-01-16 15:16:57 +01:00
Julian Descottes 08edaf7d34 Bug 1406039 - migrate browser_webconsole_strict_mode_errors to new frontend;r=nchevobbe
MozReview-Commit-ID: ATuyIFj5c4D

--HG--
extra : rebase_source : bcfa0578223194f014214b240c43c4af0afbea2f
2018-01-16 16:51:02 +01:00
Alexandre Poirot 30e8f95fb9 Bug 1425964 - Prevent sync reflows by using document.dir to check for locale direction. r=Honza,jdescottes
MozReview-Commit-ID: H8uYVtnNXLz

--HG--
extra : rebase_source : f87b933f2a1ef385977c6d265dc448589632917d
2018-01-11 08:22:56 -08:00
Alexandre Poirot e1e0d5ea9e Bug 1425964 - Compute locale direction only once in the toolbox code. r=jdescottes
MozReview-Commit-ID: 1owwWecAe0g

--HG--
extra : rebase_source : aa62376b370a63635d24eb8324fb975d23753912
2018-01-11 08:09:33 -08:00
Jessica Jong 4bee56a645 Bug 1428685 - Use dom.webcomponents.shadowdom.enabled pref for Shadow DOM. r=smaug
Most of the Shadow DOM related code are behind "dom.webcomponents.enabled" and
this pref is only used by Shadow DOM right now, so we should rename it to
"dom.webcomponents.shadowdom.enabled"

MozReview-Commit-ID: er1c7AsSSW
2018-01-16 17:16:30 +01:00
J. Ryan Stinnett 102d79149a Bug 1429121 - Manual cleanup of RDM for async / await. r=ochameau
MozReview-Commit-ID: JMaMDw6D8iK

--HG--
extra : rebase_source : d9d83fc231e1323955662905e5f5ee1b8eb8f8be
2018-01-09 17:03:48 -06:00
J. Ryan Stinnett 892fc5c8b0 Bug 1429121 - Automated conversion of RDM to async / await. r=ochameau
MozReview-Commit-ID: BdzxQW6TbEK

--HG--
extra : rebase_source : b8b0b4bbc1ac7b56cf25c0b2fd38475aa869880f
2018-01-09 10:08:35 -06:00
Ricky Chien e1f805614b Bug 1425273 - eventTimings should be loaded lazily r=ochameau
MozReview-Commit-ID: DWITxNNGKHj

--HG--
extra : rebase_source : 09b61d1970bcbca189b6fadb76915085226535e1
2017-12-14 11:41:17 -06:00
Brian Grinstead 46ff68fff1 Bug 1420934 - Ensure `npm install` on netmonitor before installing in webconsole;r=Honza
If the netmonitor hasn't had `npm install` ran, then running the webconsole tests fail,
because the webconsole depends on netmonitor, and the babel plugin "transform-object-rest-spread"
defined in netmonitor/.babelrc cannot be resolved unless if it's been installed.

MozReview-Commit-ID: KyQgja5rRpg

--HG--
extra : rebase_source : 9a8487fccd7c8641f47dcc405be3c8324bf8474c
2018-01-11 09:28:52 -08:00
Adrian Wielgosik 5b113a4b69 Bug 1414554 - handle React 16 event listeners. r=miker
Tests copied directly from older versions and adapted for React 16.
React source downloaded from https://github.com/facebook/react/releases/tag/v16.2.0

MozReview-Commit-ID: 80zwHIK16Cz

--HG--
extra : rebase_source : 0329b8407e38cf5757281456c62ff42c3846d8b2
2018-01-07 21:11:24 +01:00
Julian Descottes 8c053a5c46 Bug 1428191 - create developer toggle widget before first paint in DevEdition;r=ochameau
MozReview-Commit-ID: KEJNzXrDrEE

--HG--
extra : rebase_source : d046029277b34da86457eac4c41ebd1d361dd2e5
2018-01-05 13:44:19 +01:00
Nicolas Chevobbe 56b64bd286 Bug 1404392 - Enable and refactor browser_webconsole_filter_scroll.js to check that filtering does not affect scroll position; r=bgrins.
MozReview-Commit-ID: DEZDnblICnh

--HG--
extra : rebase_source : 259f1098f24f6418d5194c0840802ce52c77259f
2018-01-08 18:02:51 +01:00
Nicolas Chevobbe 44437622ab Bug 1428717 - Fix netProviderEnhancer for MESSAGE_OPEN action for non-network message;r=Honza.
There was an exception thrown by the netProviderEnhancer because it
retrieves the networkMessageUpdate and access a property on it.
On non-network message, the networkMessageUpdate is undefined, and
accessing the property throws.

We fix this by simply checking if message is not falsy before accessing
the property.

A couple of tests were added to make sure we don't regress this case. This
required changing the setupStore helper a bit to pass a hud stub to the
createStore function (the net enhancer is called only if the hud has a proxy
object). This made some test fail because they weren't dispatching enough
argument to the networkMessageUpdate action.

MozReview-Commit-ID: 7h35ebHSdbF

--HG--
extra : rebase_source : 089dce93d1de60e4b44936b514627803aa2c5100
2018-01-08 15:37:23 +01:00
James Teh 91694598dc Bug 1424156 part 4: Add test for aria-live in Web Console messages. r=nchevobbe
MozReview-Commit-ID: A1y18uTbjIJ

--HG--
extra : rebase_source : 186420ee3dd3fc0887cc89619ff452983c428826
2018-01-05 14:32:09 +10:00
James Teh a7b8705ecc Bug 1424156 part 3: Add test for aria-live in Web Console message icon. r=nchevobbe
MozReview-Commit-ID: 9VXYjOoQOco

--HG--
extra : rebase_source : e7597f2b05d9a44461a05b582c531b7c057f0685
2018-01-04 16:02:48 +10:00
James Teh 06e00020fb Bug 1424156 part 2: Don't treat message icons in the Web Console as live content for accessibility. r=nchevobbe
Message icons now get the aria-live="off" attribute.
This stops screen readers from automaticaly reading icon descriptions, which might be interesting to read later but make things inefficient when automatically reading new output.
MozReview-Commit-ID: BQOUnTRVkBE

--HG--
extra : rebase_source : 47f1df96910a92961fc739582ffb49956735fdb3
2018-01-03 09:56:09 +10:00
James Teh 38bc58c8ee Bug 1424156 part 1: Don't treat Web Console input from the user as live content for accessibility. r=nchevobbe
Commands entered by the user now get the aria-live="off" attribute.
This stops screen readers from echoing commands the user typed, which is redundant and inefficient.
MozReview-Commit-ID: GJXiBPMe0W5

--HG--
extra : rebase_source : 9fac3b14115a9f2f54bc8180bed6c0442e0da3f0
2018-01-03 09:52:17 +10:00
pd4d10 bfb81cea7b Bug 1427077 - Make devtools/client/netmonitor work correctly at browser r=rickychien
Replace `loader.lazyGetter` pattern with normal variable assignment

MozReview-Commit-ID: JJTXKgXRgBZ

--HG--
extra : rebase_source : 91e63d7515573a3c55756fd04811fe61515b3cf8
2018-01-03 21:33:57 +08:00
Leo Huang 5213ac90af Bug 1426634 - Rename devtools/client/shared/components/Tree.js to VirtualizedTree.js; r=nchevobbe
MozReview-Commit-ID: 80ebj9CJODR

--HG--
rename : devtools/client/shared/components/Tree.js => devtools/client/shared/components/VirtualizedTree.js
extra : rebase_source : 78d24d5411b2d1dadae6778ba7f05c58641b6a00
2017-12-22 12:10:00 +08:00
Nicolas Chevobbe ffa098ba78 Bug 1428014 - Fix intermittent on browser_webconsole_close_sidebar.js; r=bgrins.
The test was failing because it still had pending request to the server while shutting
down the toolbox. This request was probably the one to retrieve the properties of the
object we put in the sidebar.
By waiting the object properties to be fully loaded when opening the sidebar, we should
make the intermittent go away.

MozReview-Commit-ID: 7tY8hvbDVRp

--HG--
extra : rebase_source : cc5479f21c91df1fc0967900fb1022e3ec6dff3d
2018-01-08 09:47:50 +01:00
Brian Birtles 38a1e34561 Bug 1425548 - Update references to Web Animations spec in devtools; r=hiro
MozReview-Commit-ID: DHFgDwh00eO

--HG--
extra : rebase_source : 4dfc7b7ab4f415b6af4ea2a9b79a4d6178e3a430
2017-12-15 14:55:32 -06:00
Ricky Chien cf0c6d5220 Bug 1418927 - requestHeaders and responseHeaders should be loaded lazily r=Honza,ochameau
MozReview-Commit-ID: 5ADM5AYdJNI

--HG--
extra : rebase_source : 05c1506489ef5af67cd9fd3911e2b3c3e4659e05
2017-12-01 18:40:36 +08:00
Ricky Chien 36f8852817 Bug 1418927 - Introduce fetchNetworkUpdatePacket helper in request-utils r=ochameau
MozReview-Commit-ID: VRu3k3dxtV

--HG--
extra : rebase_source : 74f7038a3e74505c242484e3ce189df1e0f50c2b
2017-12-12 10:30:04 -06:00
Julian Descottes 5993dad148 Bug 1425251 - update comment for aboutdebugging legacy extension warning;r=flod
MozReview-Commit-ID: GwHtS5OONAQ

--HG--
extra : rebase_source : 17d2e4be1891d4c20b81495a371da6a1546f3564
2017-12-14 10:17:07 -06:00
Mike Park 35bbe45a57 Bug 1419083 - Add an "Open in sidebar" context menu entry on ObjectInspector. r=nchevobbe
MozReview-Commit-ID: 9a2fBjpZ6zE

--HG--
extra : rebase_source : f533989d8f01a4f96133efbc98ef57e31806da46
2017-12-05 16:05:13 -05:00
yulia 5cb4b0c571 Bug 1423158 - Update Debugger Frontend (12-5) r=jdescottes
MozReview-Commit-ID: FVjPco3A29I

--HG--
extra : rebase_source : 7ad0910d7a33ec45ef46577659ed8874b5891c3d
2017-12-13 18:18:50 -06:00
Dorel Luca 110706c3c0 Merge mozilla-inbound to mozilla-central r=merge a=merge 2017-12-14 11:54:15 +02:00
Nicolas Chevobbe 7d4e7cb531 Bug 1419479 - devtools-reps v0.16.0: update reps bundle from GitHub;r=miker
MozReview-Commit-ID: FHfU7l6oSXa

--HG--
extra : rebase_source : 228e9bc99bf709b3e1e6155106a697bf42d333d5
2017-12-01 17:18:11 +01:00
Masatoshi Kimura 295faed3f9 Bug 1418914 - Move E10SUtils.jsm into toolkit/. r=mossop
MozReview-Commit-ID: EgDzEEKAeh1

--HG--
rename : browser/modules/E10SUtils.jsm => toolkit/modules/E10SUtils.jsm
extra : rebase_source : 0920ce818773af797a0daf3cf4ae90af41d71d2a
2017-12-12 21:35:16 +09:00
Csoregi Natalia 1134c27c23 Merge mozilla-central to autoland. r=merge a=merge CLOSED TREE 2017-12-14 00:15:40 +02:00
Csoregi Natalia be90f4e875 Merge inbound to mozilla-central r=merge a=merge 2017-12-14 00:01:37 +02:00
Gabriel Luong 9da6ed3ccf Bug 1424669 - Enable negative line numbers in the grid inspector. r=pbro 2017-12-13 09:54:34 -05:00
Cosmin Sabou b0098afaea Merge mozilla-inbound to mozilla-central. r=merge a=merge 2017-12-13 12:14:29 +02:00
Margareta Eliza Balazs 8f80d8a5ba Backed out changeset f37177d85efe (bug 1424669) for ES failure in /builds/worker/checkouts/gecko/devtools/server/actors/highlighters/css-grid.js:7:7 r=backout on a CLOSED TREE 2017-12-13 07:05:44 +02:00
Gabriel Luong 7e5a64dac7 Bug 1424669 - Enable negative line numbers in the grid inspector. r=pbro 2017-12-12 23:37:41 -05:00
Ricky Chien 19a93b1174 Bug 1424916 - Remove widgets.css from netmonitor r=Honza
MozReview-Commit-ID: 80Lsj4zN1at

--HG--
extra : rebase_source : 2e1a7ec7bcd6562b13992d398effea6598579c66
2017-12-12 14:45:09 -06:00
Narcis Beleuzu 0fff6b87cf Merge mozilla-central to autoland. r=merge a=merge on a CLOSED TREE 2017-12-13 12:22:54 +02:00
Ben Kelly 9039b0d214 Bug 1293277 P9 Disable browser_service_workers_push_service.js on non-e10s due to races. r=jryans 2017-12-12 15:44:48 -05:00
Gabriel Luong 6175e428c6 Bug 1424658 - Fix network details panel splitter from not rendering. r=me 2017-12-11 15:06:02 -05:00
Patrick Brosset f0ba907ac9 Bug 1411622 - Check for null nodes when searching for image preview targets in the markupview r=miker
MozReview-Commit-ID: 8dHAEJ7CIoV

--HG--
extra : rebase_source : 75d09a89121dde64643f398ff4a0e8480c763d7e
2017-12-04 11:09:45 +01:00
Steve Melia a72a31a227 Bug 1272969: Delete item is enabled on context menu for text nodes in inspector. r=pbro
MozReview-Commit-ID: 1fx5zRPorBs

--HG--
extra : rebase_source : 8b2fc68bc7cce5c9943050caa587f2b7a81bf54f
2017-12-01 08:08:54 +00:00
Julian Descottes 38f14b6373 Bug 1423687 - show warning in about:debugging when loading a temporary legacy extension;r=aswan,pbro
MozReview-Commit-ID: I9U5zzwZCSj

--HG--
extra : rebase_source : 72a8141a50d4420910a6e1051a56b38579ec14e8
2017-12-08 14:44:46 +01:00
Mike Park a49932348c Bug 1419078 - Add a close button to the console sidebar. r=nchevobbe
MozReview-Commit-ID: EAEr3uuhgkd

--HG--
extra : rebase_source : 8d8561b8d05147e995fcdf17073704f7f2188810
2017-11-29 13:17:47 -05:00
Fred Lin c100228fea Bug 1419401 - show HTTP/2.0 200 OK in raw header;r=Honza
MozReview-Commit-ID: 7ApdEDofYwJ

--HG--
extra : rebase_source : c9960ed8128793cc615f6ed62bb7ec5fca5bd15d
2017-12-07 16:22:55 +08:00
Gurzau Raul 15f8898e50 Merge mozilla-central to autoland. r=merge a=merge CLOSED TREE 2017-12-09 00:56:50 +02:00
Gurzau Raul 91d3bc0100 Merge inbound to mozilla-central r=merge a=merge 2017-12-09 00:36:15 +02:00
Gabriel Luong 1902178c75 Bug 1424025 - Replace widgets.css link with only breadcrumbs.css. r=jdescottes 2017-12-08 13:19:54 -05:00
abhinav 24a666806b Bug 1421663 - Allow changing of custom viewport size in RDM with arrow keys. r=jryans
MozReview-Commit-ID: AQwqkt9EPn3

--HG--
extra : rebase_source : 4447d5d9d06a16390ed4f61398f1012a031301b3
2017-12-06 00:31:57 +05:30
Cosmin Sabou c191e25cf5 Merge mozilla-inbound to mozilla-central r=merge a=merge 2017-12-08 11:56:44 +02:00
Gabriel Luong 9fcaf906f7 Bug 1420499 - Update Codemirror to 5.32.0. r=bgrins 2017-12-08 01:30:05 -05:00
Ricky Chien e345a4990a Bug 1423502 - Clean up leftover files under netmonitor/src/* r=Honza
MozReview-Commit-ID: Kvm788NVFz

--HG--
rename : devtools/client/netmonitor/src/request-list-context-menu.js => devtools/client/netmonitor/src/widgets/RequestListContextMenu.js
rename : devtools/client/netmonitor/src/request-list-header-context-menu.js => devtools/client/netmonitor/src/widgets/RequestListHeaderContextMenu.js
rename : devtools/client/netmonitor/src/waterfall-background.js => devtools/client/netmonitor/src/widgets/WaterfallBackground.js
extra : rebase_source : e5ce43f27b461f707d59812b266d33ba5941cc68
2017-12-06 16:36:53 +08:00
Gabriel Luong f353991f53 Bug 1369945 - Display a split rule view panel in the inspector. r=bgrins
MozReview-Commit-ID: If55vBPfU3W
2017-11-27 15:54:18 -05:00
Bill McCloskey 9f4d083047 Bug 1412456 - Test changes to no longer use interposition (r=felipe,bgrins,mrbkap)
MozReview-Commit-ID: 2nQPOSGTr1s
2017-12-07 12:55:24 -08:00
Julian Descottes 7db9741320 Bug 1386613 - stop using waitForMutations in aboutdebugging tests (remaining tests);r=ochameau
MozReview-Commit-ID: HDNzIFwp4Ur

--HG--
extra : rebase_source : 4a96751f57fda48ce88984131315ba5ddc072147
extra : intermediate-source : 7dbe7af3c33cd7b8ca4f7a57f22b8a4076a191a7
extra : source : 3c1c47ce69787f35cd5e494f332c70daa89cc5f2
2017-12-05 22:44:18 +01:00
Julian Descottes 36bc767e77 Bug 1386613 - stop using waitForMutations in aboutdebugging tests (addons);r=ochameau
MozReview-Commit-ID: Ii32r9Dhjje

--HG--
extra : rebase_source : 5c22faafe77f63d078b53a6d0c6f2fe357fd9690
extra : intermediate-source : 6ffaf00f1b21eb7e91c5a3267146be1f171857bc
extra : source : f10841947763b110ed469eada747d32282fd3651
2017-12-05 22:17:15 +01:00
Julian Descottes fba72c6c62 Bug 1386613 - stop using waitForMutations in aboutdebugging tests (serviceworkers);r=ochameau
MozReview-Commit-ID: 3JMEZUx8rTt

--HG--
extra : rebase_source : ec0af7df8a211955261ae017b19e6098556d3bfb
extra : intermediate-source : 2c407e9501b3d1b444a1801ed813b3019fead47b
extra : source : c4e7a7354d23253c21a87578b206e45379e18334
2017-12-05 17:40:34 +01:00
Csoregi Natalia cc9c96cfe3 Merge mozilla-central to autoland. r=merge a=merge CLOSED TREE
MozReview-Commit-ID: 3aJiWXQpsFU

--HG--
extra : rebase_source : 2d07da0b40980836e6946a53c45739cc02cb60c3
2017-12-14 00:15:40 +02:00
Csoregi Natalia ca490ae168 Merge mozilla-central to inbound. r=merge a=merge CLOSED TREE 2017-12-14 00:20:59 +02:00
Mike Park 288d6e290a Bug 1424275 - Show element quad outline for shape-outside in CSS shapes highlighter. r=gl
MozReview-Commit-ID: x1R9V0ZA3l
2017-12-08 14:38:40 -05:00
Julian Descottes 2693499ab6 Bug 1408933 - enable and rename browser_webconsole_ctrl_key_nav.js;r=bgrins
Initially tried to port the test to work on all OSes, relying on
HOME/END/PAGEUP/PAGEDOWN, but the behavior is not really consistent
(at least not on Linux). The shortcuts listed on MDN at
https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Keyboard_shortcuts
seem a bit out of sync.

Not sure why we cannot use home/end/pageup/pagedown on all platforms here
but as it is not the purpose of this migration, I will leave that up for a
follow up.

MozReview-Commit-ID: DJbmYzYZUok

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_ctrl_key_nav.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_ctrl_key_nav.js
extra : rebase_source : fff90157354b435b541705a923f7d53c7a64c479
2017-12-04 18:55:55 +01:00
Narcis Beleuzu 446b415582 Backed out changeset 232f3a99301c (bug 1408933) for build bustage due to not removing reference to renamed test. r=backout on a CLOSED TREE
--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_ctrl_key_nav.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_ctrl_key_nav.js
2017-12-08 17:02:37 +02:00
Julian Descottes cd1dfe6c68 Bug 1408933 - enable and rename browser_webconsole_ctrl_key_nav.js;r=bgrins
Initially tried to port the test to work on all OSes, relying on
HOME/END/PAGEUP/PAGEDOWN, but the behavior is not really consistent
(at least not on Linux). The shortcuts listed on MDN at
https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Keyboard_shortcuts
seem a bit out of sync.

Not sure why we cannot use home/end/pageup/pagedown on all platforms here
but as it is not the purpose of this migration, I will leave that up for a
follow up.

MozReview-Commit-ID: DJbmYzYZUok

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_ctrl_key_nav.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_ctrl_key_nav.js
extra : rebase_source : 3d91fef9f40e43a40b8f24f0f261726e09a77f2a
2017-12-04 18:55:55 +01:00
Julian Descottes 9a6ee6fff9 Bug 1241131 - Remove DevTools reload addon;r=ochameau
MozReview-Commit-ID: GCS4ZRvwUcs

--HG--
extra : rebase_source : 6669e4ca9fcf0dc89402820fb20b8b152440c011
2017-11-30 19:08:44 +01:00
Jan Odvarko e273e056c7 Bug 1419336 - Update tests; r=nchevobbe
MozReview-Commit-ID: 4EEUWLufth8

--HG--
extra : rebase_source : 9d091b9efebdaebe7126da6a82abb1ee3ced31be
2017-12-07 12:09:27 +01:00
Jan Odvarko c4b6aa580d Bug 1419336 - Properly update HTTPi UI if a request is opened before finish; r=nchevobbe
MozReview-Commit-ID: GwkGlD1UB9G

--HG--
extra : rebase_source : 2fcbbb6848c9fdbff06ffdf1f87d7ada2dcb0e00
2017-12-07 12:08:48 +01:00
Sylvestre Ledru 4591d82b23 Bug 1394734 - Replace CONFIG['CLANG*'] by CONFIG['CC_TYPE'] r=glandium
MozReview-Commit-ID: HbF5oT5HW6f

--HG--
extra : rebase_source : eca479b6ae4bff7f600d1cdb39e11ac2057e4e79
2017-12-07 22:09:38 +01:00
Sylvestre Ledru 9bfe27d903 Bug 1394734 - Replace CONFIG['GNU_C*'] by CONFIG['CC_TYPE'] r=glandium
MozReview-Commit-ID: 7duJk2gSd4m

--HG--
extra : rebase_source : 7312fe276e561e8c034a5f6749774ae812727f9c
2017-12-07 22:09:15 +01:00
Cosmin Sabou 75435dc3b2 Merge mozilla-central to autoland a=merge on a CLOSED TREE 2018-01-17 11:49:21 +02:00
Jan Odvarko b8ea144988 Bug 1427718 - Display multiple headers with the same name; r=rickychien
MozReview-Commit-ID: 2nV51xLyCni

--HG--
extra : rebase_source : c5d368d84ce4766fe40e4b750441e1d4474db504
2018-01-17 09:56:09 +01:00
Narcis Beleuzu ba2bcb9d99 Backed out changeset 9029eac178ab (bug 1421213) for devtools failures on /browser_webconsole_hpkp_invalid-headers.js. on a CLOSED TREE 2018-01-17 11:16:50 +02:00
abhinav 3b4ce6bd81 Bug 1421213 - Clicking on the request status code should open the corresponding MDN page. r=nchevobbe
MozReview-Commit-ID: JlU7pJiZ689

--HG--
extra : rebase_source : b5ecdb6868e33759e75efa75511df39951cc9940
2018-01-16 07:14:43 +05:30
Jason Laster ff8d96bdb2 Bug 1429599 - Update Debugger Frontend v8.0. r=jdescottes
MozReview-Commit-ID: 2a6Mt7thaN3

--HG--
extra : rebase_source : 91aa1bf89c504dd87ddeb4f899586f6c9936014e
2018-01-11 10:55:41 +01:00
Julian Descottes 13bbe706dc Backed out changeset 00b1cae7d55f (bug 1425393) for failing devtools/client/aboutdebugging/test/browser_service_workers.js r=backout
MozReview-Commit-ID: ELnV9jwTwtV
2018-01-11 10:43:40 +01:00
Cameron McCormack 8731df3c34 Bug 1427512 - Part 29: Remove nsIDOMCSSDeclaration. r=xidorn,jryans,bz
This removes the .style attribute from nsIDOMSVGElement, but there
shouldn't be any users of that.

MozReview-Commit-ID: LOBSFo85Utn
2018-01-11 16:17:57 +08:00
Cameron McCormack 7380ffab13 Bug 1427512 - Part 26: Remove nsIDOMCSSValueList. r=xidorn,bz
MozReview-Commit-ID: Fsclh2aHLy8
2018-01-11 16:17:57 +08:00
Cameron McCormack 0ae07fab78 Bug 1427512 - Part 21: Remove nsIDOMStyleSheetList. r=xidorn,jryans,bz
MozReview-Commit-ID: 8ZSTMoWkeRw
2018-01-11 16:17:56 +08:00
Cameron McCormack 09a1815a08 Bug 1427512 - Part 20: Remove nsIDOMMediaList. r=xidorn,jryans,bz
MozReview-Commit-ID: KKnTf7aFfjA
2018-01-11 16:17:56 +08:00
Cameron McCormack 56e5cb8558 Bug 1427512 - Part 19: Remove nsIDOMCSSRuleList. r=xidorn,jryans
Also remove the QI to CSSRuleList, since it seems to be unused.

MozReview-Commit-ID: 3mp7qu6hbeU
2018-01-11 16:17:56 +08:00
Cameron McCormack a4541d9b18 Bug 1427512 - Part 18: Remove nsIDOMCSSStyleSheet. r=xidorn,jryans,bz
MozReview-Commit-ID: CN3VZvQceZB
2018-01-11 16:17:56 +08:00
Cameron McCormack 55dcbea002 Bug 1427512 - Part 16: Remove nsIDOMCSSRule. r=xidorn,jryans,bz
MozReview-Commit-ID: GvVdW9w5Cc4
2018-01-11 16:17:56 +08:00
Cameron McCormack 242feb15c7 Bug 1427512 - Part 15: Remove nsIDOMCSSStyleRule. r=xidorn,jryans
MozReview-Commit-ID: 7riPO9da5KL
2018-01-11 16:17:56 +08:00
Cameron McCormack 457039956c Bug 1427512 - Part 9: Remove nsIDOMCSSImportRule. r=xidorn,jryans
MozReview-Commit-ID: 9XG6412Z5iY
2018-01-11 16:17:55 +08:00
Cameron McCormack 5190a83f78 Bug 1427512 - Part 3: Remove nsIDOMCSSMediaRule. r=xidorn,jryans
MozReview-Commit-ID: L62wFJqJcm6
2018-01-11 16:17:54 +08:00
shindli 76ee711dab Merge mozilla-central to autoland. r=merge a=merge CLOSED TREE 2017-12-08 00:24:48 +02:00
Neil Deakin 60e7f4183f Bug 1419925, implement a promise-oriented version of waitForClipboard, promiseClipboardChange, change a selection of tests to use this instead. Simplify some other clipboard tests that were unreliable before the fix for 1394757. r=jmaher 2017-12-07 08:39:50 -05:00
Alexandre Poirot 02e1065367 Bug 1408708 - Fetch stylesheet content via stylesheet window instead of top level content window. r=pbro
MozReview-Commit-ID: AKXQLNAwy8t
2017-12-07 08:22:43 -05:00
Bogdan Tara 8e9610529d Merge mozilla-central to inbound. r=merge a=merge on a CLOSED TREE 2017-12-07 13:02:03 +02:00
Andreea Pavel 89531e8dc3 Backed out 9 changesets (bug 1412456) for crashing talos g2 and unexpected network connections in browser-chrome's browser_searchEngine_behaviors.js r=backout a=backout on a CLOSED TREE
Backed out changeset 0c01a98f4fd5 (bug 1412456)
Backed out changeset 27077db47231 (bug 1412456)
Backed out changeset f35ec2a884f8 (bug 1412456)
Backed out changeset 602b30ac3c69 (bug 1412456)
Backed out changeset b1ff1050c589 (bug 1412456)
Backed out changeset f100d953f9eb (bug 1412456)
Backed out changeset d85af60fe259 (bug 1412456)
Backed out changeset 736f38486832 (bug 1412456)
Backed out changeset 13a637602dc2 (bug 1412456)
2017-12-07 12:20:21 +02:00
Andreea Pavel 33f8c94f52 Backed out 1 changesets (bug 1422470) for ESlint failure /builds/worker/checkouts/gecko/devtools/server/actors/highlighters/flexbox.js:14:3 r=backout a=backout on a CLOSED TREE
Backed out changeset affa7f97ff91 (bug 1422470)

--HG--
extra : amend_source : 2708f4059cac59d33e70e4ad7591632885ab445e
2017-12-07 11:32:33 +02:00
Liam 6d7da06d47 Bug 1422470 - Display flex container differently from flex items r=gl
MozReview-Commit-ID: BVggmBwC2lX
2017-12-01 23:53:29 -07:00
Bill McCloskey df63ff970b Bug 1102464 - Fix ESLint failure
MozReview-Commit-ID: JMRxUcSU98m
2017-12-06 21:21:24 -08:00
Bill McCloskey bef7c122df Bug 1412456 - Test changes to no longer use interposition (r=felipe,bgrins,mrbkap)
MozReview-Commit-ID: 2nQPOSGTr1s
2017-12-06 21:17:05 -08:00
Dorel Luca eb65c24c7b Backed out 8 changesets (bug 1412456) for ESlint failure on browser_urlbarKeepStateAcrossTabSwitches.js:13:49 r=backout on a CLOSED TREE
Backed out changeset 0e88de036c55 (bug 1412456)
Backed out changeset 49b93f807db0 (bug 1412456)
Backed out changeset 039e980b7dc6 (bug 1412456)
Backed out changeset c7698410ddbd (bug 1412456)
Backed out changeset e56a1ba26b7c (bug 1412456)
Backed out changeset 0c4506e124ac (bug 1412456)
Backed out changeset a7aec2ce903b (bug 1412456)
Backed out changeset 3e9fb71f1e8e (bug 1412456)
2017-12-07 07:09:33 +02:00
Daisuke Akatsuka 416b163f1d Bug 1422218 - Part 4: Add test. r=pbro
MozReview-Commit-ID: IqFXntwxGK5

--HG--
extra : rebase_source : ce9036ea8b4fc2ce7bdc9101509791a57f0bb59b
2017-12-07 09:36:44 +09:00
Daisuke Akatsuka f9e31963e7 Bug 1422218 - Part 3: Correspond to round-off error since we should use use more accurate values. r=pbro
MozReview-Commit-ID: LSEAI3vMXNX

--HG--
extra : rebase_source : ff0e31b4c04c5f84abcc00c07c41f1c4a1093e9e
2017-12-07 09:36:28 +09:00
Daisuke Akatsuka 535c533caf Bug 1422218 - Part 2: Make drawing resolution to increase for reflecting to summary graph. r=pbro
MozReview-Commit-ID: 30hr3wHqxyy

--HG--
extra : rebase_source : 4837c145834cf5d5b6abbc1b995207e2f3382a33
2017-12-06 13:11:38 +09:00
Daisuke Akatsuka 589c8a3402 Bug 1422218 - Part 1: Get segments of property graph at keyframe offset explicit. r=pbro
MozReview-Commit-ID: 9PIngKGGRhX

--HG--
extra : rebase_source : 5e5b3f29d63a0e2c92764584fe77f4b297769474
2017-12-06 10:41:36 +09:00
Bogdan Tara 8f1f9f83ef Backed out 2 changesets (bug 1419336) for failing devtools tests devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_network_messages_expand.js r=backout on a CLOSED TREE
Backed out changeset 18135f76a2bc (bug 1419336)
Backed out changeset c7ecad9b8aad (bug 1419336)
2017-12-07 19:48:42 +02:00
Rajdeep Nanua 0b2ed65576 Bug 1102464 - Implement CSS variable tooltip. r=pbro
Initial support for CSS variable tooltip. Removed title attribute from
variables and added a new tooltip displaying the same content.

MozReview-Commit-ID: FeHmgiS7KQj
2017-11-08 00:22:24 -05:00
Bill McCloskey be77cf4a01 Bug 1412456 - Test changes to no longer use interposition (r=felipe,bgrins,mrbkap)
MozReview-Commit-ID: 2nQPOSGTr1s
2017-12-06 20:46:58 -08:00
Coroiu Cristina 8209092aea Backed out changeset b5950ede2b76 (bug 1102464) for failing devtools on Windows 7 debug at devtools/client/shared/test/browser_outputparser.js r=backout on a CLOSED TREE 2017-12-07 01:36:22 +02:00
Dorel Luca 44492bedb8 Merge mozilla-central to inbound r=merge 2017-12-07 00:29:57 +02:00
Dorel Luca ed8dc2034d Merge inbound to mozilla-central r=merge a=merge 2017-12-07 00:01:19 +02:00
Nicolas Chevobbe 14478454d5 Bug 1401944 - Delete browser_webconsole_copy_link_location in new console frontend; r=jdescottes.
The test was already migrated. Took this as an opportunity to refactor the
migrated test a bit.

MozReview-Commit-ID: CjbBelrWjS8

--HG--
extra : rebase_source : 76d93bd71d9b48a46a40b6539bafd590a253db74
2017-12-05 09:49:22 +01:00
Anshul 970a5bb03f Bug 1422244 - Change codemirror text selection background color in dark theme. r=gl DONTBUILD
Original issue: https://github.com/devtools-html/debugger.html/issues/4765
2017-12-01 12:53:04 +05:30
Michael Ratcliffe 7523cf460a Bug 1422341 - Prepare VisibilityHandler.js for React 16 r=Honza
MozReview-Commit-ID: 9apN31q36qo

--HG--
extra : rebase_source : 133b09ba8c995368d2e0dae91dab0504e96c0651
2017-12-01 16:30:30 +00:00
Tooru Fujisawa 319d250ae3 Bug 1228841 - Part 3: Remove conditional catch handling in devtools. r=jdescottes 2017-12-06 23:44:17 +09:00
Rajdeep Nanua 48234431f4 Bug 1102464 - Implement CSS variable tooltip. r=pbro
Initial support for CSS variable tooltip. Removed title attribute from
variables and added a new tooltip displaying the same content.

MozReview-Commit-ID: FeHmgiS7KQj
2017-11-08 00:22:24 -05:00
Dorel Luca 2e81d28b54 Backed out changeset 1a9cbc25dd9d (bug 1102464) for failing ESlint devtools/client/shared/widgets/tooltip/VariableTooltipHelper.js r=backout on a CLOSED TREE
--HG--
extra : amend_source : 201818f92f479bcb2ae83bde1d2fe2d8827efe9f
2017-12-06 22:40:33 +02:00
Rajdeep Nanua 3fc4d89056 Bug 1102464 - Implement CSS variable tooltip. r=pbro
Initial support for CSS variable tooltip. Removed title attribute from
variables and added a new tooltip displaying the same content.

MozReview-Commit-ID: FeHmgiS7KQj
2017-11-08 00:22:24 -05:00
Mats Palmgren cbadd9f2b4 Bug 1422839 part 3 - Add internal overflow-clip-box-block/-inline properties and make overflow-clip-box a shorthand (automated devtools update). r=dholbert
MozReview-Commit-ID: 14IsjC7MdcA
2017-12-05 21:08:50 +01:00
Russell e59d146f53 Bug 1419369 - NetMonitor: Stop using ImmutableJS in ui reducer; r=Honza
MozReview-Commit-ID: IxxOmakX4Fr

--HG--
extra : rebase_source : c39fa317d25d137ad756216d5015e9739b568f01
2017-11-24 15:28:26 -08:00
Bogdan Tara 71dd57ba46 Merge mozilla central to autoland. r=merge a=merge on a CLOSED TREE 2017-12-07 15:54:19 +02:00
Jan Odvarko bf59da05d8 Bug 1419336 - Update tests; r=nchevobbe
MozReview-Commit-ID: 4EEUWLufth8

--HG--
extra : rebase_source : bec258d9fcd94187d064d31dbb04ac7f0194b87f
2017-12-07 12:09:27 +01:00
Jan Odvarko 2f826319c3 Bug 1419336 - Properly update HTTPi UI if a request is opened before finish; r=nchevobbe
MozReview-Commit-ID: GwkGlD1UB9G

--HG--
extra : rebase_source : 93e5b6f272be84e2e60379a6565280dc2054dc06
2017-12-07 12:08:48 +01:00
Nicolas Chevobbe 615c94b427 Bug 1422841 - Adapt tests to the new state; r=bgrins.
This introduces a few helpers to work with the state now
that we don't use immutable anymore.


MozReview-Commit-ID: D9aR7kbapZg

--HG--
extra : rebase_source : 0ecf7240b0f8a6297e8f442cf65753dc506fd021
extra : source : 6872e6e6c1ff5b526c11b9a87c72cd3a0dc56aab
2017-11-15 10:58:10 +01:00
Nicolas Chevobbe 63f938e632 Bug 1422841 - Remove Immutable usage from the messages reducer; r=bgrins
MozReview-Commit-ID: USRA3njYE9

--HG--
extra : rebase_source : d5a6a764e274850448f71efc91e7122fc99779fd
2017-12-04 12:24:44 +01:00
Guohao a11d1e703d Bug 1220758 - Properly pass postData into new tab; r=rickychien
MozReview-Commit-ID: HB5Sl8gvPGp

--HG--
extra : rebase_source : 7a3f63af12f9da54acf15325f53de97e5b45ebd1
2017-04-08 16:07:01 -04:00
Fred Lin da11d7c586 Bug 1423102 - cache l10n values in RequestListColumnTransferredSize;r=Honza
MozReview-Commit-ID: 6wqz7x7Xos7

--HG--
extra : rebase_source : 80eadb5771147df71fc878f40c0448f4c5f997b8
2017-12-01 10:08:43 +08:00
Brian Grinstead 1fff6ac2b7 Bug 1408949 - Always clear splitconsole height pref after each test;r=Honza
MozReview-Commit-ID: 8BxwRp19U9l

--HG--
extra : rebase_source : 8feee641b738331f0f58694fb809a25949dd1802
2017-12-01 10:36:25 -08:00
Brian Grinstead 72aa3b30aa Bug 1408949 - Remove unnecessary clearing of devtools.toolbox.splitconsoleEnabled;r=Honza
This is already cleared in shared-head.js

MozReview-Commit-ID: 7svp6ZiUqnE

--HG--
extra : rebase_source : 70788abbfc86a5838626fb5f1f17d03537c2830c
2017-12-01 10:36:22 -08:00
Brian Grinstead 8562a06ebc Bug 1408949 - Convert browser_webconsole_split.js for the new console frontend;r=Honza
MozReview-Commit-ID: C5A44X3FO45

--HG--
extra : rebase_source : 9bdd6d2470aa72924d43c2106da5e0947caf8150
2017-12-01 10:33:27 -08:00
J. Ryan Stinnett 8d399e5975 Bug 1419592 - Use most recent panel in Browser Content Toolbox. r=ochameau
MozReview-Commit-ID: sNEVauLh0A

--HG--
extra : rebase_source : fc3976fca972bc224aee32830ec6cd0345ef0b7d
2017-11-21 17:10:05 -06:00
Michael Ratcliffe f96f69cd64 Bug 1422282 - Upgrade react-redux to v5.0.6 r=nchevobbe
MozReview-Commit-ID: CB6z40VY4Ho

--HG--
rename : devtools/client/shared/vendor/REACT_REDUX_UPGRADING => devtools/client/shared/vendor/REACT_REDUX_UPGRADING.md
extra : rebase_source : 97a80962f36a94464a20a11824faf436ecdd8102
2017-12-01 12:49:12 +00:00
Michael Ratcliffe bd575904fe Bug 1422265 - Remove react-addons-shallow-compare r=Honza
MozReview-Commit-ID: 8avniQlO6NV

--HG--
extra : rebase_source : e9727d59d0f54bfc9a23f4ea46de71deadae924c
2017-12-01 10:23:27 +00:00
Oriol Brufau 04c1b90604 Bug 1417039 - Do not defer loading JSON Viewer. r=Honza
MozReview-Commit-ID: BtnH41N1w8P

--HG--
extra : rebase_source : 7c6e416f9130fbd9bb6deff2bee9a24fc1a937c0
2017-11-28 16:28:21 +01:00
Oriol Brufau 4c73da7933 Bug 1403536 - Protect all protocol request methods against unsafe objects r=ochameau
MozReview-Commit-ID: 4fDaap9QCdF

--HG--
extra : rebase_source : bec3bcbf422b51cef12005b035eec94203d5027d
2017-10-18 04:38:13 +02:00
Julian Descottes e85215e774 Bug 1408934 - enable browser_webconsole_deactivateHUDForContext_unfocused_window.js;r=Honza
MozReview-Commit-ID: 8k5ISUxEPP7

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_deactivateHUDForContext_unfocused_window.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_close_unfocused_window.js
extra : rebase_source : f33fea6e792868bf9c5dcd18f8709953d69a3ce3
2017-12-01 18:29:30 +01:00
Julian Descottes 78a38b2e85 Bug 1408939 - enable browser_webconsole_history_arrow_keys.js;r=Honza
MozReview-Commit-ID: KvBrFRMW0W1

--HG--
extra : rebase_source : c8e3541dcf68da377c472d817f710e2c84823789
2017-12-01 17:42:42 +01:00
Julian Descottes 322d9410d2 Bug 1413051 - fix aboutdebugging addon tip icon in RTL;r=ochameau
MozReview-Commit-ID: 3aMuHiBHhVG

--HG--
extra : rebase_source : 7a59d3f888f888d220a7f0c469875bd61ae64e62
2017-12-04 14:07:50 +01:00
abhinav d0874f7146 Bug 1419368 - NetMonitor: Stop using ImmutableJS in timing-markers reducer. r=Honza
MozReview-Commit-ID: 5PQsSWT5m1P

--HG--
extra : rebase_source : 1f1a21c174bbf69a29c781d95ff179e60189ad59
2017-11-29 22:02:12 +05:30
Julian Descottes 146148c4c0 Bug 1408940 - enable browser_webconsole_history_nav.js;r=nchevobbe
MozReview-Commit-ID: LCLeM9cj7TX

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_history_nav.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_history_nav.js
extra : rebase_source : fc669c69d30819d5a4950c5106efdd9e74112f23
2017-12-01 17:19:41 +01:00
Julian Descottes 6a9b7d564e Bug 1408935 - enable browser_webconsole_errors_after_page_reload.js;r=nchevobbe
MozReview-Commit-ID: LMfIeeIy61Y

--HG--
extra : rebase_source : 3bdd3d801641d3a1024434f72ef2f926277d19b4
2017-12-01 18:15:37 +01:00
Russell 8f329d4896 Bug 1419405 - remove Immutable usage in filters reducer; r=nchevobbe
MozReview-Commit-ID: GfxqmE3nGjs

--HG--
extra : rebase_source : e6a2dc059d6f5cd487b619c66a86db3ed34c633d
2017-11-23 09:44:04 -08:00
Ting-Yu Lin b1efbfb25a Bug 1265343 Part 1 - Add shape-image-threshold to style system. r=heycam
devtools/shared/css/generated/properties-db.js is generated by running
"./mach devtools-css-db"

MozReview-Commit-ID: 1U4yoQTDwxi

--HG--
extra : rebase_source : 16049b4253ae9a3f6e24cc30896ed53f65ebaf7a
2017-11-27 15:01:25 +08:00
abhinav 01f6a3eed2 Bug 1419367 - NetMonitor: Stop using ImmutableJS in sort reducer. r=Honza
MozReview-Commit-ID: BXc9Y350MC

--HG--
extra : rebase_source : aeb89e8f42661bc376b7c6e26a510a1e799c7201
2017-11-29 09:17:04 +05:30
Julian Descottes 44a0ff57f6 Bug 1408937 - enable browser_webconsole_external_script_errors.js;r=bgrins
MozReview-Commit-ID: 4GcSKa2ph4j

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-597136-external-script-errors.html => devtools/client/webconsole/new-console-output/test/mochitest/test-external-script-errors.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-597136-external-script-errors.js => devtools/client/webconsole/new-console-output/test/mochitest/test-external-script-errors.js
extra : rebase_source : 5b85c8d3991ef95e59b48352e6080adf9e169090
2017-12-01 17:59:05 +01:00
Emilio Cobos Álvarez 13a91fa9f6 Bug 1417200: Make -moz-border-colors chrome only. r=xidorn
On a CLOSED TREE, since the servo patch managed to get in.

This also makes the border longhand no longer reset them.

MozReview-Commit-ID: KNais1e5FnE
2017-12-01 23:25:01 +01:00
Patrick Brosset 2036033118 Bug 1419301 - Make HTML comments removal in prettifyCSS faster; r=tromey
MozReview-Commit-ID: LG8GKccRlXr

--HG--
extra : rebase_source : 86eb5612f8264bbe4f765ab5baaea4db8c7a84a3
2017-12-01 16:58:48 +01:00
Ricky Chien c57bd5cfc6 Bug 1418928 - requestCookies and responseCookies should be loaded lazily r=Honza
MozReview-Commit-ID: bywCQWGqWI

--HG--
extra : rebase_source : 41591be8f72e355ca370d4a53b6ffc0d7f966f9d
2017-11-24 14:57:10 +08:00
Michael Ratcliffe 38001b4ff6 Bug 1422258 - Remove React Virtualized r=Honza
MozReview-Commit-ID: GBsptIUroI

--HG--
extra : rebase_source : 6b9be4513fa5bc59e9f06f675a8a7a75a19575b3
2017-12-01 09:57:19 +00:00
yulia 211750c567 Bug 1419801 - Update Debugger Frontend (11-22). jdescottes, jlast r=jdescottes
MozReview-Commit-ID: Kihg60TpspW

--HG--
extra : rebase_source : 64ea5bdcdc353b228ea39486fbf645a40591f9a3
2017-11-30 11:21:00 +01:00
Nicolas Chevobbe cfd1a43f56 Bug 1408936 - Enable browser_webconsole_eval_in_debugger_stackframe.js in new console frontend; r=bgrins.
MozReview-Commit-ID: 6IiuekmfENG

--HG--
extra : rebase_source : c190b35c66dfb93db86aa38f6c23e48e2be15ab7
2017-11-29 16:55:00 +01:00
Thomas Nguyen d67c09f7dd Bug 1345433 - Ensure tests load pass valid triggeringPrincipal. r=ckerschb,JanH
MozReview-Commit-ID: LWcP7drDPwL

--HG--
extra : rebase_source : 3741530254b3cb2627f798cf22eacf64c29a8b9e
2017-10-23 18:15:40 +08:00
Narcis Beleuzu c400c4e179 Backed out changeset ee15ca302afd (bug 1418928) for devtools failures on browser_net_cause_redirect.js r=backout on a CLOSED TREE 2017-12-01 03:12:14 +02:00
Ricky Chien d572b0ccc3 Bug 1418928 - requestCookies and responseCookies should be loaded lazily r=Honza
MozReview-Commit-ID: bywCQWGqWI

--HG--
extra : rebase_source : edfec280965ff6e822b006adb1b49379e14751e8
2017-11-24 14:57:10 +08:00
Narcis Beleuzu c396d718bd Merge mozilla-central to autoland. r=merge a=merge on a CLOSED TREE 2017-12-01 00:46:03 +02:00
Narcis Beleuzu 5e274d0743 Backed out changeset 9fb71b0692a6 (bug 1403536) for devtools-chrome failures on browser_console_dead_objects.js r=backout on a CLOSED TREE 2017-12-01 00:41:09 +02:00
Brindusan Cristian 6a74eec204 Merge inbound to mozilla-central r=merge a=merge 2017-12-01 00:22:25 +02:00
Andrea Marchesini b4057b86a1 Bug 1421655 - Renaming imgITools::decodeImageBuffer to imgITools::decodeImageFromBuffer, r=aosmond 2017-11-30 14:48:47 +01:00
shindli 7f45cb7cc0 Backed out changeset 65334d5e3012 (bug 1417039) for frequently failing in devtools/client/jsonview/test/browser_jsonview_chunked_json.js (Bug 1421520) r=backout a=backout
--HG--
extra : amend_source : 4c4909694bc4f4428278a55bdd076e5135d2da89
2017-11-30 12:22:01 +02:00
shindli 4ea5b9a4ad Backed out changeset d0ed7858ae96 (bug 1421631) so that bug 1417039 can be backedout r=backout a=backout 2017-11-30 12:19:29 +02:00
Ricky Chien 12448796df Bug 1404928 - Request Post DATA should be loaded lazily r=Honza,ochameau
MozReview-Commit-ID: EQo2OUg9hMD

--HG--
extra : rebase_source : a5d8e79795ac4d919e9c646ab50b0a5eb6efeeab
2017-11-16 15:54:11 +08:00
Bogdan Tara a14227d83a Merge mozilla-central to autoland. r=merge a=merge on a CLOSED TREE 2017-11-30 01:08:24 +02:00
Bogdan Tara d8635b15e4 Merge inbound to mozilla-central r=merge a=merge on a CLOSED TREE 2017-11-30 00:41:09 +02:00
Bogdan Tara bf712dca70 Backed out 1 changesets (bug 1403536) for failing ES Linting tests on /builds/worker/checkouts/gecko/devtools/server/tests/unit/test_objectgrips-21.js r=backout on a CLOSED TREE
Backed out changeset 897f029f8ef6 (bug 1403536)
2017-11-29 23:37:15 +02:00
Dorel Luca f622b80073 Merge mozilla-central to mozilla-inbound r=merge 2017-11-29 12:34:02 +02:00
Dorel Luca be78e6ea9b Merge inbound to mozilla-central r=merge a=merge 2017-11-29 12:26:15 +02:00
Andrea Marchesini 9d60eea296 Bug 1418860 - Adding telemetry to see how often version param is used in ScriptLoader type, r=jonco, data-r=francois 2017-11-29 09:01:04 +01:00
Tiberius Oros 18ea9ecad9 Merge mozilla-central to mozilla-inbound. r=merge a=merge CLOSED TREE
--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-618078-network-exceptions.html => devtools/client/webconsole/new-console-output/test/mochitest/test-network-exceptions.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.html => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.js => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.js
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.js^headers^ => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.js^headers^
extra : rebase_source : e126b0ab427161de0acd67cdfb9a1434415412dc
2017-11-29 02:25:59 +02:00
Cosmin Sabou 09c96dbb89 Backed out changeset c3f707e1f455 (bug 1418066) for ESlint failure on devtools/client/inspector/test/browser_inspector_highlighter-cssshape_07.js:29:1 r=backout on a CLOSED TREE 2017-11-28 17:35:23 +02:00
Mike Park 6de17b66ff Bug 1418066 - Add rotation to CSS shapes editor transform mode. r=pbro
MozReview-Commit-ID: HJmdhTg5QjL

--HG--
extra : rebase_source : ee0c3e8f624d91cb4c9c71629599c201c89e7169
2017-11-16 15:58:23 -05:00
Julian Descottes 0436600a3f Bug 1408942 - Enable browser_webconsole_multiple_windows_and_tabs.js;r=Honza
MozReview-Commit-ID: 5AqqgKLvN7

--HG--
extra : rebase_source : 89ffdd3b48da2b5b7efb5e961ba5801e411cefab
2017-11-28 22:34:17 +01:00
Nicolas Chevobbe c28e75503b Bug 1404851 - Rename, adapt and enable browser_webconsole_document_body_autocomplete; r=jdescottes.
We drop the part of the test which tests the output of document.body
since it's already tested in reps.

MozReview-Commit-ID: JKmGNHRw6Iu

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_document_body_autocomplete.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_autocomplete_native_getters.js
extra : rebase_source : adbb2a8effbc1a611971f77faf7c1a2d2995131f
2017-11-29 11:27:57 +01:00
Mike Park 6f4f11a842 Bug 1419076 - Make the console sidebar resizable. r=nchevobbe
MozReview-Commit-ID: 3xhbF4JFq4P

--HG--
extra : rebase_source : 9d49ef0964e4a4ed12cc530d6762d14eeb3bcf0a
2017-11-22 16:14:35 -05:00
Mike Park d4fffe9ba5 Bug 1418066 - Add rotation to CSS shapes editor transform mode. r=pbro
MozReview-Commit-ID: HJmdhTg5QjL

--HG--
extra : rebase_source : 828235ca723fe3fa8b3e57eda2512ace002aabd3
2017-11-16 15:58:23 -05:00
Nicolas Chevobbe b045abf032 Bug 1421242 - Fix netmonitor SEND_CUSTOM_REQUEST reducer; r=Honza.
The reducer code was still trying to use Immutable.Record.get, although
we switched the state to a native js object. This was throwing an error.

Adding assertion to the existing tests that was failing without the fix.

MozReview-Commit-ID: Klj94ApJr4Y

--HG--
extra : rebase_source : 203a5028cc9988925fffba29b095d48599e41153
extra : source : 94d12ed69afd1ddb320a4cfca6db6b72a9a2db9a
2017-11-28 11:11:20 +01:00
Julian Descottes 80652afe02 Bug 1408948 - enable browser_webconsole_show_subresource_security_errors.js;r=nchevobbe
MozReview-Commit-ID: Dci3py85zJq

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.html => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.js => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.js
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1092055_shouldwarn.js^headers^ => devtools/client/webconsole/new-console-output/test/mochitest/test-subresource-security-error.js^headers^
extra : rebase_source : 4860f05a3d7b979aa7429216d5abff020f8405cc
2017-11-23 14:55:39 +01:00
Mike Park 0a16908b3d Bug 1419087 - Clearing the console closes the sidebar. r=nchevobbe
MozReview-Commit-ID: 4aFs6ubgQwk

--HG--
extra : rebase_source : 08100ee5bde35ea45f661a9883c72c1a08334c26
2017-11-27 16:37:12 -05:00
Michael Ratcliffe 8c8dc702e1 Bug 1419828 - Remove devtools references to React.addons.TestUtils r=nchevobbe
Changes:

- Added testUtils to React DOMs Proxy MonkeyPatch.
- Removed TestUtils where it is not needed.
- Added syntax identifiers to Markdown fences just because VSCode can do syntax highlighting in the markdown itself when you do that.
- In our require-helper.js files I have had to keep the name "react-addons-test-utils." This is because Enzyme uses the require paths to choose which adapters are needed (none are... yet)... we will need to use "react-addons-test-utils" instead of "react-dom/test-utils" as the path until we upgrade to React 16+.

MozReview-Commit-ID: H1tgzfp0MXl

--HG--
extra : rebase_source : cbdd59f6256703e7aba2dac76aece94c1101898e
2017-11-24 18:25:52 +00:00
Nicolas Chevobbe 745544399b Bug 1417439 - Release actors when message are pruned due to an MESSAGES_ADD action; r=Honza.
In Bug 1371721, we created a new action to batch our message addition into the store. Which means that messages can be pruned when using this action,
and implies releasing server actors.

But, at the moment, we only do that when we use the MESSAGE_ADD action.
This wasn't caught by tests because they explicitly use the MESSAGE_ADD action.

This patch makes the console release actors in reaction to a MESSAGES_ADD
action and add a test to make sure we handle this as expected.

MozReview-Commit-ID: FfgvmKi9nM9

--HG--
extra : rebase_source : a0416fd911699dac7addb37fffc42aa61d8824a5
2017-11-15 14:54:34 +01:00
Julian Descottes a38e35b3bc Bug 1418952 - style updates for about:devtools;r=nchevobbe
MozReview-Commit-ID: IFaDZBgmJPh

--HG--
extra : rebase_source : 2527b60e1bd23e9fd196296089ef9c0cea449d1b
2017-11-20 11:48:38 +01:00
Julian Descottes c186e09d03 Bug 1418952 - update about:devtools strings;r=flod,nchevobbe
MozReview-Commit-ID: B20sojPHg7H

--HG--
extra : rebase_source : 04b23af830b3fd5ce16fe76ee47e3bca4e013575
2017-11-20 10:26:43 +01:00
Julian Descottes 66d3ca58e3 Bug 1408941 - Enable browser_webconsole_multiline_input.js;r=nchevobbe
MozReview-Commit-ID: 5lzN37yWeOc

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_multiline_input.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_multiline.js
extra : rebase_source : bd133f9e0c57b88dae44ab4d9d8877ba47546e4c
2017-11-28 22:42:15 +01:00
Michael Ratcliffe 96d918c2dd Bug 1298370 - Add SameSite attribute to Cookie Inspector r=pbro
MozReview-Commit-ID: C0n35vEaAdJ

--HG--
extra : rebase_source : 217b8eb13374fec057bf626cac586f41d25e44bb
2017-11-28 14:29:09 +00:00
Dorel Luca 79499f4044 Merge mozilla-central to autoland r=merge on a CLOSED TREE 2017-11-29 12:31:25 +02:00
Gurzau Raul ab047e4fb1 Backed out changeset 044f5a964dc5 (bug 1369945) for Eslint failures client/shared/components/splitter/SplitBox.js and devtools failures test/browser_inspector_breadcrumbs_visibility.js r=backout on a CLOSED TREE 2017-11-28 23:12:17 +02:00
Gabriel Luong cfded25d12 Bug 1369945 - Display a split rule view panel in the inspector. r=bgrins
MozReview-Commit-ID: If55vBPfU3W
2017-11-27 15:54:18 -05:00
Gurzau Raul 68e92c2ba3 Backed out 1 changesets (bug 1369945) for failing devtool tests test/browser_inspector_breadcrumbs_visibility.js r=backout on a CLOSED TREE
Backed out changeset bdbb870f32dc (bug 1369945)
2017-11-28 21:18:22 +02:00
Julian Descottes 92392b47b7 Bug 1411565 - about:debugging connect to remote runtime using url parameters;r=ochameau
This changeset adds basic remote connection functionality to about:debugging.
About:debugging can target a remote firefox instance if the host and port
parameters are passed as URL search params.

The feature is not explicitly exposed at the moment and there is no UI to
connect an instance, and no UI feedback when connected to a remote instance.

When connected, about:debugging should correctly list tabs, workers and addons
for the target instance of Firefox. Debugging features work for all supported
targets.

Known limitations:
- preferences are read from the local Firefox instance (multiprocess, addon
  debugging etc...). At the moment the remote instance must be manually
  correctly configured

MozReview-Commit-ID: DOekSCb96XC

--HG--
extra : rebase_source : 89b73e885e50bfba4e1888f8791f637a5ba05ca7
extra : intermediate-source : 840e23f2a496e2cec280643fef127095bd67d518
extra : source : 6cc5cc4494e67ae9dd7371420710c3f8afe5b256
2017-10-23 10:15:40 +02:00
Oriol Brufau ba0ffccb08 Bug 1403536 - Protect all protocol request methods against unsafe objects r=ochameau
MozReview-Commit-ID: 4fDaap9QCdF

--HG--
extra : rebase_source : 0774e230ddc9b8fe1bc03be45cd5732d3a161e41
2017-10-18 04:38:13 +02:00
Greg Tatum 5912015212 Bug 1408124 - Create a new perf actor and recording panel; r=julienw
This patch adds a new performance recording panel that interfaes with
perf.html. It is enabled through the new preferences:

"devtools.performance.new-panel-enabled"

MozReview-Commit-ID: 1HBLsbREDPk

--HG--
extra : rebase_source : 22cc2826138c4891024c34947f145574f55b4541
2017-11-08 10:36:43 -06:00
Oriol Brufau f3f7e31981 Bug 1421631 - Move viewer-config.js to the end of the body. r=Honza
MozReview-Commit-ID: KY9WraNVQIY

--HG--
extra : rebase_source : 9a4965ed130e3a04be54db87790dde01ee6005bb
2017-11-28 20:10:54 +01:00
Julian Descottes c0ed6825fa Bug 1401548 - rename and enable browser_bug_869003_inspect_cross_domain_object.js;r=nchevobbe
MozReview-Commit-ID: 6RnfOEsLQW1

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-869003-iframe.html => devtools/client/webconsole/new-console-output/test/mochitest/test-inspect-cross-domain-objects-frame.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-869003-top-window.html => devtools/client/webconsole/new-console-output/test/mochitest/test-inspect-cross-domain-objects-top.html
extra : rebase_source : c660dbff4843cb62e8c2ec6882d5f83c25ede40e
2017-11-29 16:11:30 +01:00
Gabriel Luong b1c72a4e79 Bug 1420604 - Remove unused isDirty bit from the Inspector and Style Editor. r=jdescottes 2017-11-28 13:27:38 -05:00
Gabriel Luong b51659c313 Bug 1369945 - Display a split rule view panel in the inspector. r=bgrins
MozReview-Commit-ID: If55vBPfU3W
2017-11-27 15:54:18 -05:00
Jan Odvarko ac7c62d3df Bug 1420711 - Fix typo; r=rickychien
MozReview-Commit-ID: F0c87FNPKLs

--HG--
extra : rebase_source : c34f3397223d908e4f5c0f074ad9029578d927fe
2017-11-27 11:02:14 +01:00
Oriol Brufau 51b81fc070 Bug 1403536 - Protect all protocol request methods against unsafe objects r=ochameau
MozReview-Commit-ID: 4fDaap9QCdF

--HG--
extra : rebase_source : 7fbf01156e13c1e9d528d4bd063cd1ac818d203f
2017-10-18 04:38:13 +02:00
Julian Descottes 59241dd5d2 Bug 1401942 - Rename and enable browser_bug664688_sandbox_update_after_navigation.js;r=nchevobbe
MozReview-Commit-ID: FbR1FoUp3qo

--HG--
extra : rebase_source : 77972dde83380bda72bd04e8b168ddf7af91fd82
2017-11-29 16:56:18 +01:00
Julian Descottes b39e9bcc55 Bug 1401942 - Call jsterm clearOutput from new-webconsole client;r=nchevobbe
The local clearOutput defined in new-webconsole.js was only used in one
place, in the same file, on tab navigation. It would probably be best to
reuse the same code path as in other places, ie jsterm.clearOutput().

(plus the clear storage argument of the local method was never used).

MozReview-Commit-ID: 9suQTgUGCBA

--HG--
extra : rebase_source : 72fe5559514a5977703a77cbb344b40b9ef60160
2017-11-29 16:50:09 +01:00
lochang e889dbe685 Bug 1417751 - Implement a new value inner-spin-button to -moz-appearance on all platforms except Android. r=mats
MozReview-Commit-ID: 7jpLCOWZA2x

--HG--
extra : rebase_source : d2a4d160d26e6f6996ed1cb3a673576236b8ef23
2017-11-29 10:43:13 +08:00
Tom Tromey b91b9e1c13 Bug 1421066 - remove getAppIniString from devtools/shared/system.js; r=ochameau
getAppIniString was found to be slow, and the results were never used;
so remove it.

MozReview-Commit-ID: Lk90vnElC0

--HG--
extra : rebase_source : eb16495afe014097ad2285678bdf9ac756022d16
2017-11-28 09:04:10 -07:00
Tiberius Oros e8ada3a41a Backed out changeset 36b3f7fb7d31 (bug 1408124)for chrome failures in devtools test devtools/shared/security/tests/chrome/test_websocket-transport.html r=backout on a CLOSED TREE 2017-11-28 21:47:41 +02:00
Oriol Brufau 74915a3cf3 Bug 1417039 - Do not defer loading JSON Viewer. r=Honza
MozReview-Commit-ID: BtnH41N1w8P

--HG--
extra : rebase_source : 354a9159e9d398b6bc5d66318ebe14bc4e1d0e16
2017-11-28 16:28:21 +01:00
Greg Tatum bcab5cbfe4 Bug 1408124 - Create a new perf actor and recording panel; r=julienw
This patch adds a new performance recording panel that interfaes with
perf.html. It is enabled through the new preferences:

"devtools.performance.new-panel-enabled"

MozReview-Commit-ID: 1HBLsbREDPk

--HG--
extra : rebase_source : 4db73267d9868c4c62d2619111f875338c8e6171
2017-11-08 10:36:43 -06:00
abhinav 8f71fc9e83 Bug 1418969 - Remove helper API from requests reducer; r=Honza
MozReview-Commit-ID: 8r7rHH23sqC

--HG--
extra : rebase_source : d22f069cc520f6816d4de1632425ae58046fcd14
2018-01-21 00:08:21 +05:30
J. Ryan Stinnett d5abe62be4 Bug 1432496 - Clean up protocol.js deprecations. r=jdescottes
`ActorClass` and `FrontClass` are depercated protocol.js APIs that were left in
place to support add-ons that might have used them.  Now that we're in an
WebExtensions only mode, it seems safe to remove these.

MozReview-Commit-ID: HRKMPTIktrZ

--HG--
extra : rebase_source : 8118b7f87dae92688a0ace0f4cf05a2a0d609d6f
2018-01-23 09:15:49 -06:00
Gurzau Raul 6675c62a6e Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-01-23 02:24:22 +02:00
Julian Descottes 46f8ae7efd Bug 1431758 - do not use netmonitor data to fetch stylesheets over 1MB;r=jryans
MozReview-Commit-ID: Gz6dRLiLREm

--HG--
extra : rebase_source : dc25347c977b7890231b7434622d171d217f7bc6
2018-01-20 00:24:41 +01:00
abhinav 78189660d8 Bug 1335316 - Include URL parameters in network request logs; r=Honza
MozReview-Commit-ID: 4NqKiX46vqz

--HG--
extra : rebase_source : f0917415233452acb4c5cda5b13f51ff21b58ce1
2018-01-20 00:33:58 +05:30
arthur.iakab 042d2e8d74 Merge mozilla-central to inbound r=merge a=merge on a CLOSED TREE 2017-12-22 00:28:49 +02:00
Gabriel Luong f78fd8e78c Bug 1425653 - Inspector should retain the width of its sidebar on reopen. r=mparkms 2017-12-21 16:16:32 -05:00
ctlusto f2f9381cff Bug 1417805 - Add highlighting to HTTP response status codes in console r=nchevobbe
MozReview-Commit-ID: 64AOF8PoW27

--HG--
extra : rebase_source : 1f6ebd176afd7eefd37c0e5abad2e6a6337fb12b
2017-11-26 11:11:55 -05:00
Julian Descottes 9590ffee64 Bug 1408943 - enable browser_webconsole_network_exceptions.js;r=nchevobbe
MozReview-Commit-ID: 7Jb2y9AQ4fa

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-618078-network-exceptions.html => devtools/client/webconsole/new-console-output/test/mochitest/test-network-exceptions.html
extra : rebase_source : 6b330a24197ea058a91271ea1d36baa2436b1937
2017-11-23 18:20:19 +01:00
Julian Descottes 348b516926 Bug 1408945 - enable browser_webconsole_optimized_out_vars.js;r=nchevobbe
MozReview-Commit-ID: CNPdSwF6kbc

--HG--
extra : rebase_source : 0f93b6022896cc9469e2f1e23a4abab273b54af9
2017-11-23 17:37:41 +01:00
Julian Descottes 8e635cfe5d Bug 1408946 - enable browser_webconsole_output_order.js;r=nchevobbe
MozReview-Commit-ID: 1yzQhoGqZTi

--HG--
extra : rebase_source : 80e84dd954362fd80280b2b76b6aa7ed6671a0a3
2017-11-23 16:41:19 +01:00
Oriol Brufau d61a4e90dc Bug 1419471 - Cleanup after removing UTF-16 support. r=tromey
MozReview-Commit-ID: 39N2Sb9G0Ab

--HG--
extra : rebase_source : 18420552665e8bea5a62fc27c7e85d42c393663e
2017-11-24 21:43:49 +01:00
Margareta Eliza Balazs 24fbf705d1 Merge mozilla-central to mozilla-autoland. r=merge a=merge on a CLOSED TREE 2017-11-28 00:09:08 +02:00
Margareta Eliza Balazs f0400e7e4c Merge inbound to mozilla-central r=merge a=merge 2017-11-27 23:57:42 +02:00
shindli e8c465c98f Backed out 1 changesets (bug 1418066) for failing in /builds/worker/checkouts/gecko/devtools/client/inspector/test/browser_inspector_highlighter-cssshape_06.js:63:1 r=backout on a CLOSED TREE
Backed out changeset 8e64f442e70d (bug 1418066)
2017-11-27 22:35:35 +02:00
Oriol Brufau a78a4d5525 Bug 1416394 - Scroll row into view using scrollIntoView. r=Honza
MozReview-Commit-ID: KoTvLkZA3CL

--HG--
extra : rebase_source : 28128b633633ecc2d5d25a017bd9cda36c9bb009
2017-11-24 16:49:01 +01:00
Oriol Brufau 648ac7cb6d Bug 1420451 - Stop using chrome code to copy text in JSON Viewer. r=Honza
MozReview-Commit-ID: HnEhsDwWRWU

--HG--
extra : rebase_source : 136f0b3c0c66e52260a11f689473da426fe9a98e
2017-11-24 17:50:22 +01:00
Andrea Marchesini 2ef23c7ade Bug 1420223 - createImageBitmap must work with nsIAsyncInputStream - part 4 - ImageBitmap must use imgITools::decodeImageBuffer, r=aosmond 2017-11-27 17:05:57 +01:00
Mike Park b379311792 Bug 1418066 - Add rotation to CSS shapes editor transform mode. r=pbro
MozReview-Commit-ID: HJmdhTg5QjL

--HG--
extra : rebase_source : 5a39cbaf3fec5179fb69ce53daa6f4cc22260c1d
2017-11-16 15:58:23 -05:00
Johann Hofmann 2926a6c050 Bug 1374574 - Remove the FlyWeb system add-on from Firefox. r=mconley
MozReview-Commit-ID: BWqZIGz5hQx

--HG--
extra : rebase_source : edf0c6585431ac8fdd229a2a09c8b21b797e8a5d
2017-11-22 14:47:49 +01:00
Patrick Brosset 8f5385f702 Bug 1408938 - Enable and rename browser_webconsole_history.js; r=nchevobbe
MozReview-Commit-ID: GU4Z3ghCTmv

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_history.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_history.js
extra : rebase_source : 704f7c2de6a25cb3b762592d60f9ed6d3c4819d9
2017-11-24 17:38:32 +01:00
Luca Greco aa1e1912b4 Bug 1416928 - Test content script debugging on the new debugger UI. r=jlast
MozReview-Commit-ID: Dt0eaKmp777

--HG--
extra : rebase_source : 14db83ec4fb21e3f01d9f7b8955b3e56ece7b4a1
2017-11-15 17:54:23 +01:00
Luca Greco f6c2f83ad4 Bug 1416928 - Ensure that cached ContentScript sources are not skipped by the ThreadActor.onNewScript. r=yulia
MozReview-Commit-ID: JJjcAvsI3Na

--HG--
extra : rebase_source : 399e1be616fc7eedd6d753aafa9af5e21fdc6b19
2017-11-14 16:24:12 +01:00
Botond Ballo 978ae3283a Bug 951793 - Style support for overscroll-behavior. r=heycam
MozReview-Commit-ID: IDAfBZy2D5p
2017-11-25 01:28:58 +01:00
Sebastian Hengst 6d4637aebb Backed out 15 changesets (bug 951793) because it landed before the necessary servo changes. r=backout requested by emilio on a CLOSED TREE
Backed out changeset ca8c86e229df (bug 951793)
Backed out changeset 6eef6403fa71 (bug 951793)
Backed out changeset a5e529f52fb1 (bug 951793)
Backed out changeset 054e837609d0 (bug 951793)
Backed out changeset 713a3c9617ce (bug 951793)
Backed out changeset 884913aa1668 (bug 951793)
Backed out changeset c3340b84e534 (bug 951793)
Backed out changeset 50fe3c6ac486 (bug 951793)
Backed out changeset be4e22e5c257 (bug 951793)
Backed out changeset 7055bd5dfc4e (bug 951793)
Backed out changeset fa6da1e723cf (bug 951793)
Backed out changeset 386f77004d89 (bug 951793)
Backed out changeset fa82cdc01408 (bug 951793)
Backed out changeset 867d8ea5355c (bug 951793)
Backed out changeset e61ac8e48971 (bug 951793)
2017-11-25 01:01:41 +02:00
Botond Ballo 3ff3395934 Bug 951793 - Style support for overscroll-behavior. r=heycam
MozReview-Commit-ID: IDAfBZy2D5p

--HG--
extra : rebase_source : d70820f9612174ffc8f17f1a2646dc65f46667df
2017-11-22 19:01:11 -05:00
Ciure Andrei 327405164b Merge inbound to mozilla-central r=merge a=merge 2017-11-25 00:04:02 +02:00
Patrick Brosset 1439f404fa Bug 1405350 - Slightly rewrite, simplify and enable browser_webconsole_js_input_expansion.js; r=Honza
MozReview-Commit-ID: 3vpUl69Qk4w

--HG--
extra : rebase_source : c04c06b81181b2d7b08471f540d89894190db2be
2017-11-22 15:47:59 +01:00
Russell b0fcec315e Bug 1419407 - remove Immutable usage in prefs reducer; r=nchevobbe
MozReview-Commit-ID: ADyu8ULDDm6

--HG--
extra : rebase_source : 7d48ef734ffe594eeca1efde8623679cf44022f8
2017-11-23 08:02:57 -08:00
Miguel Useche 1b918bdec8 Bug 1408827 - Where is code link broken for DevTools documentation. r=sole 2017-11-20 23:11:15 -04:00
arthur.iakab dfc104159a Merge inbound to central r=merge a=merge 2017-11-24 12:00:30 +02:00
Geoff Brown 3556bc0ffe Bug 1294873 - Skip test_websocket-server.html on osx, to avoid intermittent leaks; r=me, a=test-only 2017-11-23 16:37:21 -07:00
Gurzau Raul 21905d169e Merge mozilla-central to mozilla-inbound. r=merge a=merge CLOSED TREE 2017-11-24 00:38:13 +02:00
Nicolas Chevobbe 27dc69aca7 Bug 1408931 - Enable browser_webconsole_csp_ignore_reflected_xss_message.js in the new console frontend; r=jdescottes.
This also renames the support files.

MozReview-Commit-ID: 9TqERvD5EFA

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1045902_console_csp_ignore_reflected_xss_message.html => devtools/client/webconsole/new-console-output/test/mochitest/test_console_csp_ignore_reflected_xss_message.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test_bug1045902_console_csp_ignore_reflected_xss_message.html^headers^ => devtools/client/webconsole/new-console-output/test/mochitest/test_console_csp_ignore_reflected_xss_message.html^headers^
extra : rebase_source : be782c9fee52551a8f3d248208cc40c0c2963e36
2017-11-22 09:56:14 +01:00
Sudheesh Singanamalla cf10d44c01 Bug 1419410 Removes Immutable usage in UI reducer; r=nchevobbe
MozReview-Commit-ID: 76xdMKBGIUU

--HG--
extra : rebase_source : ed3b8f975a0cf65dd4483b115c932a86de3b62c5
2017-11-23 21:09:48 +05:30
Jan Odvarko 5c93b047f9 Bug 1416201 - Fix tests; r=rickychien
MozReview-Commit-ID: 2QS1KlYtkY8

--HG--
extra : rebase_source : f1e2c33a4e6e5f14e42dd3e1b6a6f7a4e07b4c91
2017-11-23 13:35:23 +01:00
Jan Odvarko 14c920d252 Bug 1416201 - update test fixtures for the Console panel; r=nchevobbe
MozReview-Commit-ID: F67HMK7zyUn

--HG--
extra : rebase_source : 7284ef615b184ec80ce724fab2f62bdaf9173518
2017-11-23 13:35:23 +01:00
Jan Odvarko 3bd627cefb Bug 1416201 - HTTP request stack trace should be lazy loaded;r=rickychien
MozReview-Commit-ID: 5SWLLcNqORz

--HG--
extra : rebase_source : 400e5d48848b087f8965652df6b9c37686fb4b40
2017-11-23 13:35:04 +01:00
Alexandre Poirot c32ab9e219 Bug 1420037 - Fix netmonitor "dataProvider is null" exception on DAMP. r=Honza
MozReview-Commit-ID: EhCSSV0ZFrB

--HG--
extra : rebase_source : 75030551b17eb8e30eb482a9adc8fd840c853614
2017-11-23 00:36:13 -08:00
Alexandre Poirot 94383e3026 Bug 1419734 - Remove tab statistics leftovers. r=jdescottes
MozReview-Commit-ID: GaMCH6BrFMP

--HG--
extra : rebase_source : 653a330ca1ce0efbf4d943e0da5952d737ada25c
2017-11-22 08:19:03 -08:00
Julian Descottes af2e5d5dd1 Bug 1416711 - Add registerAllActors API;r=ochameau
Most of the codebase that needs to create a debugger server
can use a server with all actors registered.

Define an additional method registerAllActors to do that.

By previous implementations, all the call sites that were
using browser: true were indirectly using tab & root: true
as well. So all the call sites using browser: true have been
migrated to registerAllActors and the specific behavior of
the browser: true case has been removed. Passing browser:true
to registerActors now only registers browser specific actors.

MozReview-Commit-ID: F3sx71eGrdG

--HG--
extra : rebase_source : 7704264e84d96e03a0c789103ff466980913d4d2
2017-11-13 21:22:15 +01:00
Julian Descottes c2cea9f242 Bug 1416711 - Remove windowType argument from registerActors;r=ochameau
The windowType option of registerActors has nothing to do with
registering actors. It is only used in one spot in the codebase, so
switch this one to DebuggerServer.chromeWindowType = "..."; and
remove the option from registerActors.

MozReview-Commit-ID: QH6GKmTbVq

--HG--
extra : rebase_source : 13d70ddc21cae2b43cab2899c0e4b6f597c4f3ec
2017-11-13 21:06:59 +01:00
Julian Descottes 7324ecc861 Bug 1416711 - Stop guarding consumer calls to DebuggerServer.init();r=ochameau
DebuggerServer.init() already bails out if it was previously initialized
so we could avoid guarding the calls to init() with it everywhere.

Registering an actor module several times is also a noop as the Server
keeps a map of all the already registered modules and will bail out if
the module is already known.

MozReview-Commit-ID: 4ONLlx9253i

--HG--
extra : rebase_source : a6fce209baf5e019b6a216761c01832a30332343
2017-11-13 21:04:43 +01:00
Julian Descottes 8938049a1b Bug 1416711 - Remove default values for registerActors;r=ochameau
The default values for registerActors are never used in the codebase
and feel counter intuitive as they set all booleans to true.

MozReview-Commit-ID: 25zaJss9E4R

--HG--
extra : rebase_source : 9cbbd8ea44d7cc64bb17ada5c06cc1b7b016067b
2017-11-13 20:35:00 +01:00
Julian Descottes 4cac7dcb25 Bug 1416711 - Migrate addBrowser/TabActors to registerActors;r=ochameau
DebuggerServer has old APIs addBrowserActors & addTabActors that can be
replaced by calls to registerActors.

MozReview-Commit-ID: KpYJpbSHM8I

--HG--
extra : rebase_source : c7f20edf503b944ef2582b5fe73bd6d899c0d1cc
2017-11-13 20:29:55 +01:00
Julian Descottes ab38691d4f Bug 1416711 - Remove unused restrictPrivileges argument in addBrowserActors;r=ochameau
restrictPrivileges was used for FirefoxOS and can be removed now.

MozReview-Commit-ID: J5SYQ0OPTSk

--HG--
extra : rebase_source : 9c92fab26f867e39ebe0cd5e93994d6126374740
2017-11-13 16:41:23 +01:00
Markus Stange aea1e0fbbf Bug 1417709 - Add system colors called "-moz-mac-vibrant-titlebar-light/dark" for use with -moz-font-smoothing-background-color. r=emilio
MozReview-Commit-ID: 9FbRlPvrLMX

--HG--
extra : rebase_source : 84330fd5824468e4617649828d7902fc8f001f48
2017-11-16 11:50:09 -05:00
Markus Stange 0baac004bb Bug 1417709 - Add -moz-appearance: -moz-mac-vibrant-titlebar-light/dark. r=emilio
MozReview-Commit-ID: 2PMe8KTt5Wl

--HG--
extra : rebase_source : 58ed83f4a18ca83a9829ba2c27633e17fcbd6e63
2017-11-16 11:36:22 -05:00
Julian Descottes e735cf1383 Bug 1420179 - support tab argument in devtools shared-head refreshTab;r=nchevobbe
The tab argument was unused in the method. All the call sites have been updated to
stop providing this argument. The method now supports an optional tab argument.
It defaults to the selected tab if no argument is provided.

MozReview-Commit-ID: 621dgljHdtD

--HG--
extra : rebase_source : 676c998cb4b2f126d9ee075760e2d7d30078344b
2017-11-23 16:31:48 +01:00
Julian Descottes 1767aea3bb Bug 1408947 - enable browser_webconsole_reopen_closed_tab.js in the new console frontend;r=nchevobbe
MozReview-Commit-ID: KNcfZ4FqVET

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-597756-reopen-closed-tab.html => devtools/client/webconsole/new-console-output/test/mochitest/test-reopen-closed-tab.html
extra : rebase_source : 8976b060fe1e7f48a087c6423789f866963b2d86
2017-11-23 16:21:49 +01:00
Julian Descottes cfef7be9a1 Bug 1386979 - register about-devtools-toolbox on browser startup;r=ochameau
MozReview-Commit-ID: GUBEyzg2qCw

--HG--
rename : devtools/client/framework/about-devtools-toolbox.js => devtools/shim/aboutdevtoolstoolbox-registration.js
extra : rebase_source : 77cf2036dae59c6119b0c0d2dd1ed821ace0f07d
2017-11-21 20:32:51 +01:00
Michael Ratcliffe d0a661eea9 Bug 1419487 - Remaing DevTools components to ES6 Classes, prop-types and react-dom-factories r=gl
MozReview-Commit-ID: HjglFjui6XJ

--HG--
extra : rebase_source : 9529c18f141246f3d67f0cf7d5d3e82f54e5bbed
2017-11-22 12:15:43 +00:00
Cosmin Sabou a8c3a54f72 Merge mozilla-central to autoland. r=merge a=merge on a CLOSED TREE 2017-11-23 11:45:29 +02:00
Cosmin Sabou a5d613086a Merge mozilla-inbound to mozilla-central r=merge a=merge 2017-11-23 11:42:46 +02:00
Nicolas Chevobbe 9420ee9d33 Bug 1419787 - Pass onViewSourceInDebugger prop to the ObjectInspector; r=bgrins.
Test will be enabled in Bug 1406038. This requires some Reps work.

MozReview-Commit-ID: CpU25kiXiR1

--HG--
extra : rebase_source : d0c0f7c04f5c507b9ec17d6358b07cc30179b384
2017-11-22 18:03:48 +01:00
Fred Lin 8083de770a Bug 1404929 - Security info should be loaded lazily;r=Honza
MozReview-Commit-ID: JIwepd7qdOB

--HG--
extra : rebase_source : 9fa7971412798e1f2f580a44543f1dd4e946d823
2017-11-15 12:50:47 +08:00
shindli 82254ca1cf Merge inbound to mozilla-central r=merge a=merge 2017-11-22 23:29:44 +02:00
Oriol Brufau 87ad2bcd7e Bug 1419416 - Remove UTF-16 support in JSON Viewer. r=tromey
MozReview-Commit-ID: GIE3Q5j3wZm

--HG--
extra : rebase_source : 50afde4502aaf247d931d2cab1f6f75a2db768a9
2017-11-21 15:09:14 +01:00
Oriol Brufau aa52f83dde Bug 1419447 - Cleanup PseudoArray console previewer. r=nchevobbe
MozReview-Commit-ID: 6GqYgvGCMXS

--HG--
extra : rebase_source : 3bdd0e5c1f5bd08f944286ceedece241744e97f9
2017-11-20 01:26:30 +01:00
Andreea Pavel c717a7b707 Backed out 1 changesets (bug 1405252) for failing devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_filters.js r=backout on a CLOSED TREE
Backed out changeset aa2c49a11df2 (bug 1405252)
2017-11-22 19:07:02 +02:00
Mike Park f129b7e706 Bug 1419075 - Create a button that open a sidebar in the console. r=nchevobbe
MozReview-Commit-ID: AjSMnPJktU9

--HG--
extra : rebase_source : 5b38e997b3e4527ef26dc88eb827abcc3fd55159
2017-11-20 16:00:31 -05:00
Patrick Brosset 4017828894 Bug 1408944 - Rewrite and enable browser_webconsole_network_requests_from_chrome.js; r=nchevobbe
MozReview-Commit-ID: EPzTQhqhVFE

--HG--
extra : rebase_source : 8d11053f774e9465c4fb3c454f497aa3fba9534e
2017-11-22 16:16:03 +01:00
Nicolas Chevobbe a27c77aad7 Bug 1405252 - Enable browser_webconsole_console_logging_workers_api.js in the new frontend; r=Honza.
MozReview-Commit-ID: I7b45uLfNkw

--HG--
extra : rebase_source : 2f8925e7036bcc523801cc1ca12626ddf530e326
2017-11-21 09:23:31 +01:00
shindli a2e65c617d Merge mozilla-central to mozilla-inbound. r=merge a=merge CLOSED TREE 2017-11-23 00:17:19 +02:00
Mike Park d426efd011 Bug 1419792 - Shapes highlighter drawn inaccurately for shape-outside with margins. r=gl
MozReview-Commit-ID: 1MGCvsDXJ6O
2017-11-22 12:05:55 -05:00
Vincent Lequertier 7f2dd1b6fa Bug 1381648 - Add non blocking time to the statistics panel of netmonitor; r=Honza
MozReview-Commit-ID: Anw4hTlpPjH

--HG--
extra : rebase_source : 307fd2f966578b9774274c510e5f809ad16e5840
2017-10-06 15:11:18 +02:00
Nicolas Chevobbe a58483784a Bug 1408401 - Release: Bump up devtools-reps bundle to 0.15.0; r=miker
MozReview-Commit-ID: ISudQK3C20A

--HG--
extra : rebase_source : 4c613dba3b0a2b0786cb6987c0681f84aa10de79
2017-11-21 18:44:04 +01:00
Ricky Chien 3d23b15dec Bug 1419665 - Support babel object-rest-spread syntax for launchpad r=Honza
MozReview-Commit-ID: JC6vWNMp3a7

--HG--
extra : rebase_source : 9d15c7a134e042a69ad4dfa7dfa0a4d0e01b8b38
2017-11-22 15:00:48 +08:00
Gabriel Luong 1a5bb16905 Bug 1420273 - Use module.exports for TextPropertyEditor and TextProperty. r=mparkms 2017-11-23 16:19:08 -05:00
Gabriel Luong 7ee7132d62 Bug 1420272 - Rename bame to name in element-style.js. r=mparkms 2017-11-23 16:19:03 -05:00
Ciure Andrei c7cf019289 Merge mozilla-central to mozilla-inbound. r=merge a=merge CLOSED TREE 2017-11-22 12:20:25 +02:00
Coroiu Cristina 9eb4f34b0a Merge mozilla-central to inbound. r=merge a=merge on a CLOSED TREE 2017-11-22 01:50:20 +02:00
Coroiu Cristina b1140e3113 Backed out changeset f10d05c0b3d2 (bug 1408708) for failing devtools at devtools/client/styleeditor/test/browser_styleeditor_bug_1405342_serviceworker_iframes.js on a CLOSED TREE 2017-11-22 00:37:27 +02:00
Alexandre Poirot 89cc513122 Bug 1408182 - Replace ImmutableJS by plain JS code; r=rickychien
MozReview-Commit-ID: FFUNk97n4zS

--HG--
extra : rebase_source : af2847e867f7a5a2fa453d6f81ca46f7e8775f35
2017-10-11 17:35:09 +02:00
Oriol Brufau 3b6b25c474 Bug 1418808 - Call QueryInterface when instantiating a JSON Viewer XPCOM class. r=Honza
MozReview-Commit-ID: 9kyPAjv7MCV

--HG--
extra : rebase_source : 7c41e153b72fa2925c615e30bf6b6f6692368c10
2017-11-17 17:07:19 +01:00
Hiroyuki Ikezoe b95b10c42e Bug 1419221 - Introduce a new argument for getUnanimatedComputedStyle to be able to flush pending styles. r=birtles
Even with this patch, in Gecko getUnanimatedComputedStyle flushes pendings
styles somehow.  Also in Stylo the function flushes pending styles if the
target element hasn't yet styled or Servo style data has cleared for some
reasons (e.g. the element is in display:none subtree).

MozReview-Commit-ID: HCizzM0JnFz

--HG--
extra : rebase_source : 81f130f35794d6ddcf6b7e7f70566d521ea63d31
2017-11-21 18:03:17 +09:00
Alexandre Poirot 3d64658419 Bug 1399242 - Prevent console react updates while console isn't visible. r=nchevobbe
MozReview-Commit-ID: A6NGLbiuyTE

--HG--
extra : rebase_source : 9f58d6e2ed6be3fb31de276e536158efa4cdd5ce
2017-10-09 20:14:34 +02:00
Alexandre Poirot fb08f4c098 Bug 1399242 - Ensure firing visibilitychange event and set document.visibiltyState attribute when hidding devtools panels. r=gregtatum
MozReview-Commit-ID: Gh6jp4KEZkX

--HG--
extra : rebase_source : 2125a8ceb5e235b1db525cfec9bc3268e1edce54
2017-10-09 20:16:01 +02:00
Alexandre Poirot e8f24cc6ab Bug 1411889 - Record netmonitor reload time. r=Honza
MozReview-Commit-ID: EwXuODxvm8B

--HG--
extra : rebase_source : 5e9d82f268f1c0f7423e6839d051766c3adb6702
2017-11-16 01:37:46 -08:00
Alexandre Poirot 08419a75f3 Bug 1372115 - Prevent exception in network monitor when JS file is loaded throught the bytecode cache. r=Honza
MozReview-Commit-ID: 5w6Bj9213ba

--HG--
extra : rebase_source : 13b4ff6ca93066c9e029e1c326353962407a12ec
2017-11-15 06:12:09 -08:00
Patrick Brosset 827ce5b328 Bug 1405288 - Remove pickColorFromPage actor method check from then inspector r=ochameau
This method was added in bug 1262439 last year, and shipped with FF50.
We support all the way back to the latest ESR (52 now).
So let's remove the backward compat code for this method.

MozReview-Commit-ID: LUL7FFWWC5M

--HG--
extra : rebase_source : 27969faff9e8827e23ff570addfde5c06fb57c97
2017-10-19 11:20:57 +02:00
Patrick Brosset b66f6388b1 Bug 1405288 - Remove scrollIntoView actor method check from the inspector r=ochameau
The scrollIntoView actor method was added in bug 901250 3 years ago and
shipped with FF 40.
We support all the way back to the latest ESR (52 now).
So let's drop this backward compat check code.

MozReview-Commit-ID: 5FKRpiOXfzd

--HG--
extra : rebase_source : 4c3b0850750081a87b77bc1b85d7a2e852f58c82
2017-10-19 11:12:23 +02:00
Patrick Brosset 896c0325ae Bug 1405288 - Remove duplicateNode actor method check from the inspector r=ochameau
This method was added in bug 1208864 2 years ago and shipped with Firefox 44.
We support all the way to the latest ESR, which now is 52.
So let's remove this backward compat code.

MozReview-Commit-ID: AdTU63Oehi4

--HG--
extra : rebase_source : 481f768101212db1f363c9b5204f7654aaea5208
2017-10-19 11:05:10 +02:00
Patrick Brosset 040582886a Bug 1405288 - Remove resolveRelativeURL actor method check from the inspector r=ochameau
The resolveRelativeURL actor method was added in bug 921102 which shipped
with Firefox 40.
This was 3 years ago, and well older than the latest current ESR (52), which
is the latest version we support.

MozReview-Commit-ID: 5X5czLP5v2E

--HG--
extra : rebase_source : 7c1ee2c2a78151eb94ef1f1bacff6396d3ceb24e
2017-10-19 10:57:30 +02:00
Tiberius Oros 6b0d30658a Backed out changeset edf2b70d2f01 (bug 1408182)for failing in devtools/client/netmonitor/test/browser_net_copy_params.js r=backout on a CLOSED TREE 2017-11-21 11:46:50 +02:00
Alexandre Poirot 38ebed24c2 Bug 1408182 - Replace ImmutableJS by plain JS code; r=rickychien
MozReview-Commit-ID: 4f9Bv3XDuoc

--HG--
extra : rebase_source : 834d1cfae3e32054fcaad6faa3569c4c3a885287
2017-10-11 17:35:09 +02:00
Liam 0fc77839e5 Bug 1402633 - Display the window dimensions with the ruler tools r=pbro
MozReview-Commit-ID: 2jMvUu7JM8M
2017-09-23 13:44:43 -06:00
Luca Greco 4ae90d3d3a Bug 1378524 - Fix "TypeError: tab is null" exception raised from browser_inspector_extension_sidebar.js when running on beta. r=pbro
MozReview-Commit-ID: DZPA07695VS

--HG--
extra : rebase_source : 93e24b7fa597c35535197b174ce55502ed134187
2017-11-13 17:53:56 +01:00
Nicolas Chevobbe 658e7f4075 Bug 1419059 - Fix console launchpad; r=nchevobbe.
Add dependencies that weren't included in devtools-launchpad no more.

MozReview-Commit-ID: 39KkXvQsR7S

--HG--
extra : rebase_source : 3501a488774044cef2f4d9844b17123a40372a2a
2017-11-20 17:54:36 +01:00
Nicolas Chevobbe 211ecc11ea Bug 1408930 - Enable browser_webconsole_console_api_iframe.js in the new console frontend; r=jdescottes.
MozReview-Commit-ID: KGGD7i8WbDZ

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-613013-console-api-iframe.html => devtools/client/webconsole/new-console-output/test/mochitest/test-console-api-iframe.html
extra : rebase_source : 77d50f8391c60402f311fc5521a550860a67635f
2017-11-20 09:51:42 +01:00
Alexandre Poirot e2eb1ab79d Bug 1405008 - Make WebIDE warn when connecting to old runtimes. r=jdescottes
MozReview-Commit-ID: KQc2b1ohksA

--HG--
extra : rebase_source : 0c0159ae17c7c224600aca2fe3611296dfea2bae
2017-10-02 22:40:32 +02:00
Gurzau Raul 0758d56d18 Merge mozilla-central to autoland. r=merge a=merge CLOSED TREE 2017-11-18 22:51:47 +02:00
Gurzau Raul 79f64eb568 Merge inbound to mozilla-central r=merge a=merge 2017-11-18 22:48:47 +02:00
Tooru Fujisawa 315ac4f42b Bug 1416249 - Remove conditional catch consumers in devtools/. r=jmaher 2017-11-18 22:57:17 +09:00
Noemi Erli d96f41a437 Merge inbound to mozilla-central r=merge a=merge 2017-11-18 00:01:46 +02:00
Nicolas Chevobbe 811cdc42fd Bug 1408929 - Rename and enable browser_webconsole_completion.js in the new console frontend; r=jdescottes.
MozReview-Commit-ID: ICu5aJViiW3

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_completion.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_completion.js
extra : rebase_source : 57020fe28c5b0dd215c2aa7fd6fd6f61a65eaa74
2017-11-17 12:14:44 +01:00
Nicolas Chevobbe 7c542cfde6 Bug 1371936 - Fix erroneous Object as ArrayLike grip; r=bgrins.
We only label Object as being ArrayLike if they have consecutive, numeric indexes, starting at 0,
and that could contain only a non-numeric length property that matches the actual number of numeric
keys in the object.
A test is added to make sure we don't regress this.
Fix old console frontend tests which relied on the bad implementation of ArrayLike (and delete
test cases now covered by the server test).

MozReview-Commit-ID: ATF7WypNVhh

--HG--
extra : rebase_source : 5e6a0ef0da84cf89518164f518a257bd1f0d5fd8
2017-11-16 16:04:42 +01:00
Jan de Mooij 7f30bf48a7 Bug 1417844 part 2 - Remove JSVersion from CompileOptions, CompartmentBehaviors, scripts. r=evilpie 2017-11-17 12:12:39 +01:00
Ciure Andrei 92d28bd8f2 Merge inbound to mozilla-central r=merge a=merge 2017-11-17 11:59:03 +02:00
Oriol Brufau cac2f457e4 Bug 1417035 - Stop using <plaintext> in JSON Viewer r=Honza
MozReview-Commit-ID: ADGZiyMTaAL

--HG--
extra : rebase_source : 06c95da34e6ffa0b23291be30aed2d5463e6f62c
2017-11-14 01:34:21 +01:00
Joel Maher eb7c7c286f Bug 1417653 - clean up a few moz.build files that have typos. r=gbrown 2017-11-16 08:56:51 -05:00
Michael Ratcliffe c33faadfcb Bug 1417512 - Performance Tools to ES6 Classes, prop-types and react-dom-factories r=gregtatum
MozReview-Commit-ID: A1F79OQpVGO

--HG--
extra : rebase_source : 578ad4c54bd3700466c7db2512317aca15fb8f13
2017-11-15 17:00:45 +00:00
Michael Ratcliffe a3ed20c815 Bug 1417462 - Memory Tool to use prop-types and react-dom-factories r=gregtatum
MozReview-Commit-ID: IDGNpS5fPKZ

--HG--
extra : rebase_source : b18d4bbf1bbe0c16d04a226a2aa7546d233cba57
2017-11-15 15:30:49 +00:00
Nicolas Chevobbe 923cfeaa4e Bug 1383711 - Make addOneTimeListener return a Promise; r=ochameau.
Switch some calls to addOneTimeListener from callback-style to Promise.

MozReview-Commit-ID: F9AlSvK0MAH

--HG--
extra : rebase_source : 076522e89004f8a4634b4f7732800a5ec14ce633
2017-11-06 08:40:39 +01:00
Nicolas Chevobbe 3b1a347334 Bug 1406030 - Enable browser_webconsole_cd_iframe.js in new frontend; r=Honza.
Once the test was migrated, it was failing because we did not show
error messages for invalid cd() calls.
There was a missing part in the evaluation result prepare message, which
this patch fixes. A stub and a mocha test were added to make sure we do
display those kind of messages.

MozReview-Commit-ID: FcTsP2pr3vD

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-609872-cd-iframe-child.html => devtools/client/webconsole/new-console-output/test/mochitest/test-cd-iframe-child.html
rename : devtools/client/webconsole/new-console-output/test/mochitest/test-bug-609872-cd-iframe-parent.html => devtools/client/webconsole/new-console-output/test/mochitest/test-cd-iframe-parent.html
extra : rebase_source : 8fc82b71875cebfed0e318d1eba8b5332dc650c7
2017-11-14 10:27:12 +01:00
Michael Ratcliffe b009e02f5b Bug 1415650 - Web Console to use prop-types and react-dom-factories r=Honza
MozReview-Commit-ID: 5T3asRQBmuD

--HG--
extra : rebase_source : ca651cd9665878e9a14eb03c902aa8f1c16d31fa
2017-11-10 22:16:39 +00:00
Ricky Chien 493d8e263a Bug 1417368 - Fixing launchpad `response is undefined` error & Toolbox.shouldComponentUpdate warning r=Honza
MozReview-Commit-ID: ImN34U0tFGm

--HG--
extra : rebase_source : 82d34dba3d75273685eea11016640a05f83f7b28
2017-11-15 17:54:21 +08:00
Julian Descottes 5b2c0adf24 Bug 1408339 - measure onboarding devtools user detection with telemetry;r=ochameau, datareview=francois
MozReview-Commit-ID: G3edBYlyH8f

--HG--
extra : rebase_source : 6cd721dca7e2bfc6e5cbf1938c47d3851ecfb6fc
2017-11-08 17:51:19 +01:00
Julian Descottes f5d0be6f79 Bug 1408339 - add a preference to drive the devtools onboarding experiment;r=ochameau
MozReview-Commit-ID: I4uGf1MFbI9

--HG--
extra : rebase_source : 22372a8f8fb59c47ad7f75e7fb55e937d721a884
2017-11-05 16:34:26 +01:00
Noemi Erli c6ea2b9c8f Merge mozilla-central to mozilla-autoland. r=merge a=merge CLOSED TREE 2017-11-15 12:13:56 +02:00
Noemi Erli 550148ab69 Merge inbound to mozilla-central r=merge a=merge 2017-11-15 11:57:12 +02:00
Andreea Pavel 3349ecafbd Backed out 1 changesets (bug 1402828) for failing devtools/client/netmonitor/test/browser_net_copy_as_curl.js r=backout a=backout on a CLOSED TREE
Backed out changeset 4d059e20a773 (bug 1402828)
2017-11-15 06:12:53 +02:00
Gabriel Luong 16731e0120 Bug 1387511 - Part 2: Format css-grid.js r=pbro 2017-11-14 22:02:51 -05:00
Gabriel Luong f085fec318 Bug 1387511 - Part 1: Use the grid negative number platform API to render negative line numbers correctly in css grid inspector. r=pbro 2017-11-14 22:02:44 -05:00
Eitan Isaacson d567085ce1 Bug 1414447 - Use displayed definitions in toolbox component for kb nav. r=jryans 2017-11-13 15:31:00 -05:00
Michael Ratcliffe 5c136a9918 Bug 1415167 - Network Monitor to use prop-types and react-dom-factories r=Honza
@Honza: Please wait for a green try before reviewing this.

MozReview-Commit-ID: 5KlOkYLnorj

--HG--
extra : rebase_source : 339c2dda1eb2afaf490e6bacb613addeece42d04
2017-11-08 11:19:48 +00:00
btara 986d32eb92 Merge mozilla-central to autoland r=merge a=merge on a CLOSED TREE 2017-11-14 22:40:50 +02:00
btara d95e1d710b Merge inbound to mozilla-central r=merge a=merge 2017-11-14 22:37:02 +02:00
Julian Descottes d1a9d0eb6d Bug 1412504 - Style updates for about:devtools;r=nchevobbe
MozReview-Commit-ID: BjCimCRFYWr

--HG--
extra : rebase_source : ce071050361e703501e912609f90d894d4deed1d
2017-11-11 10:28:22 +01:00
Coroiu Cristina 6a04305b5d Merge mozilla-central to inbound. r=merge a=merge on a CLOSED TREE 2017-11-14 12:31:45 +02:00
Michael Ratcliffe 41dd42c3c4 Bug 1415554 - Inspector to use prop-types and react-dom-factories r=gl
MozReview-Commit-ID: 7NxFwgFLDAL
2017-11-08 18:55:58 +00:00
Csoregi Natalia 8f1a81caad Merge inbound to mozilla-central r=merge a=merge 2017-11-14 00:57:47 +02:00
dluca 1904de3e5e Merge mozilla-central to Autoland r=merge a=merge on a CLOSED TREE 2017-11-14 17:00:43 +02:00
Alexandre Poirot faa53e3dff Bug 1404917 - Move image preview tooltip to file name and remove preview icon. r=Honza
MozReview-Commit-ID: 86YPdHZhCmo

--HG--
extra : rebase_source : dfb3a5edbfa52c2b35f8606a471fb4973de14764
2017-11-06 06:31:40 -08:00
Mark Banner 0370057096 Bug 1371293 - Fix various devtools warnings after upgrading to ESLint 4. r=miker
ESLint 4 will turn on all rules after an eslint-enable with no arguments. Therefore be more specific about which rules are being disabled.

MozReview-Commit-ID: IoPBG72zySm

--HG--
extra : rebase_source : f0095f7a9bc3020c1a36387cd033d1b1238a61cf
2017-11-06 14:01:33 +00:00
Mark Banner c32982b1f3 Bug 1371293 - Fix instances of padded-blocks failures after ESLint 4 upgrade. r=miker
MozReview-Commit-ID: I9sfn7n7UBs

--HG--
extra : rebase_source : e210706366189a26e3a827502f0de60e6ba1fdba
2017-11-06 13:45:49 +00:00
Michael Ratcliffe 13b7e232cc Bug 1413860 - Shared components to use prop-types and react-dom-factories r=nchevobbe
@nchevobbe: Please wait for a green try before reviewing this.

MozReview-Commit-ID: 9SLEHAq0IQQ

--HG--
extra : rebase_source : f3864d13d36802914171581f9f60351cf71aad2f
2017-11-03 13:34:41 +00:00
Nicolas Chevobbe abd554bf07 Bug 1403899 - Enable browser_webconsole_block_mixedcontent_securityerrors.js in new console frontend; r=Honza.
MozReview-Commit-ID: 5rCahlZBOGy

--HG--
extra : rebase_source : 16bdcaa0eddbfaea2b1971e8377758fdb27c7980
2017-11-13 10:02:45 +01:00
Jan Odvarko 21197b7cc9 Bug 1399125 - Fix overlapped labels; r=nchevobbe
MozReview-Commit-ID: 7TB7Hgpm5cn

--HG--
extra : rebase_source : 8009ce7926ad2ba7ed1f39576cb255db601aad60
2017-11-09 15:11:54 +01:00
J. Ryan Stinnett b4b3767a53 Bug 1414159 - Extra modal width for RDM custom devices. r=gl
As you add more than 7 or so custom devices, the modal will eventually wrap to
a 4th column.  Adding some more width allows that to happen without a horizontal
scroll bar.

This width looks natural without custom devices as well, and its not too large
for the most popular screen size (1366 x 768).

MozReview-Commit-ID: 5IErG8NX3xO

--HG--
extra : rebase_source : cbdb862597ef1774964bea135da6376e0cbb7650
2017-11-08 16:10:30 -06:00
Julian Descottes 6b5ad818ce Bug 1416704 - localize devtools options to enable new console/debugger;r=flod
MozReview-Commit-ID: IVHBg7xX3tB

--HG--
extra : rebase_source : f4f98505eee0560493fee13e429e9c672591e178
2017-11-13 12:49:05 +01:00
Gijs Kruitbosch 8c1b02e3d4 Bug 1388029 - remove the remaining uses of AREA_PANEL, r=jaws
MozReview-Commit-ID: L017kRfHfOv

--HG--
extra : rebase_source : c9dcbb76d787281ac2dcf18c59786205aeaacaf9
2017-11-07 12:15:18 +00:00
Narcis Beleuzu 0a20dc62d7 Backed out changeset 9029ee56b1ad (bug 1413860) for mochitest clipboard failures on browser_jsterm_selfxss.js. r=backout on a CLOSED TREE
--HG--
extra : amend_source : 905d4c8798d1e1947f716d350fd199ebd0d2ae79
2017-11-13 14:16:40 +02:00
Narcis Beleuzu ef4bd1778a Backed out changeset e18bb1a3d095 (bug 1410351) for build bustage on duplicate files. r=backout on a CLOSED TREE
--HG--
extra : amend_source : 9e67f1c129f1dddd70988113e1a1b294c4703eeb
2017-11-13 14:14:06 +02:00
Jan Odvarko 22c6f87284 Bug 1410351 - Make it more obvious when requests are paused in the netmonitor; r=rickychien
MozReview-Commit-ID: FlHVxePSbqg

--HG--
extra : rebase_source : 76ca5c97f917d2dd8bb68a2762a13f8f1d80e1a6
2017-11-09 14:01:59 +01:00
Nicolas Chevobbe f5e8b4a45a Bug 1408926 - Rename and enable browser_webconsole_chrome.js in new console frontend; r=jdescottes.
MozReview-Commit-ID: EAoATzKO9bF

--HG--
rename : devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_chrome.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_jsterm_autocomplete_in_chrome_tab.js
extra : rebase_source : 01b91afa835ec14b5dfcca9cf4b95a42aa1cb30b
2017-11-08 14:04:10 +01:00
Michael Ratcliffe e2ba0b4bd2 Bug 1413860 - Shared components to use prop-types and react-dom-factories r=nchevobbe
@nchevobbe: Please wait for a green try before reviewing this.

MozReview-Commit-ID: 9SLEHAq0IQQ

--HG--
extra : rebase_source : b916d948f3712bf4f09e50436cbdd0cf0f12afb4
2017-11-03 13:34:41 +00:00
Mark Banner ba94a5128c Bug 1371293 - Fix instances of missing 'use strict;' in html files as found after ESLint 4 upgrade. r=mossop
MozReview-Commit-ID: 2q3nqLaXA3E

--HG--
extra : rebase_source : 971ee6ae4dd565ead6f4aa16e06638445ecc5da0
2017-10-31 16:40:37 +00:00
Joel Maher c4a44af3c6 Bug 1414124 - Disable devtools/client/debugger/new/test/mochitest/browser_dbg-toggling-tools.js on all configs for frequent failures. r=me, a=testonly 2017-11-13 12:20:02 -05:00
Alexandre Poirot 42aca4f0c9 Bug 1404917 - Fetch response content only on-demand. r=Honza
Response content should only be fetched whenever it is strictly needed
as it is the response body. A possibly very large string.
So, netmonitor UI should only retrieve it when users select the Response Panel
or do any other action that require having access to it (like "Copy response"
context menu).

MozReview-Commit-ID: CtpJ8PKsCsm

--HG--
extra : rebase_source : 4540f641e511b2199436ad5c2edccda8aff37634
2017-10-26 09:03:40 -07:00
Andrew Swan fcb1dba461 Bug 1353861 Handle .zip files as temporary addons r=jdescottes
MozReview-Commit-ID: A9MQtnT16LV

--HG--
extra : rebase_source : 2f12d0acab93994d4d25cc200daeb0b16996a7b5
2017-11-15 22:03:34 -08:00
abhinav 72727b2b05 Bug 1408970 - Test for view source in debugger. r=nchevobbe
MozReview-Commit-ID: ARxkjtFbn2E

--HG--
extra : rebase_source : c4abbc3e3c06c4a2f3b24899bf557225df39e163
2017-11-06 22:12:03 +05:30
Ryan Leake 280baffc4c Bug 1333254 - Adjust variations of 'device pixel ratio' spelling. r=jryans
MozReview-Commit-ID: 9Fuc3pbX6Ey


--HG--
rename : devtools/client/responsive.html/components/DprSelector.js => devtools/client/responsive.html/components/DevicePixelRatioSelector.js
2017-11-17 11:08:42 -06:00
Gabriel Luong eea44d0b17 Bug 1414275 - Part 3: Add unit test for the flexbox highlighter toggle in the rule view. r=pbro 2017-11-13 10:02:13 -05:00
Gabriel Luong 6339f7df3a Bug 1414275 - Part 2: Toggle flexbox layout highlighter from the rule view next to 'display: flex|inline-flex' declarations. r=pbro 2017-11-13 10:01:20 -05:00
Gabriel Luong 986ddf7712 Bug 1414275 - Part 1: Convert HighlightersOverlay to use es6 classes. r=pbro 2017-11-13 10:01:03 -05:00
Gabriel Luong c9b7437500 Bug 1414362 - Outline the flex container and items in the flexbox highlighter. r=pbro 2017-11-13 10:00:39 -05:00
Brandon Cheng 7501af8a70 Bug 1353319 - Fix cyrillic text test after re-adding the HTML preview. r=Honza
Adding an HTML preview above the raw payload viewer on the developer
tools response tab caused browser_net_cyrillic-02.js to fail since
CodeMirror only renders visible lines to the DOM. The new HTML preview
shares space with the CodeMirror editor, so the resulting height became
shorter; enough to hide the line this test was looking for.

This solution uses CodeMirror.getValue() to retrieve the contents of all
lines stored in memory. Checking against that will allow the test to
pass since it contains the cyrillic text. One downside is that this
makes the test less reliable since it may not be guaranteed that what
CodeMirror has buffered to render will actually be what's inserted into
the DOM.

Two other solutions were explored before settling on the one above. The
first was simulating scroll events through EventUtils.sendWheelAndPaint.

  const event = {
    deltaMode: WheelEvent.DOM_DELTA_LINE,
    deltaY: 20
  }

  yield new Promise(resolve => {
    EventUtils.sendWheelAndPaint(
      document.querySelector(".CodeMirror-scroll"),
      10,
      10,
      event,
      resolve,
      monitor.panelWin
    );
  })

This did scroll the editor enough to render content and pass the test,
but caused additional errors since monitor.panelWin did not have a
.waitForAllPaintsFlushed() method that EventUtils.sendWheelAndPaint
expected.

The below alternative uses a hard-coded scroll amount and a
requestAnimationFrame as a rough estimate of when scrolling finished.
It worked in the ten or so runs I tested, but there's nothing guaranteed
about requestAnimationFrame that indicates when CodeMirror's rendering
has finished.

  document.querySelector(".CodeMirror-scroll").scrollBy(0, 200);
  yield new Promise(resolve => requestAnimationFrame(resolve));

MozReview-Commit-ID: H95HjR8UNpx

--HG--
extra : rebase_source : 03e4cd1e3a9042fa565373487c5cbb1118530917
2017-10-28 23:33:41 -04:00
Brandon Cheng c7d909cdff Bug 1353319 - Make SourceEditor flex when next to an HTML preview. r=Honza
MozReview-Commit-ID: 71sq86ka2ZL

--HG--
extra : rebase_source : 009104fe40bfac82e04b6102b15ec1d81f3bf1ac
2017-10-28 23:33:22 -04:00
Brandon Cheng af6599148d Bug 1353319 - Render HTML preview within Response side-panel. r=Honza
Restoring the HTML preview in the response panel was requested by many
users who rely on it to debug erroring AJAX requests. Many web backend
frameworks display an HTML stacktrace helping users trace down the
problem.

The html-preview.js component was taken from a previous commit of the
source code before the preview panel was removed. A few modifications
with its name and CSS classname were made.

MozReview-Commit-ID: JFyF6cBMaNf

--HG--
extra : rebase_source : 7e358f5fb4336a15f549ecb6f7e24cc00429de8e
2017-10-28 23:33:02 -04:00
Bill McCloskey 51c04f774f Bug 1395029 - Use blockThreadedExecution for debugging (r=jimb)
MozReview-Commit-ID: 2KRXZrTulwU
2017-11-11 21:04:20 -08:00
Andreea Pavel 54785d6806 Merge mozilla-central to mozilla-inbound r=merge a=merge on a CLOSED TREE 2017-11-11 12:03:02 +02:00
Jason Laster 25bb65f902 Bug 1416358 - Update Debugger frontend (11-10). r=jdescottes
MozReview-Commit-ID: 1aEWMEignDN

--HG--
extra : rebase_source : fa3233ac56268bc8db55d5876514e5ff52c9dab7
2017-11-11 00:52:17 +01:00
Ryan VanderMeulen b16410f51c Merge inbound to m-c. a=merge 2017-11-10 16:13:15 -05:00
Julian Descottes 6ba9f761e9 Bug 1413844 - add utm parameters to about:devtools links;r=pbro
MozReview-Commit-ID: EjgklOeYQ2g

--HG--
extra : rebase_source : b54123549878f8f0e571e7dadbfb462559634961
2017-11-09 19:17:35 +01:00
Nicolas Chevobbe 8eb390b8f5 Bug 1404400 - Delete browser_webconsole_charset.js from new frontend;r=Honza.
This test was checking the HTTPinspector by directly calling a WebConsoleClient function
which is no longer used in console code.

MozReview-Commit-ID: LxjhhO2rB0W

--HG--
extra : rebase_source : 411c18a62ae97102907b35f5d5e26749b48047f5
2017-11-15 08:57:58 +01:00
Michael Ratcliffe 963fae339e Bug 1417483 - DevTools Framework to use prop-types and react-dom-factories r=Honza
MozReview-Commit-ID: 5KKSvr2DLQu

--HG--
extra : rebase_source : 11ea368b7e4d3fd72cf449f6dd687cd5d872bf51
2017-11-15 16:22:12 +00:00
Nicolas Chevobbe c6d311e021 Bug 1408927 - Enable browser_webconsole_closing_after_completion.js in the new console frontend; r=jdescottes.
MozReview-Commit-ID: CrudyCnBlWh

--HG--
extra : rebase_source : d81a19ab340af1e43dc9f687067dcb592ce48fae
2017-11-15 09:54:56 +01:00
Michael Ratcliffe c351c5f556 Bug 1418320 - JSON Viewer: Split HeadersToolbar, JsonToolbar and TextToolbar out to their own files r=Honza
MozReview-Commit-ID: KdGLYV4rHB9

--HG--
extra : rebase_source : b0a9e75236d2b840dc51df00097b364bf125bb6f
2017-11-17 13:59:12 +00:00
abhinav 99bc432a12 Bug 1319597 - Move DPR text into the DPR menu options. r=jryans
MozReview-Commit-ID: 8gTzkWvVdfn

--HG--
extra : rebase_source : f40f1ca6e01a763b5cd1ea03a81e579557a19525
2017-11-07 23:11:50 +05:30
Michael Ratcliffe 532fb7bedc Bug 1418250 - JSON Viewer to ES6 Classes, prop-types and react-dom-factories r=Honza
MozReview-Commit-ID: Cy6Tp71zTwk

--HG--
extra : rebase_source : 64bc9159cc10c55e7837053b981c595ceeecce22
2017-11-17 10:28:07 +00:00
Michael Ratcliffe 07fae2ebf6 Bug 1417444 - about:debugging to use prop-types and react-dom-factories r=jdescottes
MozReview-Commit-ID: EQ5MSMrvdWW

--HG--
extra : rebase_source : fb7427c518f7bf6c5e4abc079b6568ca73d0546c
2017-11-15 14:48:37 +00:00
Mark Banner c62d0c64f8 Bug 1371293 - Upgrade ESLint to version 4.8.0, configuration changes. r=mossop
MozReview-Commit-ID: 2YHYOLTtqxu

--HG--
extra : rebase_source : 7bbc673bb72d546e1fca63227d54b6607a4ab33e
2017-10-09 10:54:16 +01:00
Daisuke Akatsuka 8dbaac70ea Bug 1406287 - Part 4: Add test for time ticks. r=gl
MozReview-Commit-ID: EPpCACBfJOP

--HG--
extra : rebase_source : ab544e71906a31e46085a13e06f0f7c0358b3fbd
2017-11-13 17:44:10 +09:00
Daisuke Akatsuka 4196053f72 Bug 1406287 - Part 3: Correspond for changing size of sidebar. r=gl
MozReview-Commit-ID: 9ndHImmpM9c

--HG--
extra : rebase_source : f213ab20328180e8e6210ea0e695c8126209b9d9
2017-11-13 17:43:25 +09:00
Daisuke Akatsuka 5de5eef2e3 Bug 1406287 - Part 2: Implement animation time tick and label. r=gl
MozReview-Commit-ID: GlkOal5ClHu

--HG--
extra : rebase_source : 7456f3da0f22b2dd5cab9d9353661e7b97caad0a
2017-11-13 17:42:55 +09:00
Daisuke Akatsuka 21947616de Bug 1406287 - Part 1: Implement basic layout. r=gl
MozReview-Commit-ID: KAe8uupfQ3z

--HG--
extra : rebase_source : e10cb17e0f46f6ade5995eddd1a97cbfea9f40d6
2017-11-13 16:41:04 +09:00
Csoregi Natalia e520b4f458 Merge mozilla-central to mozilla-autoland. r=merge a=merge CLOSED TREE 2017-11-14 00:59:27 +02:00
Alexandre Poirot 533133afc6 Bug 1404917 - Use request.mimeType instead of request.responseContent.content.mimeType. r=Honza
MozReview-Commit-ID: EIaS1CFKzVn

--HG--
extra : rebase_source : 814ac3fd2713c89387049b92e0c857e8b9b2f8e4
2017-10-05 17:42:51 +02:00
Tim Nguyen eea978e465 Bug 1416194 - Reduce Toolbar component updates in netmonitor. r=gasolin
MozReview-Commit-ID: Apwj73aeC0U

--HG--
extra : rebase_source : 2bc8501263dc44497971ceeded8bac31b62d8e1b
2017-11-10 11:55:27 +00:00
Mike Park e327bde121 Bug 1411402 - Change mouse cursor when hovering/clicking shapes highlighter markers. r=pbro
MozReview-Commit-ID: 9idXQmwatiW

--HG--
extra : rebase_source : b2aac18b3ce32c91523a9cf4328ec8bef82ef1f7
2017-10-25 14:36:03 -04:00
Daniel Stenberg baf6c03f86 Bug 1402828 - Improve "copy as cURL". r=Honza 2017-09-29 02:57:00 -04:00
Jason Laster cfc363edbf Bug 1416960 - Update Debugger frontend (11-13). r=jdescottes
--HG--
extra : rebase_source : 073b9055280ca7484a0c3542d9e0f353f7b722c9
2017-11-13 19:49:00 -05:00