Patrick Brosset
d46128c9fc
Bug 917696 - Makes markup-view tag name edition go through the protocol; r=bgrins
2014-10-08 15:46:16 -07:00
Brian Grinstead
03ce1f7e86
Bug 920141 - Add support for inspecting anonymous content. r=pbrosset
...
--HG--
rename : browser/devtools/styleinspector/test/browser_ruleview_pseudo-element.js => browser/devtools/styleinspector/test/browser_ruleview_pseudo-element_01.js
2014-09-29 09:29:00 +02:00
Shu-yu Guo
320f4e1440
Bug 1001090 - Part 5: Fix errors in tests throughout the tree. (r=robcee,gavin)
2014-09-15 16:30:47 -07:00
Shu-yu Guo
285e8aa396
Bug 1001090 - Part 4: Fix errors in chrome code. (r=zombie,gavin,fitzgen,dcamp,bgrins,fabrice,gwagner,margaret,mrbkap,mak,njn,vicamo)
2014-09-15 16:30:46 -07:00
Patrick Brosset
b62b69386d
Bug 1063463 - Simplify how case is preserved when editing attributes in the inspector. r=bgrins
2014-09-08 08:30:00 -04:00
Brian Grinstead
1ffab17f17
Bug 1047148 - [markup view] Fix overlapping scrollbars when editing outer HTML in dark theme. r=past
2014-09-05 06:58:00 +02:00
Patrick Brosset
e38cf1f3da
Bug 1008584 - Preserve case when editing attributes in the inspector; r=bgrins
2014-09-04 10:28:24 +02:00
Michael Ratcliffe
671a5ddffd
Bug 1060933 - Prevent jQuery Live event bubbles from throwing on invalid selector r=bgrins
2014-09-02 16:26:32 +01:00
Michael Ratcliffe
eb0cf1b8ae
Bug 1059767 - browser_markupview_events-overflow.js: Fix precision error in alignment r=me
2014-08-28 14:29:55 +01:00
Michael Ratcliffe
7984c16b55
Bug 1044932 - Add JQuery support to visual events r=pbrosset
2014-08-28 12:46:25 +01:00
Sami Jaktholm
b692419a53
Bug 1041654 - Make ElementTooltip scrollable and scroll the event handler content into view when expanded. r=miker
2014-08-27 02:35:00 -04:00
Alexey Novak
fc7112d88a
Bug 1036297 - markupview updateNodeOuterHTML method jsdoc is incorrect and should return a promise, r=pbrosset
2014-08-21 12:59:53 -04:00
Patrick Brosset
2e9dede6bb
Bug 1000716
- Intermittent race condition in markupview/test/browser_markupview_mutation_02.js. r=miker
2014-08-11 04:43:00 -04:00
Michael Ratcliffe
bd7231359e
Bug 1041284 - Fix GC issues and re-enable browser_markupview_events.js r=jwalker
2014-08-07 22:35:19 +01:00
Daniel Holbert
54bcb09759
Bug 1032922 part 2: Rename flex-basis's "auto" keyword to "main-size" (but retain "flex:auto" as shorthand for "1 1 main-size"). r=heycam
2014-08-07 22:11:48 -07:00
Nathan Froyd
4246e6b6ea
Bug 1044162 - part 1 - make EXTRA_{PP_,}JS_MODULES communicate their installation path; r=mshal
...
This patch makes EXTRA_{PP_,}JS_MODULES similar in functionality to
TESTING_JS_MODULES: we indicate the path relative to
$(FINAL_TARGET)/modules with an appropriate hierarchy of paths.
2014-07-25 13:40:07 -04:00
Nathan Froyd
c8b5989c88
Bug 1043957 - remove some libs:: rules from devtools's Makefile.ins; r=mshal
2014-07-25 09:38:15 -04:00
Michael Ratcliffe
3367105733
Bug 736078 - Show which elements have listeners attached r=jwalker,bgrins
2014-07-20 12:03:59 +01:00
Michael Ratcliffe
f83b0e464a
Backed out changeset 89669f18bd2d (bug 736078) for dt test timeouts
2014-07-19 23:36:56 +01:00
Michael Ratcliffe
f6179a1afd
Bug 736078 - Show which elements have listeners attached r=jwalker,bgrins
2014-07-18 14:25:03 +01:00
Michael Ratcliffe
1f3e49f334
Bug 994732 - Make "Disable Cache" in Devtools persist (only when the toolbox is open) r=jwalker, r=pbrosset
2014-07-17 10:39:56 +01:00
Patrick Brosset
0d71b8765b
bug 1034601 - Enable devtools/markupview tests with e10s; r=bgrins
2014-07-16 22:17:30 +02:00
Michael Ratcliffe
cf7da6026b
Bug 1032721 - Re-enable browser_inspector_infobar.js when oranges are fixed r=pbrosset
...
--HG--
rename : browser/devtools/inspector/test/browser_inspector_infobar.js => browser/devtools/inspector/test/browser_inspector_infobar_01.js
2014-07-12 20:20:28 +01:00
Brian Grinstead
0db29c76bc
Bug 1031472 - Automatically reload all preferences in source editor. r=vporof,harth
2014-07-07 13:52:00 +02:00
Patrick Brosset
2073828ccc
bug 971662 - part 0 - The BoxModelHighlighter has options for drawing regions and guides; r=miker
2014-06-25 16:40:34 +02:00
Jim Blandy
4d6a633bba
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
Patrick Brosset
6ff5237f36
Bug 1023116 - Always briefly highlight nodes upon selection in the markup-view; r=bgrins
2014-06-23 17:20:01 +02:00
Patrick Brosset
4b6956a7aa
Bug 1025880 - Avoid highlighting the default selection when the page is reloaded or when the inspector is opened; r=miker
2014-06-17 13:50:41 +02:00
Vikneshwar
2f2adc483b
Bug 1003546 - Use Arrow function instead of bind(). r=fitzgen
2014-06-14 06:49:00 -04:00
Brian Grinstead
d9e8bec862
Bug 1022780 - Cmd+H triggers 'hide markup', should only be triggered by H. r=pbrosset
2014-06-16 07:43:00 -04:00
Patrick Brosset
a77341d73c
Bug 1014547 - Add a css transform highlighter to the style-inspector; r=bgrins
2014-06-13 16:27:10 +02:00
Patrick Brosset
efc01eeb80
Bug 911209 - Display hidden nodes differently in the markup-view; r=miker
2014-06-05 14:50:03 +02:00
Carsten "Tomcat" Book
369ae9d73c
Backed out changeset 52068b669c2a (bug 911209) for causing type errors in tests
2014-06-05 08:55:26 +02:00
Patrick Brosset
ddcc616c4b
Bug 911209 - Display hidden nodes differently in the markup-view; r=miker
2014-06-04 21:42:16 +02:00
Tim Nguyen
302f053146
Bug 1015627 - Inspector markup preview doesn't match devtools theme. r=bgrins
2014-05-29 08:34:00 -04:00
vikneshwar
9c279cbd96
Bug 970962 - Use the default cursor in the markup-view. r=pbrosset
2014-05-12 13:56:00 -04:00
Paolo Amadini
60d8bb5bf9
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
Patrick Brosset
b96afb81d8
Bug 997622 - Expand all descendant nodes on alt-click in markup-view; r=jwalker
2014-04-17 23:39:29 +02:00
Ryan VanderMeulen
5ccec8d240
Bug 996003 - Various devtools test manifest cleanups. r=miker
2014-04-15 08:03:53 -04:00
Michael Ratcliffe
30e00019be
Bug 988102 - Opening inspector scrolls the content page all the way to the top;r=bgrins
2014-04-14 15:33:06 +01:00
Michael Ratcliffe
e7dad953b0
Bug 983948 - Add mach mochitest-devtools r=jmaher
2014-03-25 16:52:53 +00:00
Mark Hammond
cd2c8e6c5b
Bug 987404 - Disable failing mochitest-browser tests in e10s. r=ted.
2014-04-02 10:53:55 +11:00
Alexandre Poirot
b4fa706e67
Bug 977043 - Prevent markupview from breaking selection. r=jwalker
2014-03-22 09:02:14 +01:00
Patrick Brosset
f45c17576e
Bug 968727 - Move common test runner parts in external helper files; r=bgrins
2014-03-26 14:38:06 +01:00
Girish Sharma
6b69f7e325
Bug 912189 - Show CSS value autocomplete without waiting for first character, r=mratcliffe
2014-03-25 20:43:44 +05:30
Patrick Brosset
34dd9a47f8
Bug 968727 - Split the markupview bc attribute edition test; r=bgrins
2014-03-25 09:55:18 +01:00
Patrick Brosset
73f8035822
Bug 968727 - Split browser_inspector_markup_add_attributes.js to avoid timeouts;r=bgrins
2014-03-25 09:55:15 +01:00
Patrick Brosset
b0c60f46e0
Bug 968727 - Renaming all markupview tests to be more consistent; r=bgrins
...
--HG--
rename : browser/devtools/markupview/test/browser_inspector_markup_964014_copy_image_data.js => browser/devtools/markupview/test/browser_markupview_copy_image_data.js
rename : browser/devtools/markupview/test/browser_bug896181_css_mixed_completion_new_attribute.js => browser/devtools/markupview/test/browser_markupview_css_completion_style_attribute.js
rename : browser/devtools/markupview/test/browser_inspector_markup_968316_highlit_node_on_hover_then_select.js => browser/devtools/markupview/test/browser_markupview_highlight_hover_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_968316_highlight_node_after_mouseleave_mousemove.js => browser/devtools/markupview/test/browser_markupview_highlight_hover_02.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_outerhtml.js => browser/devtools/markupview/test/browser_markupview_html_edit_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_outerhtml3.js => browser/devtools/markupview/test/browser_markupview_html_edit_02.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_outerhtml2.js => browser/devtools/markupview/test/browser_markupview_html_edit_03.js
rename : browser/devtools/markupview/test/browser_inspector_markup_765105_tooltip.js => browser/devtools/markupview/test/browser_markupview_image_tooltip.js
rename : browser/devtools/markupview/test/browser_inspector_markup_mutation.js => browser/devtools/markupview/test/browser_markupview_mutation_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_mutation_flashing.js => browser/devtools/markupview/test/browser_markupview_mutation_02.js
rename : browser/devtools/markupview/test/browser_inspector_markup_navigation.js => browser/devtools/markupview/test/browser_markupview_navigation.js
rename : browser/devtools/markupview/test/browser_inspector_markup_subset.js => browser/devtools/markupview/test/browser_markupview_pagesize_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_950732.js => browser/devtools/markupview/test/browser_markupview_pagesize_02.js
rename : browser/devtools/markupview/test/browser_inspector_markup_962647_search.js => browser/devtools/markupview/test/browser_markupview_search_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit.js => browser/devtools/markupview/test/browser_markupview_tag_edit_01.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_2.js => browser/devtools/markupview/test/browser_markupview_tag_edit_02.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_3.js => browser/devtools/markupview/test/browser_markupview_tag_edit_03.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit_4.js => browser/devtools/markupview/test/browser_markupview_tag_edit_04.js
rename : browser/devtools/markupview/test/browser_inspector_markup_add_attributes.js => browser/devtools/markupview/test/browser_markupview_tag_edit_05.js
rename : browser/devtools/markupview/test/browser_inspector_markup_edit.html => browser/devtools/markupview/test/doc_markup_edit.html
rename : browser/devtools/markupview/test/browser_inspector_markup_mutation_flashing.html => browser/devtools/markupview/test/doc_markup_flashing.html
rename : browser/devtools/markupview/test/browser_inspector_markup_mutation.html => browser/devtools/markupview/test/doc_markup_mutation.html
rename : browser/devtools/markupview/test/browser_inspector_markup_navigation.html => browser/devtools/markupview/test/doc_markup_navigation.html
rename : browser/devtools/markupview/test/browser_inspector_markup_subset.html => browser/devtools/markupview/test/doc_markup_pagesize_01.html
rename : browser/devtools/markupview/test/browser_inspector_markup_950732.html => browser/devtools/markupview/test/doc_markup_pagesize_02.html
rename : browser/devtools/markupview/test/browser_inspector_markup_962647_search.html => browser/devtools/markupview/test/doc_markup_search.html
rename : browser/devtools/markupview/test/browser_inspector_markup_765105_tooltip.png => browser/devtools/markupview/test/doc_markup_tooltip.png
2014-03-25 09:55:12 +01:00
Patrick Brosset
283de4fb06
Bug 968727 - Split browser/devtools/markupview/test/browser_inspector_markup_edit_outerhtml.js to avoid timeouts; r=bgrins
2014-03-25 09:55:09 +01:00
Patrick Brosset
73fb82034c
Bug 968727 - Cleans up all markupview tests for consistency and to reduce file sizes; r=bgrins
2014-03-25 09:55:05 +01:00