Bill McCloskey
4294ba062f
Bug 1202897 - Switch all WebExtension tests to use generated zip files rather than files (r=gabor)
2015-10-12 16:19:50 -07:00
Carsten "Tomcat" Book
5d6145c365
merge mozilla-inbound to mozilla-central a=merge
2015-10-12 11:57:06 +02:00
Henrik Tjäder
3572110942
Bug 1209912 - Use JSON.parse instead of nsIJSON.decode in Telemetry tests. r=Dexter
2015-10-07 22:08:20 +02:00
Hassen ben tanfous
261e9d3d17
Bug 1074804 - Replace arrays .indexOf with .includes in Places. r=mak
2015-10-11 20:24:32 +02:00
Wes Kocher
3ec75441bb
Merge m-c to fx-team, a=merge
2015-10-09 16:46:49 -07:00
Neil Deakin
06c3d03c43
Bug 1131626, fix autoscroll tests to work in e10s, r=felipe
2015-10-09 08:50:13 -04:00
Neil Deakin
bf2cc207f4
Bug 1173330, fix to use content tasks and BrowserTestUtils, and reenable browser_bug638292.js, r=felipe
2015-10-09 08:50:13 -04:00
Neil Deakin
a589e2d932
Bug 1200870, allow -1 as a value to popup.moveTo, r=tn
2015-10-09 08:50:13 -04:00
Honza Bambas
7033e80df1
Bug 1165269 - Use OriginAttributes in nsILoadContextInfo, r=michal+allstars
2015-10-11 18:13:09 +02:00
Tom Schuster
bdd64bc886
Bug 1208907 - [webext] Partially implement browser.bookmarks. r=billm f=mak
2015-10-11 16:41:21 +02:00
Vladan Djeric
17f617693f
Backed out changeset 5d1ec6ca9374 (bug 1193341) for Talos regressions (bug 1213364)
2015-10-11 00:26:26 -04:00
Steffen Wilberg
76d678723f
Bug 1119049 - Keyboard shortcuts should work in MediaDocuments without explicitly focusing the media element. r=bz
2015-10-04 13:04:55 +02:00
Wes Kocher
6ad5188753
Merge m-c to fx-team, a=merge
2015-10-08 14:36:57 -07:00
Wes Kocher
1b7cf6d302
Merge inbound to central, a=merge
2015-10-08 14:29:04 -07:00
J. Ryan Stinnett
30736fdbf2
Bug 1212153 - Clean up Cu.isModuleLoaded after migration. r=bgrins
2015-10-08 15:25:23 -05:00
Jared Wein
587f896baa
Bug 1210033 - Add on-screen keyboard diagnostic information to about:support. r=masayuki r=felipe
2015-10-08 11:51:47 -04: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
Carsten "Tomcat" Book
65f40b9fe0
Merge m-c to mozilla-inbound
2015-10-08 16:11:21 +02:00
Michael Layzell
6d4f81f006
Bug 1183355 - Annotate crash reports triggered by MOZ_CRASH in release builds, r=froydnj
2015-10-08 10:01:08 -04:00
Carsten "Tomcat" Book
d3d7a667f0
merge fx-team to mozilla-central a=merge
2015-10-08 11:55:31 +02:00
Mark Capella
0c641467b6
Bug 1130646 - Find non-hacky way to make back button dismiss reader mode popup, r=bnicholson
2015-10-07 19:55:33 -04:00
Fabrice Desré
4576919f87
Bug 1212089 - Cookies API broken on b2g r=billm
2015-10-07 12:05:58 -07:00
Paolo Amadini
a2839faea9
Bug 1193341 - Detect presence of password fields in any subframe, flagging those on insecure connections. r=MattN
2015-10-07 19:51:33 +01: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
Dave Townsend
612d78bf35
Bug 1212059: Don't require shipped system add-ons to be signed, always require updated system add-ons to be signed. r=rhelmer
2015-10-07 10:29:18 -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
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
Alessio Placitelli
d2a3a48d1a
Bug 1211404 - Update the documentation. r=gfritzsche
2015-10-07 01:16:00 +02:00
Alessio Placitelli
199423f245
Bug 1211404 - Add test coverage. r=gfritzsche
2015-10-07 01:17:00 +02:00
Kit Cambridge
d74f05db52
Bug 1202933, Part 1 - Show the origin for XUL notifications. r=MattN,wchen
2015-10-05 19:45:04 -07:00
Jed Davis
c4b5dfb005
Bug 1201935 - Allow reading from TmpD in OS X content processes. r=smichaud
2015-10-07 13:41:00 +02:00
Alessio Placitelli
432e4475f9
Bug 1211404 - Limit the length of addon description (& other text fields) in Telemetry. r=gfritzsche
2015-10-05 10:29:00 +02:00
Dave Townsend
9ffa72eef7
Bug 1192928: Purge outdated system add-ons. r=rhelmer
2015-09-28 16:16:10 -07:00
Wes Kocher
0c22ebf1e0
Merge fx-team to central, a=merge
2015-10-06 12:07:33 -07:00
Carsten "Tomcat" Book
ffbba683df
Merge m-c to mozilla-inbound
2015-10-06 12:21:45 +02:00
Carsten "Tomcat" Book
6e46667c14
merge mozilla-inbound to mozilla-central a=merge
2015-10-06 12:01:35 +02:00
Wes Kocher
db56810f49
Backed out 6 changesets (bug 1110511) for automation timeouts in mochitest-bc suites
...
Backed out changeset eddfd7f32a1c (bug 1110511)
Backed out changeset 0eb0dda094b3 (bug 1110511)
Backed out changeset 8e20cd68ca78 (bug 1110511)
Backed out changeset c7b983f65568 (bug 1110511)
Backed out changeset 219d86f78b6b (bug 1110511)
Backed out changeset 0e055b648e10 (bug 1110511)
2015-10-05 16:38:03 -07:00
Phil Ringnalda
02723e0858
Back out 2 changesets (bug 1202933) for Mulet timeouts in test_alerts.html
...
CLOSED TREE
Backed out changeset fbcc1bb170e9 (bug 1202933)
Backed out changeset 1763e1484065 (bug 1202933)
2015-10-05 18:41:00 -07:00
Kit Cambridge
9f9cb0fe35
Bug 1202933, Part 1 - Show the origin for XUL notifications. r=MattN,wchen
2015-10-05 11:49:22 -07:00
Gijs Kruitbosch
d5a7cc7557
Bug 1211255 - fix downloads on fennec, r=mak
2015-10-05 13:55:22 +01:00
Mike Conley
1a329623c1
Bug 1110511 - Move tab-crashing test helper function to BrowserTestUtils.jsm r=felipe
2015-09-29 16:44:50 -04:00
Mike Conley
4859e86f4f
Bug 1110511 - Add comment and email input to about:tabcrashed. r=felipe,ntim
...
Original patch by Ursula Sarracini
2015-09-30 17:50:48 -04:00
Mike Conley
54c5fbc0c6
Bug 1110511 - Fix erroneous references to html|textbox in in-content's common.css. r=ntim
2015-10-01 14:53:09 -04:00
Xidorn Quan
f5828ec8d1
Bug 1196247 - Hide findbar without animation when entering DOM fullscreen. r=mikedeboer
2015-10-07 16:53:43 +11:00
Matthew Noorenberghe
a81b210217
Bug 1208295 - Show an additional action on OS X notifications to open notification settings. r=mstange
2015-09-25 13:18:29 -07:00