Alexandre Poirot
7ea4dd517f
Bug 1027242 - Blacklist mulet's failing tests + expose 'mulet' to ini files; fix previous bustage on a CLOSED TREE, r=ahal
2014-07-02 15:40:56 -07:00
Panos Astithas
b7453b6e74
Properly deal with event handlers that the debugger cannot unwrap (bug 1041266). r=vporof
2014-07-21 18:31:18 +03:00
Panos Astithas
4a9caee359
Properly handle bound functions in event listeners and objects with 'handleEvent' methods (bug 746622). r=vporof,mratcliffe
...
--HG--
rename : browser/devtools/debugger/test/browser_dbg_break-on-dom-event.js => browser/devtools/debugger/test/browser_dbg_break-on-dom-event-01.js
rename : browser/devtools/debugger/test/browser_dbg_break-on-dom-event.js => browser/devtools/debugger/test/browser_dbg_break-on-dom-event-02.js
rename : browser/devtools/debugger/test/browser_dbg_event-listeners.js => browser/devtools/debugger/test/browser_dbg_event-listeners-01.js
rename : browser/devtools/debugger/test/doc_event-listeners.html => browser/devtools/debugger/test/doc_event-listeners-01.html
rename : browser/devtools/debugger/test/doc_event-listeners.html => browser/devtools/debugger/test/doc_event-listeners-03.html
extra : rebase_source : 5ff8e76fd2a8518ea007c7594dcc544cb0cc0808
2014-06-12 17:18:09 +03:00
Panos Astithas
34a40a3319
Properly handle terminated scripts in the debugger (bug 814683). r=fitzgen
...
--HG--
extra : rebase_source : 7df6a8e87642d40bf69e50d65aa0b358a5f1955b
2014-07-15 19:20:38 +03:00
Panos Astithas
c9f4e1f365
Black box sources before deciding whether to stage them for later addition (bug 1038117). r=fitzgen
...
--HG--
extra : rebase_source : dfedcab97b91ae75c9ef5c63d4e1489a49576330
2014-07-14 18:30:28 +03:00
Panos Astithas
b751f4e6a7
Wait a turn of the event loop if CodeMirror isn't settled by the time breakpoints are being set (bug 1016310). r=vporof
...
--HG--
extra : rebase_source : 652e9075f33e807a4cbd55cf3074ad910a59e8c4
2014-07-09 18:49:34 +03:00
Panos Astithas
084b9ac791
Replace mouseenter/leave events with mouseover/out in devtools for performance (bug 971203). r=vporof,pbrosset
...
--HG--
extra : rebase_source : 99ec789ca1314d0781c622ad3c1d96451aba3ae7
2014-07-09 17:47:53 +03:00
Piyush Waradpande
896b61ae2b
Bug 967156 - Adding class 'black-boxed' to blackboxed source after reload. r=fitzgen
2014-07-08 10:41:00 +02:00
Panos Astithas
22acd897f6
When the page is paused, send all keyboard events to the debugger frame (bug 1019024). r=rcampbell
...
--HG--
extra : rebase_source : 0aaba81bd24e2a95bc247954af45d8b6dab3ef27
2014-07-07 19:45:13 +03:00
Nick Fitzgerald
9a070e807e
Bug 1032379 - Automatically black box sources whose URL ends with '.min.js'. r=past
2014-07-03 09:44:00 -04:00
Panos Astithas
5eae5f5f2d
Avoid a race in CodeMirror initialization when setting breakpoints and don't let ESC stop navigation if the debugger is paused (bug 957174). r=vporof
...
--HG--
extra : rebase_source : 475e7969d92e237c7b38713cab8feb6d6464bb70
2014-06-19 10:15:14 +03:00
Victor Porof
715ecc2059
Bug 1034585 - Sources with BreakStatements can't be parsed correctly, r=past
2014-07-04 14:54:51 -04:00
Victor Porof
5ff125e46c
Bug 1034129 (relanded) - Event listeners should be clustered together by type in the events pane, r=past
2014-07-04 14:54:49 -04:00
Carsten "Tomcat" Book
e6f9a0de09
Backed out changeset 0685c59d2e94 (bug 1034129) for dt test failures
2014-07-04 15:57:55 +02:00
Victor Porof
b7e9eb7d74
Bug 1034129 - Event listeners should be clustered together by type in the events pane, r=past
2014-07-04 08:19:38 -04:00
Carsten "Tomcat" Book
48f0f82363
merge fx-team to mozilla-central a=merge
2014-06-25 15:34:21 +02:00
Jim Blandy
7e20285e70
Bug 914753: Make Emacs file variable header lines correct, or at least consistent. DONTBUILD r=ehsan
...
The -*- file variable lines -*- establish per-file settings that Emacs will
pick up. This patch makes the following changes to those lines (and touches
nothing else):
- Never set the buffer's mode.
Years ago, Emacs did not have a good JavaScript mode, so it made sense
to use Java or C++ mode in .js files. However, Emacs has had js-mode for
years now; it's perfectly serviceable, and is available and enabled by
default in all major Emacs packagings.
Selecting a mode in the -*- file variable line -*- is almost always the
wrong thing to do anyway. It overrides Emacs's default choice, which is
(now) reasonable; and even worse, it overrides settings the user might
have made in their '.emacs' file for that file extension. It's only
useful when there's something specific about that particular file that
makes a particular mode appropriate.
- Correctly propagate settings that establish the correct indentation
level for this file: c-basic-offset and js2-basic-offset should be
js-indent-level. Whatever value they're given should be preserved;
different parts of our tree use different indentation styles.
- We don't use tabs in Mozilla JS code. Always set indent-tabs-mode: nil.
Remove tab-width: settings, at least in files that don't contain tab
characters.
- Remove js2-mode settings that belong in the user's .emacs file, like
js2-skip-preprocessor-directives.
2014-06-24 22:12:07 -07:00
James Long
1df6353542
Bug 1008372 - Don't specify column when moving a breakpoint so it's stored correctly. r=fitzgen
2014-06-23 12:54:00 -04:00
Brian Grinstead
ef8f3b3489
Bug 942292 - DevTools themes - make the toolbars thinner. r=vporof
...
CLOSED TREE
2014-06-13 09:11:32 -05:00
Ed Morley
a19e1a048f
Backed out changeset 9fd9c035a76a (bug 942292) for making browser_canvas-frontend-slider-02.js fail 30-40% of the time
2014-06-13 18:45:27 +01:00
Brian Grinstead
5303f3531b
Bug 942292 - DevTools themes - make the toolbars thinner;r=vporof
2014-06-13 09:11:32 -05:00
Joe Walker
bb287a8929
Bug 992309 - Don't leak gcli promise to other tests; r=mratcliffe
2014-06-09 15:16:26 +01:00
Brian Grinstead
3faeb6a2ed
Bug 1018955: Get rid of pause/resume button flicker when setting breakpoint;r=fitzgen
2014-06-09 08:04:18 -05:00
Brian Grinstead
adac7a105e
Bug 1018955 - Fix pause/resume button flicker when debugger first loads. r=fitzgen
2014-06-05 17:03:00 +02:00
Ryan VanderMeulen
39c94cfe0c
Merge inbound to m-c.
2014-06-03 15:21:43 -04:00
Joel Maher
08a5fa35e7
Bug 992911 - (run-by-dir) add the ability to run mochitests per directory in a loop. r=ahal
2014-06-03 11:19:28 -04:00
Ryan VanderMeulen
55a54dc336
Bug 918507 - Re-enable browser_dbg_chrome-create.js on all platforms. r=past
...
--HG--
extra : rebase_source : 44c91142f9806589b012e750111d9703104f08b6
2014-05-30 19:18:16 +03:00
Carsten "Tomcat" Book
78c2dc6adc
Backed out changeset 86d0bd2a0233 (bug 992911) for android 2.3 bustage
2014-06-02 13:36:51 +02:00
Joel Maher
49f419b353
Bug 992911 - (run-by-dir) add the ability to run mochitests per directory in a loop. r=ahal
2014-06-02 06:54:23 -04:00
Tim Nguyen
310d4249af
Bug 1012139 - Add HDPI support for the remaining DevTools toolbox images. r=bgrins
2014-05-29 15:42:00 -04:00
Brian Grinstead
659fec896a
Bug 991810 - Move the inspector button to the top left;r=vporof
2014-05-28 09:11:33 -05:00
Ryan VanderMeulen
5660fe6503
Bug 1005274 - Disable browser_dbg_addon-console.js on Windows.
2014-05-27 15:58:52 -04:00
Carsten "Tomcat" Book
e64cd11ad7
merge fx-team to mozilla-central
2014-05-21 13:57:43 +02:00
Wes Kocher
2dd3993d4d
Bug 991797 - convert most of the debugger frontend to use Task.jsm and fix discovered async errors r=victorporof
2014-05-20 15:55:39 -07:00
Victor Porof
ccd4120eb8
Bug 1013304 - Search for function definition doesn't work, r=fitzgen
2014-05-20 15:15:16 -04:00
Panos Astithas
0fec27ae48
Update browser_dbg_chrome-create.js according to the recent BrowserToolboxProcess refactoring (bug 918507). r=me
...
--HG--
extra : rebase_source : abb15c381e68687c80908b7a3393a5639f6ab704
2014-05-14 17:27:37 +03:00
James Long
45bdf8d8e1
Bug 986151 - Fix line number of breakpoints when added from context menu. r=past
2014-05-15 14:51:00 +02:00
Wes Kocher
738f9f9b41
Merge inbound to m-c
2014-05-15 15:59:45 -07:00
Blair McBride
0e3ff19f35
Bug 926712 - Use WebIDL to expose InstallTrigger, r=Mossop,bholley
2013-12-12 02:08:00 +00:00
Eddy Bruel
ae7c69fc2c
Bug 859372 - Refactor webbrowser.js;r=past
2014-05-13 21:56:30 +02:00
J. Ryan Stinnett
19db5518de
Bug 797639 - Part 2: Bulk data support in client and server. r=jimb
2014-05-14 14:30:02 -05:00
Shu-yu Guo
8f91f2c8db
Bug 717749 - Part 3: Terminate instead of resume debuggee script on tab closure. (r=past)
2014-05-20 18:27:25 -07:00
Shu-yu Guo
48684ab5b7
Bug 717749 - Part 2: Hook up the debugger to the slow script debug service. (r=past)
2014-05-20 18:27:25 -07:00
Victor Porof
51817819e7
Bug 1008395 - Fix failing tests caused by unintended stringification in the test suite, r=me
2014-05-10 13:20:50 -04:00
Victor Porof
96d48e8508
Bug 1008356 - The close button on watch expressions acts weirdly, r=bgrins
2014-05-09 16:19:58 -04:00
James Long
b1af6c044a
Bug 799077 - slide the breakpoint with a CSS transition when the server moves it r=past
2014-05-08 14:57:00 +02:00
Panos Astithas
7956ba8722
Add a debugger test for inspection of optimized out variables (bug 1002456). r=vporof
2014-05-08 18:26:28 +03:00
Victor Porof
2f98ee95fe
Bug 1006589 - (relanded) Hovering an identifier will sometimes remove the highlighting of the line where the debugger is paused, r=rcampbell
2014-05-08 22:14:42 -04:00
Ryan VanderMeulen
eff987d335
Backed out changeset b9e61c8bdf49 (bug 1002456) for mochitest-dt orange.
2014-05-08 16:10:16 -04:00
Ryan VanderMeulen
269dbe5b63
Merge m-c to fx-team.
2014-05-08 16:07:20 -04:00
Ryan VanderMeulen
ee0a788293
Merge fx-team to m-c.
2014-05-08 16:04:26 -04:00
Panos Astithas
acd8d39206
Add a debugger test for inspection of optimized out variables (bug 1002456). r=vporof
2014-05-08 22:09:29 +03:00
James Long
7741751893
Bug 995252 - Always remove a breakpoint and create a new one when setting the condition. r=past
2014-05-07 11:41:00 -04:00
Carsten "Tomcat" Book
dffe3e8f99
Backed out changeset df8bf3b71adb (bug 1006589) for frequent dt1 test failures
2014-05-08 09:26:29 +02:00
Victor Porof
3a2f5f8006
(no bug) Request longer timeout for browser_dbg_breakpoints-break-on-last-line-of-script-on-reload.js to hopefully fix timeouts while GC-ing after the test finishes on a CLOSED TREE, r=me
2014-05-07 13:43:10 -04:00
Victor Porof
0184e66ae2
Bug 1006666 - Increase the timeout required to show the variables inspection popup, r=rcampbell
2014-05-07 09:38:17 -04:00
Victor Porof
b301ea39a3
Bug 1006589 - Hovering an identifier will sometimes remove the highlighting of the line where the debugger is paused, r=rcampbell
2014-05-07 09:38:17 -04:00
Victor Porof
1404c7bd24
Bug 1006489 - Scopes in the debugger don't always reexpand after stepping, r=rcampbell
2014-05-07 09:38:16 -04:00
Dão Gottwald
2818e1245a
Bug 805068 - Make browser chrome tests more self-contained by giving each test a new blank tab. r=ttaubert
2014-05-07 15:08:05 +02:00
Sankha Narayan Guria
0816b8349c
Bug 957513 - DecimalIntegerLiteral cannot be 0 directly followed by 8 or 9. r=jorendorff, r=vp
2014-01-30 02:38:57 +05:30
Gavin Sharp
1b20b99c0a
Bug 896711: remove BrowserChromeTests.runWhenReady because it's being abused, r=dao/ttaubert/vporof
2013-07-27 17:32:40 -07:00
Ryan VanderMeulen
87e88accfb
Backed out changeset 2b48d8dcac21 (bug 995252) for linux debug mochitest-dt failures.
2014-05-01 17:05:34 -04:00
James Long
c209ffc94a
Bug 995252 - Conditional breakpoints are always hit. r=past
2014-04-30 11:42:00 -04:00
Jordan Santell
7d4d72eb3b
Bug 991762 - Hide picker tool when debugging addons. r=jryans
2014-04-30 10:48:00 -04:00
Dave Townsend
7f17ca3889
Bug 993029: Create an add-on console actor that will be displayed in the console tab of the add-on debugger. r=msucan, r=Unfocused, r=past
2014-05-01 08:36:01 -07:00
Eddy Bruel
2baf4e8ddf
Bug 859372 - Refactor script.js; r=past
2014-04-29 17:52:44 +02:00
Ryan VanderMeulen
a15492870d
Bug 986166 - Disable browser_dbg_variables-view-edit-click.js on Windows and OSX opt for frequent failures. r=vp
2014-04-27 15:07:18 -04:00
Wes Kocher
41bd0431d4
Backed out 7 changesets (bug 942756) for Gi bustage
...
Backed out changeset 87b1be303630 (bug 942756)
Backed out changeset eb385c85d88b (bug 942756)
Backed out changeset d234447173a8 (bug 942756)
Backed out changeset f7b85c252914 (bug 942756)
Backed out changeset 4e540736b330 (bug 942756)
Backed out changeset 824aec2863f5 (bug 942756)
Backed out changeset 43feed75916e (bug 942756)
2014-04-24 14:30:44 -07:00
Dave Townsend
6db9e6c28e
Bug 990074: Sources linked via the optionsURL in install.rdf do not show up in addon debugger. r=fitzgen
2014-04-24 14:16:46 -07:00
Nick Fitzgerald
d4458108bb
Bug 999854 - Rewrite browser_dbg_pretty-print-on-paused.js to use Task.spawn. r=vporof
2014-04-24 13:09:00 -04:00
Dave Townsend
0e0ec3c6f5
Backing out bug 990074 as we have to backout bug 990685
2014-04-24 13:04:40 -07:00
Paul Rouget
7ccb93167d
Bug 942756 - Unify debugger server startup: devtools and browser code. r=ochameau
2014-04-18 10:45:00 -04:00
Paolo Amadini
5824bdf058
Bug 995184 - Copy the legacy "promise.js" implementation from the Add-on SDK to devtools. r=past
2014-04-22 20:55:01 +01:00
Heather Arthur
7a88b6f747
Bug 993162 - Make default indent size 2 spaces. r=jwalker
2014-04-20 22:28:00 +02:00
Dave Townsend
3814d89cf2
Bug 997315: Verify that multiple calls to listTabs doesn't prematurely disconnect actors. r=panos
2014-04-18 08:20:49 -07:00
Dave Townsend
0de01b0f9c
Bug 990074: Sources linked via the optionsURL in install.rdf do not show up in addon debugger. r=fitzgen
2014-04-16 14:14:50 -07:00
Ryan VanderMeulen
3a8da37041
Bug 996003 - Various devtools test manifest cleanups. r=miker
2014-04-15 08:03:53 -04:00
Paolo Amadini
bc198d1062
Bug 995170 - Convert legacy uses of promise.js in devtools where this doesn't result in test failures. r=jwalker
2014-04-14 14:15:43 +01:00
Joe Walker
6148f170d7
Bug 984365 - Refactor and split out BuiltinCommands.jsm; r=mratcliffe,robcee,panos
...
BuiltinCommands.jsm was huge to avoid slowing things down by having many
modules loading.
To avoid splitting it up from slowing things down we want to delay loading
commands. Create [add|remove]ItemsByModule to allow us to lazily add modules,
and convert all command modules to use this.
Then break up BuiltinCommands into a set of files, for each command, and do
some refactoring to use JS files rather than JSMs and use "use strict".
--HG--
rename : browser/devtools/commandline/Commands.jsm => browser/devtools/commandline/commands-index.js
rename : browser/devtools/debugger/CmdDebugger.jsm => browser/devtools/debugger/debugger-commands.js
rename : browser/devtools/inspector/CmdInspect.jsm => browser/devtools/inspector/inspector-commands.js
rename : browser/devtools/responsivedesign/CmdResize.jsm => browser/devtools/responsivedesign/resize-commands.js
rename : browser/devtools/scratchpad/CmdScratchpad.jsm => browser/devtools/scratchpad/scratchpad-commands.js
rename : browser/devtools/styleeditor/CmdEdit.jsm => browser/devtools/styleeditor/styleeditor-commands.js
rename : browser/devtools/tilt/CmdTilt.jsm => browser/devtools/tilt/tilt-commands.js
2014-04-13 07:47:27 +01:00
Dave Townsend
364caa62f2
Bug 989374: Consolidate logic from browser_dbg_addon-* tests. r=fitzgen
2014-04-07 12:49:43 -07:00
Victor Porof
26c43cf1ec
Bug 991376 - The variables inspection popup shouldn't opening when hovering js literals. r=past
2014-04-02 19:38:07 -04:00
Jordan Santell
594efd07b8
Bug 991347 - Hide the displaying of the canvas editor when debugging an addon target. r=vp
2014-04-02 16:28:18 -07:00
James Long
b122e38819
Bug 812172 - Add conditional breakpoint handling to the debugger client. r=vp
2014-04-04 08:27:57 -04:00
Victor Porof
f3f0e07468
Relanding bug 991392 as a backout of changeset a192ea8b6fce because it has no tests and can't cause browser-chrome bustage, r=me
2014-04-04 03:13:45 -04:00
Wes Kocher
83eb7ca9eb
Backed out changeset a17657a71b01 (bug 991376) for pushing tests around, causing chunked browser-chrome bustage on a CLOSED TREE
2014-04-03 15:15:26 -07:00
Wes Kocher
bb3aade90a
Backed out changeset d53cc3ad38ec (bug 991392) for pushing tests around, causing chunked browser-chrome bustage on a CLOSED TREE
2014-04-03 15:14:53 -07:00
Panos Astithas
6929a22b3c
Bug 991112 - Disable RDP logging for faster tests. r=vporof
...
--HG--
extra : rebase_source : 4a5b5b8001a7a9e1bf0aae3ecd6bb600b6d15154
2014-04-03 18:22:49 +03:00
Panos Astithas
0cdb7c7b4a
Fix a typo in error reporting when attaching to the tracer (bug 989627). r=vporof
...
--HG--
extra : rebase_source : 59547f9b8f21bc4205b358701d1c9aa900049e81
2014-04-03 16:59:46 +03:00
Victor Porof
453fd4ebe3
Bug 991392 - Make the separator between the watch expressions and variables view visible in the debugger, r=past
2014-04-03 11:22:23 -04:00
Victor Porof
23f74dd497
Bug 991376 - The variables inspection popup shouldn't opening when hovering js literals, r=past
2014-04-03 11:22:23 -04:00
Mark Hammond
cae334e085
Bug 987404 - Disable failing mochitest-browser tests in e10s. r=ted.
2014-04-02 10:53:55 +11:00
Dave Townsend
20fd1dc8f4
Bug 986755: Add-on debugger should use the XPI hierarchy to group sources. r=fitzgen, r=ochameau
2014-03-31 10:19:15 -07:00
Phil Ringnalda
25ffcd7643
Back out 43663582cfdb (bug 987404) because it looks like it disabled things even without e10s being defined
2014-03-30 23:18:57 -07:00
Mark Hammond
cde2db8ab1
Bug 987404 - Disable failing mochitest-browser tests in e10s. r=ted.
2014-03-31 14:11:49 +11:00
Phil Ringnalda
38bc15c969
Merge f-t to m-c
2014-03-30 16:31:41 -07:00
Ehsan Akhgari
ef4775a74c
Bug 986286 - Double the test timeout
2014-03-30 09:51:02 -04:00
Ehsan Akhgari
c176610e51
Bug 987700 - Double the test timeout
2014-03-30 09:44:29 -04:00
Victor Porof
b566dac1b0
Bug 917226 - Build a canvas inspection tool, r=rcampbell, jryans
2014-03-29 13:01:37 -04:00
Jordan Santell
906440ab37
Bug 987890 - Hide unused tools when using addon debugger. r=jryans
2014-03-27 12:32:00 +01:00
Wes Kocher
3948825ebe
Merge fx-team to m-c
2014-03-27 20:07:56 -07:00