Commit Graph

228264 Commits

Author SHA1 Message Date
Cykesiopka
646544ea00 Bug 897690 - Remove misleading error message from AppendErrorTextUntrusted. r=dkeeler 2015-02-09 03:50:00 +01:00
Jonathan Kew
281856cac3 Bug 1127935 - Check for null when trying to load 'head' table, to avoid crashing on non-sfnt fonts. r=jdaggett 2015-02-10 09:18:23 +00:00
Robert Longson
4857d974f4 Bug 1108887 - Backout part 3 and part 4 of bug 949435 (SVG iframe). r=birtles sr=bzbarsky 2015-02-10 09:14:19 +00:00
Bob Owen
d7507fde77 Bug 1129369 Part 3: Turn on MITIGATION_STRICT_HANDLE_CHECKS process-level mitigation for the GMP sandbox. r=tabraldes 2015-02-10 09:06:59 +00:00
Bob Owen
5a5232342f Bug 1129369 Part 2: Turn on BOTTOM_UP_ASLR process-level mitigation for the GMP sandbox. r=tabraldes 2015-02-10 09:06:59 +00:00
Bob Owen
9aff5c26a7 Bug 1129369 Part 1: Turn on DEP_NO_ATL_THUNK process-level mitigation for the GMP sandbox. r=tabraldes 2015-02-10 09:06:59 +00:00
Jan de Mooij
25210150e8 Bug 1128196 - Don't relazify scripts with a TypeScript. r=till 2015-02-10 09:40:46 +01:00
Ian Moody
f36067225d Bug 1096800 - Default sans-serif font for zh-CN on windows is mapped to SimSun, which is actually a serif font. r=jdaggett 2015-02-10 17:18:32 +09:00
Masayuki Nakano
b9ddb90367 Bug 1131026 Rename nsITextInputProcessor.init() and .initForTests() to .beginInputTransaction() and .beginInputTransactionForTests() r=smaug, sr=smaug 2015-02-10 17:09:29 +09:00
Tooru Fujisawa
52353f4e95 Bug 1130785 - Fix JS_HAS_EXPR_CLOSURES macro conditions. r=shu 2015-02-10 17:06:07 +09:00
JW Wang
088fb91a19 Bug 1114826 - run test_eme_persistent_sessions.html tests after MediaKeySession.update() to avoid collision with MediaKeySession.load(). r=edwin. 2015-02-08 09:54:37 +08:00
Seth Fowler
79b866737f Bug 1129804 - Flip on decode-on-draw on B2G. r=me 2015-02-04 23:26:54 -08:00
Seth Fowler
59f6986711 Bug 1130707 - Make decode-on-draw-only image notifications more robust. r=tn 2015-02-09 23:50:30 -08:00
Seth Fowler
9c9d5eb0e3 Bug 1128769 (Part 6) - Remove imgIContainer::IsDecoded and all remaining callers. r=tn 2015-02-09 23:27:40 -08:00
Seth Fowler
cb06cfa609 Bug 1128769 (Part 5) - Record the last draw result for various less common frame types and use it to decide whether to sync decode. r=tn 2015-02-09 23:27:40 -08:00
Seth Fowler
5691ed0bdf Bug 1128769 (Part 4) - Record the last draw result when drawing CSS tables and use it to decide whether to sync decode. r=tn 2015-02-05 20:45:56 -08:00
Seth Fowler
ce51811229 Bug 1128769 (Part 3) - Record the last draw result when drawing CSS backgrounds and use it to decide whether to sync decode. r=tn 2015-02-09 23:27:39 -08:00
Seth Fowler
f1c8371d33 Bug 1128769 (Part 2) - Check if we invalidated for a sync decode and never painted before invalidating for sync decoding again. r=tn 2015-02-09 23:27:39 -08:00
Seth Fowler
9ed0183fa8 Bug 1128769 (Part 1) - Propagate the imgIContainer::Draw result through the nsLayoutUtils::PaintBackground* functions. r=tn 2015-02-09 23:27:39 -08:00
Shu-yu Guo
a320cde27c Bug 1130698 - Fix spewing constructors for optimization tracking. (r=djvj) 2015-02-09 18:23:52 -08:00
Shu-yu Guo
20cf051e39 Bug 1129781 - Re-lookup JIT code return addr when stringifying optimization info instead of caching the index. (r=djvj)
This saves us some circular buffer space.
2015-02-09 18:11:19 -08:00
Shu-yu Guo
47cc84e1cb Bug 1130756 - Set BaselineFrame's isDebuggee flag before any operation that can re-enter the VM. (r=jandem) 2015-02-09 18:11:19 -08:00
L. David Baron
758cb58c30 Bug 680547 bustage fix: Make #pragmas be #ifndef __clang__. No review. 2015-02-10 16:24:54 +11:00
L. David Baron
562f07be92 Bug 680547 - Compile Linux 64-bit NS_InvokeByIndex with -mno-avx to allow compiling with -march=native on new hardware, or similar -march flags. r=froydnj
As explained in bug 1111355, having avx enabled appears to change the
alignment behavior of alloca (apparently adding an extra 16 bytes) of
padding/alignment (and using 32-byte alignment instead of 16-byte).  The
suggestion of using __bultin_alloca_with_align in bug 1111355 didn't fix
the problem, so this seems to be the best available workaround, given
that this code, which should perhaps better be written in assembly, is
written in C++.

Interestingly, this is NOT fixed by #pragma GCC target ("arch=x86-64").
(I determined the (undocumented) name for the default -march value on
x86_64 from the gcc source code (gcc/config/i386/i386.c, function
ix86_option_override_internal, code that sets opts->x_ix86_arch_string .)
I confirmed that this sets the same macros based on the empty diff
between the output of 'gcc -E -dM -x c++ /dev/null' and 'gcc -E -dM -x
c++ -march=x86-64 /dev/null', which was not an empty diff for other
-march values (e.g., k8).)

I confirmed that the push_options and pop_options actually work by
putting the push/pop pair around a different (earlier) function, and
testing that this did not fix the bug (with the pop_options before
NS_InvokeByIndex).

See the gcc documentation at:
https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Function-Specific-Option-Pragmas.html
https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/Function-Attributes.html
https://gcc.gnu.org/onlinedocs/gcc-4.9.0/gcc/i386-and-x86-64-Options.html
2015-02-10 16:04:46 +11:00
Tooru Fujisawa
3e5a6c0423 Bug 1025184 - Make ConstTwoByteChars a Range. r=jandem 2015-02-10 12:52:18 +09:00
Chris Peterson
9186f895f2 Bug 1093721 - Avoid ReferenceError when trying to instantiate Components.classes['@mozilla.org/app-migrator;1']. r=qdot 2015-02-08 13:48:29 -08:00
Chris Peterson
52d498dc7b Bug 1130828 - Fix clang -Widiomatic-parentheses and -Wsemicolon-before-method-body warnings. r=smichaud 2015-02-06 00:09:39 -08:00
Benoit Girard
871c6bf4cb Bug 1085223 - Comment out occlusion culling for now. r=mattwoodrow 2015-02-10 11:20:36 +08:00
JW Wang
6ce498d369 Bug 1130906 - remove HTMLMediaElement.waitingFor for spec. changes. r=cpearce. r=bz. 2015-02-10 11:00:35 +08:00
JW Wang
c5024a6b6a Bug 1130275 - correct promise chaining for EME mochitests. r=edwin. 2015-02-06 19:16:28 +08:00
JW Wang
a17cd8b4e6 Bug 1128420 - remove finished output streams from MediaDecoder::mOutputStreams. r=roc. 2015-02-10 10:45:41 +08:00
Markus Stange
5bd5cefe01 Bug 1130892 - Allow vibrancy in popups from non-chrome prescontexts. r=roc 2015-02-09 13:24:51 -05:00
Bobby Holley
1374e3cc8d Bug 1120030 - Test for timestampOffset. r=jya 2015-02-09 17:29:13 -08:00
Matthew Gregan
1a7591bf44 Bug 1131340 - Avoid template aliasing since GCC 4.6 lacks support. r=cpearce 2015-02-10 14:27:36 +13:00
Matthew Gregan
21c6f175e0 Bug 1131340 - Avoid delegating constructors since GCC 4.6 lacks support. r=cpearce 2015-02-10 14:27:30 +13:00
Gary Kwong
041ecd4289 Bug 1030842 - Typo fix for configure when --enable-export-js is set. r=glandium 2015-02-09 17:10:19 -08:00
Christoph Kerschbaumer
edf4baca49 Bug 1130816 - Bad argument passed to newChannelFromURI2 in WindowsPreviewPerTab.jsm (r=gijs) 2015-02-08 20:46:47 -08:00
Luke Wagner
0fb8fefb98 Bug 1121433 - Remove clone-at-call-site functionality (r=shu,jandem) 2015-02-09 18:16:12 -06:00
Luke Wagner
4cb80c332b Bug 1125561 - silence unsigned-compare-against-zero warning on platforms with zero ShadowStackSpace (r=red) 2015-02-09 18:08:03 -06:00
Luke Wagner
d1bc038637 Bug 1125561 - OdinMonkey: align FFIs for Ion calls (r=bbouvier) 2015-02-09 16:48:32 -06:00
Jim Mathies
5e218a9b66 Bug 1103177 - follow up to delete a .rej file. DONTBUILD 2015-02-09 17:00:08 -06:00
Nicholas Nethercote
ee41df7dc2 Bug 1127201 (attempt 2, part 1) - Replace most NS_ABORT_IF_FALSE calls with MOZ_ASSERT. r=Waldo. 2015-02-09 14:34:50 -08:00
Dhi Aurrahman
dc468b5918 Bug 1113003: Remove domain level lookup from ServiceWorkerManager. r=nsm 2015-02-09 11:33:39 +07:00
Matthew Gregan
e39418ab05 Bug 1130923 - Remove some DASHDecoder remnants: RestrictedAccessMonitor and GetByteRangeForSeek. r=cpearce 2015-02-10 11:59:20 +13:00
L. David Baron
d768f5ee94 Bug 983817 - Pad heap allocations passed to flag_qsort() on x86 Linux to work around gcc bug affecting Ubuntu packages. r=froydnj
My biggest concern for review of this patch is whether the #ifdef will
correctly catch what Ubuntu is using to compile Firefox.  Does anybody
know how to confirm that Ubuntu is compiling with gcc, and that these
#ifdefs are correct?
2015-02-10 10:10:49 +11:00
David Burns
685d0f5cd4 Bug 1084125: Allow requiredCapabilities in Marionette, if they are not fulfilled then a new session is not created; r=chmanchester 2015-02-06 21:45:33 +00:00
David Burns
e0a53a29f5 Bug 1084125: Add in SessionNotCreatedException to marionette; r=chmanchester 2015-02-06 21:42:24 +00:00
David Burns
b6900e6480 Bug 1084125: Merge in desired capabilities when passed in on new session; r=chmanchester 2015-02-06 20:25:17 +00:00
Wes Kocher
bc02c6b8e1 Backed out changeset ea625e85c72a (bug 1123763) for checktest orange on a CLOSED TREE 2015-02-09 14:00:13 -08:00
Aaron Klotz
e9ecb648cd Bug 1130747: Add more error checking to PluginAsyncSurrogate::GetPropertyHelper; r=jimm 2015-02-08 19:42:08 -07:00