Commit Graph

152 Commits

Author SHA1 Message Date
Jordan Santell
eca2d5dd6d Bug 1173775 - Tests for bug 1173775. r=vporof 2015-10-06 15:50:19 -07:00
Nounours Heureux
deaa9d66e2 Bug 1173775 - Right-clicking a file in the call tree doesn't open it anymore. r=jsantell
From 6615e770e8c00ee4f4dfb3fbdd5d12e2032c9161 Mon Sep 17 00:00:00 2001
2015-10-06 15:48:00 -07:00
J. Ryan Stinnett
8895ab83f5 Bug 1212653 - Fix Simulator.jsm exports. r=ochameau 2015-10-09 12:11:45 -05:00
J. Ryan Stinnett
4b5d595d49 Backout "Bug 1196047 - Fix Simulator.jsm exports. r=ochameau", wrong bug. 2015-10-09 12:09:04 -05:00
rocik
2099fd3d90 Bug 1070719 - Autosave project files before running. r=jryans 2015-10-09 12:06:20 -05:00
J. Ryan Stinnett
5d422da967 Bug 1196047 - Fix Simulator.jsm exports. r=ochameau 2015-10-09 12:04:30 -05:00
Carsten "Tomcat" Book
450968343c Merge m-c to fx-team 2015-10-09 14:33:28 +02:00
Carsten "Tomcat" Book
13543931d2 merge mozilla-inbound to mozilla-central a=merge 2015-10-09 11:43:07 +02:00
Patrick Brosset
8a9f8327ac Bug 1211810 - Add a way to lock the highlighter on animated nodes from animation-inspector; r=tromey 2015-10-09 10:44:53 +02:00
Tom Tromey
a63811b692 Bug 1124210 - preserve color case when using color picker; r=mratcliffe 2015-10-08 07:54:00 +02:00
J. Ryan Stinnett
d494e7d87b Bug 1210956 - Clean up missed theme references after migration. r=bgrins 2015-10-08 13:43:05 -05:00
Avik Pal
15a1b4198b Bug 1157789 - Add a test for the Inspector's collapse/expandAll context menu items. r=janx 2015-10-07 11:33:00 +02:00
Tom Tromey
cd279eacf2 Bug 965181 - respect default color unit when choosing a color. r=mratcliffe 2015-10-07 12:04:00 +02:00
Eddy Bruel
5187915039 Bug 1205305 - Fix a race condition in browser_dbg_server-conditional-bp-02.js;r=jlong 2015-10-08 16:33:37 +02:00
Carsten "Tomcat" Book
cc5cc0661d Merge m-c to fx-team 2015-10-08 16:11:56 +02:00
Carsten "Tomcat" Book
c3a4faf573 merge mozilla-inbound to mozilla-central a=merge 2015-10-08 15:26:54 +02:00
Wes Kocher
c9c7d06d9a Merge m-c to fx-team a=merge 2015-10-07 11:33:10 -07:00
Wes Kocher
09022f945d Merge inbound to m-c a=merge 2015-10-07 10:29:41 -07:00
Wes Kocher
fcbfeca36b Backed out changeset 1f51d1614b9a (bug 1207245) 2015-10-07 10:19:31 -07:00
Wes Kocher
b3e106628e Backed out changeset 91d4539e00ce (bug 1207245) 2015-10-07 10:19:19 -07:00
Wes Kocher
94e8c72c6d Merge fx-team to central, a=merge 2015-10-07 09:58:09 -07:00
Nathan Froyd
806d8619d3 Bug 1207245 - part 6 - rename nsRefPtr<T> to RefPtr<T>; r=ehsan; a=Tomcat
The bulk of this commit was generated with a script, executed at the top
level of a typical source code checkout.  The only non-machine-generated
part was modifying MFBT's moz.build to reflect the new naming.

 # The main substitution.
find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    xargs perl -p -i -e '
 s/nsRefPtr\.h/RefPtr\.h/g; # handle includes
 s/nsRefPtr ?</RefPtr</g;   # handle declarations and variables
'

 # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h.
perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h

 # Handle nsRefPtr.h itself, a couple places that define constructors
 # from nsRefPtr, and code generators specially.  We do this here, rather
 # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename
 # things like nsRefPtrHashtable.
perl -p -i -e 's/nsRefPtr/RefPtr/g' \
     mfbt/nsRefPtr.h \
     xpcom/glue/nsCOMPtr.h \
     xpcom/base/OwningNonNull.h \
     ipc/ipdl/ipdl/lower.py \
     ipc/ipdl/ipdl/builtin.py \
     dom/bindings/Codegen.py \
     python/lldbutils/lldbutils/utils.py

 # In our indiscriminate substitution above, we renamed
 # nsRefPtrGetterAddRefs, the class behind getter_AddRefs.  Fix that up.
find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \
    xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g'

if [ -d .git ]; then
    git mv mfbt/nsRefPtr.h mfbt/RefPtr.h
else
    hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h
fi
2015-10-07 16:50:25 -04:00
Nathan Froyd
34d7cd6c43 Bug 1207245 - part 3 - switch all uses of mozilla::RefPtr<T> to nsRefPtr<T>; r=ehsan
This commit was generated using the following script, executed at the
top level of a typical source code checkout.

 # Don't modify select files in mfbt/ because it's not worth trying to
 # tease out the dependencies currently.
 #
 # Don't modify anything in media/gmp-clearkey/0.1/ because those files
 # use their own RefPtr, defined in their own RefCounted.h.
find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \
    grep -v 'mfbt/RefPtr.h' | \
    grep -v 'mfbt/nsRefPtr.h' | \
    grep -v 'mfbt/RefCounted.h' | \
    grep -v 'media/gmp-clearkey/0.1/' | \
    xargs perl -p -i -e '
 s/mozilla::RefPtr/nsRefPtr/g; # handle declarations in headers
 s/\bRefPtr</nsRefPtr</g; # handle local variables in functions
 s#mozilla/RefPtr.h#mozilla/nsRefPtr.h#; # handle #includes
 s#mfbt/RefPtr.h#mfbt/nsRefPtr.h#;       # handle strange #includes
'

 # |using mozilla::RefPtr;| is OK; |using nsRefPtr;| is invalid syntax.
find . -name '*.cpp' -o -name '*.mm' | xargs sed -i -e '/using nsRefPtr/d'

 # RefPtr.h used |byRef| for dealing with COM-style outparams.
 # nsRefPtr.h uses |getter_AddRefs|.
 # Fixup that mismatch.
find . -name '*.cpp' | \
    xargs perl -p -i -e 's/byRef/getter_AddRefs/g'
2015-10-07 15:05:02 -04:00
Carsten "Tomcat" Book
a34de61b50 Backed out 6 changesets (bug 1132203) for e10s-dt2 test failures
Backed out changeset d6e2d567d8c3 (bug 1132203)
Backed out changeset 8a90df6a9ae7 (bug 1132203)
Backed out changeset 0677c5169e05 (bug 1132203)
Backed out changeset f3023ebc9881 (bug 1132203)
Backed out changeset f00c53c8ffd4 (bug 1132203)
Backed out changeset 2a6416177736 (bug 1132203)
2015-10-07 15:35:31 +02:00
Carsten "Tomcat" Book
9f1c0bf17d Backed out 2 changesets (bug 1202902) to recking bug 1202902 to be able to reopen inbound on a CLOSED TREE
Backed out changeset 647025383676 (bug 1202902)
Backed out changeset d70c7fe532c6 (bug 1202902)
2015-10-07 14:03:21 +02:00
Sebastian Hengst
378b7180e7 Backed out changeset c6b267589d0d (bug 1202902) for Mulet Reftest, W3C Platform Test and other failures. r=backout a=backout on a CLOSED TREE 2015-10-07 13:36:26 +02:00
Tom Tromey
78e5ea1e2a Bug 1195995 - merge css-tokenizer into css-parsing-utils; r=mratcliffe 2015-10-06 10:13:00 -04:00
Brian Grinstead
e084f4b9a3 Bug 1210954 - Move devtools variables into a single variables.css file;r=jryans;r=jsantell 2015-10-07 08:19:44 -07:00
Brian Grinstead
468c58a9d3 Bug 1198039 - Don't modify the DOM after dragging an element and putting it back where it started;r=pbrosset 2015-10-07 08:19:09 -07:00
Jan Odvarko
979a8ebb97 Bug 1132203 - Fixing theme and intermittent test failure; r=jryans 2015-10-05 13:14:07 +02:00
Tom Tromey
fd7cfc2b95 Bug 984880 - as-authored styles in the rule view; r=pbrosset,r=bgrins 2015-10-06 09:35:31 -07:00
Patrick Brosset
334371cbfd Bug 1197100 - 3 - Remove code duplication in animation actor tests; r=miker 2015-09-29 16:43:48 +02:00
Patrick Brosset
4ea0cf8d0f Bug 1197100 - 2 - Rename all animation actor tests so the filenames actually make sense; r= miker 2015-09-29 15:51:23 +02:00
Patrick Brosset
0504434ab1 Bug 1197100 - 1 - Add getFrames method to the AnimationPlayerActor; r=miker 2015-09-29 14:53:15 +02:00
Patrick Brosset
74f841a8a1 Bug 1211796 - Do not convert CSS filters to computed values before opening the Filter Widget; r=tromey 2015-10-06 10:29:55 +02:00
Brian Grinstead
ec703b86f5 Bug 1211017 - Show URL as the title in worker toolboxes;r=ejpbruel 2015-10-06 08:04:36 -07:00
Jan Odvarko
bc07f1e288 Bug 1132203 - Load JSON viewer only for top level documents; r=bz 2015-09-28 13:48:33 +02:00
Jan Odvarko
608cbebbbc Bug 1132203 - Load JSON viewer dynamically on demand; r=jryans 2015-09-28 13:34:03 +02:00
Jan Odvarko
44cfe0bcf1 Bug 1132203 - Tests for JSON Viewer; r=jryans 2015-09-28 13:33:45 +02:00
Jan Odvarko
522a672e19 Bug 1132203 - JSON Viewer for application/json documents; r=jlong 2015-09-28 13:33:20 +02:00
Jan Odvarko
0af766d08c Bug 1132203 - Libs for JSON Viewer; r=jlong 2015-09-28 13:32:37 +02:00
Jennifer Fong
9d074e663a Bug 1209641 - Remove dropdown layout and use sidebars layout. r=jryans 2015-10-06 14:52:00 +02:00
Raphaël Lustin
7fd23cd79a Bug 1209023 - Debugger tabs should handle longer labels correctly. r=pbrosset 2015-10-05 09:29:00 +02:00
Jordan Santell
d938e964e0 Bug 1155295 - Fix off-center search clear button in devtools. r=bgrins 2015-10-06 16:26:00 +02:00
Tom Tromey
427ab7b5da Bug 1195357 - make stringifyProperty escape text for CSS comment; r=pbrosset 2015-09-28 09:49:00 +02:00
Manav Batra
610ad12fae Bug 1206426 - Updated WebIDE's unrestricted help URL. r=jryans 2015-10-05 13:32:46 -05:00
Carsten "Tomcat" Book
9eaa0d1abc Backed out 1 changesets (bug 1202902) for causing merge conflicts to mozilla-central
Backed out changeset cfc1820361f5 (bug 1202902)
2015-10-07 12:13:45 +02:00
Johan K. Jensen
f49e3afe8b Bug 1207544 - Rename DPI to DPR in schreenshot gcli. r=jryans 2015-09-23 16:46:34 +02:00
J. Ryan Stinnett
b31dc69bb4 Bug 1209634 - Reformat target.js to match ESLint rules. r=past 2015-10-01 18:13:24 -05:00
J. Ryan Stinnett
bc83a3adfb Bug 1209634 - Remove unused target.version. r=past 2015-10-01 18:13:24 -05:00