Viktor Stanchev
9e0e77e8e6
Bug 962731 - Properly save root profiler tags in profiles. r=ehsan
2014-01-30 13:13:23 -05:00
Dan Minor
e98620e826
Bug 959164 - Jit-test basic\bug710947.js fails on Windows 8 test machines; r=terrence
2014-01-30 08:53:59 -05:00
Christoph Kerschbaumer
b873349084
Bug 916054 - XPCShell tests for URLs with path. r=grobinson
2013-10-15 16:14:35 -07:00
Christoph Kerschbaumer
16f47331fa
Bug 916054 - CSP mochitests for URLs with path. r=grobinson
2013-09-30 10:49:07 -07:00
Christoph Kerschbaumer
c3b89ceddd
Bug 916054 - URLs with path are ignored by FF's CSP parser. r=grobinson
2013-10-13 21:12:33 -07:00
Myk Melez
ae4dc54901
bug 963898 - access DOMApplicationRegistry.webapps directly when autouninstalling webapp; r=mfinkle
...
--HG--
extra : rebase_source : f9da4d65bd026d25771978657d0cef5c3f05119b
2014-01-30 10:00:42 -08:00
Myk Melez
308e947909
bug 964877 - ensure *app* object has *receipts* property; r=mfinkle
...
--HG--
extra : rebase_source : 042bf6816913dd5a957f1b17b765a15fbe593698
2014-01-30 09:54:12 -08:00
Jonathan Griffin
3379dd9bbf
Bug 948895 - Increase wait-for-homescreen timeout, r=ahal
2014-01-30 10:00:08 -08:00
Nikhil Marathe
d2b71e77aa
Bug 918806 - Remove all mention of dom.promise.enabled from other tests. r=bz,schien
2014-01-30 09:43:09 -08:00
Nikhil Marathe
bbd4ae9d07
Bug 918806 - Enable DOM Promises. sr=bz
2014-01-30 09:41:43 -08:00
Andrea Marchesini
0c4368fac6
Bug 962626 - Browser API: mozmetachanged triggered when a meta element is added to the dom., r=ehsan
...
--HG--
rename : dom/browser-element/mochitest/test_browserElement_inproc_Iconchange.html => dom/browser-element/mochitest/test_browserElement_inproc_Metachange.html
rename : dom/browser-element/mochitest/test_browserElement_oop_Iconchange.html => dom/browser-element/mochitest/test_browserElement_oop_Metachange.html
2014-01-30 09:31:34 -08:00
Bobby Holley
0a841b5f0f
Bug 872273 - Tests. r=smaug
2014-01-30 09:30:30 -08:00
Bobby Holley
9e8990f21b
Bug 872273 - Use js::ErrorReportToString for worker ErrorEvents. r=bent
...
Historically, we've sometimes reported ErrorEvent.message as |Error.name|, and
sometimes as |Error.name: Error.message|, depending on which path we took
through js_ReportUncaughtException. We need to standardize on something, so
let's use the latter, since it contains strictly more information. This involves
updating a few tests.
2014-01-30 09:30:30 -08:00
Bobby Holley
c94db7536e
Bug 872273 - Remove manual rooting from js_ReportUncaughtException. r=Waldo
...
This stuff is exactly rooted now, so this is all unnecessary.
2014-01-30 09:30:29 -08:00
Bobby Holley
ae4b881834
Bug 872273 - Don't ToString the exn if we already got a report out of it. r=Waldo
...
Note that we have to update a test that was previously expecting to hit the
bail-out case at the bottom of js_ReportUncaughtException.
2014-01-30 09:30:29 -08:00
Bobby Holley
f3bf0bcbef
Bug 872273 - Generate a JSErrorReport when we need one. r=Waldo
...
This lets js_ReportUncaughtException get the report directly from the underlying
Error object, rather than trying to duck-type it (which fails for security
wrappers).
2014-01-30 09:30:29 -08:00
Bobby Holley
7166faea0a
Bug 872273 - Remove non-cx variant of ErrorFromException, and make it take a HandleObject. r=Waldo
...
We're going to need to start doing more work in js_ErrorFromException, which
will require a |cx| and may GC.
2014-01-30 09:30:29 -08:00
Bobby Holley
e50fdec17d
Bug 956385 - Don't count non-matching messages toward the total. r=ted
2014-01-30 09:30:28 -08:00
Geoff Brown
4474ad6357
Bug 927602 - (2) Skip reftest font-stretch-1.html on Android x86; r=dminor
2014-01-28 06:47:41 -07:00
Geoff Brown
117e9d0005
Bug 936226 - Mark canvas-drawImage-scale-2a.html as passing on Android x86; r=dminor
2014-01-28 06:47:38 -07:00
Felix S. Klock II
c200f20793
Bug 961821: tests for jit-support for writes into TypedObject arrays (r=pnkfelix).
...
These iteration counts were selected to be close to the minimum number
necessary to expose bugs while working on this patch (see comments in
Bug 961821 for more details here). Note that they are all 500
iterations (not 5000); please be wary of reducing the iteration count
further without first ensuring that the jit has time to compile this
code.
2014-01-30 17:47:14 +01:00
Felix S. Klock II
fba7012b6a
Bug 961821: jit-support for writes into TypedObject arrays.
...
As part of above, alpha-renamed IonBuilder::setElemTryTyped to
IonBuilder::setElemTryTypedArray to keep clear the current distinction
between TypedObject and TypedArray.
Drive-by fix: Reference to Bug 894105 in comment had off-by-one typo.
Bug 961821: jit-support for writes into TypedObject arrays (r=nmatsakis).
As part of above, alpha-renamed IonBuilder::setElemTryTyped to
IonBuilder::setElemTryTypedArray to keep clear the current distinction
between TypedObject and TypedArray.
Drive-by fix: Reference to Bug 894105 in comment had off-by-one typo.
2014-01-28 04:33:00 +01:00
Gregory Szorc
6aff20394a
Bug 965587 - Add lock to Firefox Health Report uploading; r=rnewman
...
Previously, it was technically possible for the FHR client to have
multiple simultaneous uploads. While this should never occur in
well-behaving systems, server logs have indicated that this behavior
might be occurring.
This patch adds a lock around uploading to ensure only 1 upload
operation may be active at a given time.
To measure the impact of this change in the wild, we added a counter
that increments whenever a held lock is encountered.
--HG--
extra : rebase_source : f0bb5065a3618cd335b6b6f31e4e68850f31f151
2014-01-29 15:28:57 -08:00
Simone Carletti
2e107e3204
Bug 965744 - PSL changes for Google private domains. r=gerv
2014-01-30 11:32:08 -05:00
Rick Eyre
4bab919aa0
Bug 965336 - Setting TextTrackCue's Start or End times should set its state to dirty. r=rillian
2014-01-29 12:57:43 -05:00
Simone Carletti
4799fe01c3
Bug 965740 - Add Microsoft azure to PSL. r=gerv
2014-01-30 11:17:11 -05:00
Douglas Crosher
f5388f98e7
Bug 965247 - ARM simulator: Support an environment variable and shell argument to enabling icache checks. r=jandem
2014-01-30 01:30:56 +11:00
Rick Eyre
f5ee3a4fbe
Bug 965246 - Integrate bulk updates from vtt.js. r=rillian
...
Relevant changes for bugs 881976 and 964625.
2014-01-29 09:28:06 -05:00
Sotaro Ikeda
aea08d0bde
Bug 964976 - Prevent crash of unsupported pixel format gralloc allocation. r=nical
2014-01-30 11:17:10 -05:00
Michael Shal
8e0d266e53
Bug 963123 - NNS Windows build fix to prevent lower case working directories to make the build fail. r=glandium
2014-01-30 11:14:35 -05:00
Jeff Gilbert
278a0e44f6
Bug 960319 - Don't use GLTextures for non-ANGLE D3D WebGL layers. r=vlad
2014-01-30 10:59:16 -05:00
James Kitchener
d36cb8630c
Bug 953385 - Tests for OpenType 'math' script in MathML. r=fredw
2014-01-30 10:59:16 -05:00
James Kitchener
106ab919b6
Bug 953385 - Set math script flag on textruns belonging to MathML tokens. r=roc
2014-01-30 10:59:16 -05:00
James Kitchener
719046a9e6
Bug 953385 - Set math script where applicable in /gfx. r=jfkthame
2014-01-30 10:59:16 -05:00
Ethan Tseng
c1082ab70e
Bug 951188 - [RTSP][V1.3] No error notification when the RTSP link fails to load. r=sworkman
2014-01-30 10:00:53 +08:00
Shih-Chiang Chien
267e4c10f0
Bug 948725 - Invoke |QuitPumpingEvent| after response packet is received. r=jduell
2014-01-30 10:59:15 -05:00
Joel Maher
d8c8c1540f
Bug 965731 - upload a new talos.zip to pick up all the fixes. r=armenzg
2014-01-30 10:47:28 -05:00
Bobby Holley
331a1f6c7b
Bug 959012 - Clean up and separate the semantics of js_{Get,Find}Class{Prototype,Object}. r=jorendorff
2014-01-30 07:45:16 -08:00
Bobby Holley
fd6a49474c
Bug 959012 - Create separate js_GetClassPrototype and js_FindClassPrototype to mimic js_{Get,Find}ClassObject. r=jorendorff
...
The current behavior is crazy, and most definitely not Xray-safe.
2014-01-30 07:45:16 -08:00
Bobby Holley
8ce02091dd
Bug 959012 - Move js_GetClassObject creation logic into GlobalObject. r=jorendorff
2014-01-30 07:45:16 -08:00
Bobby Holley
8b2a3c8d5b
Bug 959012 - Remove unused cx parameter from JS_IdentifyClassPrototype. r=jorendorff
2014-01-30 07:45:16 -08:00
Bobby Holley
bf55a48710
Bug 959012 - When resolving iterator classes, use JSProto_Iterator instead of JSProto_GeneratorFunction. r=luke
...
The former triggers all of the appropriate initialization, whereas the latter
is 'imaginary' in jsprototypes.h, which means that the is no initialization
function associated with it.
2014-01-30 07:45:15 -08:00
Nicolas Silva
ce4e1fcf64
Bug 946200 - Use the new texture client/host and async-video if OMTC is activated on Linux. r=nrc
2014-01-30 16:05:47 +01:00
Hannes Verschore
12f8e2be0b
Bug 958158 - IonMonkey: Optimize do {} while(false), r=djvj
2014-01-30 14:59:24 +01:00
Andrew Halberstadt
2d244ee3f6
Bug 948070 - Create a mach target for b2g desktop reftests, r=jgriffin, DONTBUILD, a=NPOTB
2014-01-30 08:42:18 -05:00
Andrea Marchesini
7c745b83df
Bug 964293 - Implement Cu.cloneInto() method, r=bholley
2014-01-30 04:45:48 -08:00
Henri Sivonen
cf6bacb02c
Bug 959061 - Have only one "Chinese, Simplified" item in the Character Encoding menu. r=Unfocused.
2014-01-30 14:39:25 +02:00
Mats Palmgren
0e6b7fff02
Bug 959311 - Splitting nsComboboxControlFrame makes no sense so it should always report COMPLETE reflow status. Also, make them page-break-inside:avoid by default. r=bz
2014-01-30 12:12:02 +00:00
Mats Palmgren
df4bd6bd76
Bug 964726 - (Windows/OS2 only) Don't handle CTRL+F4 as a combobox command, so that it works as Close Tab as intended. r=bz
2014-01-30 12:12:02 +00:00
Carsten "Tomcat" Book
6ed80db29e
Merge mozilla-central to mozilla-inbound
2014-01-30 12:08:09 +01:00