Kartikaya Gupta
1f59561281
Bug 1339220 - Add telemetry probes to measure duration and max-area of animations in the compositor. r=botond,bsmedberg
...
MozReview-Commit-ID: KyvsNSTcxG8
--HG--
extra : rebase_source : 18626f70b714b5bfc815c16422b04258be03e02b
2017-02-16 14:40:37 -05:00
James Graham
e8fcba4845
Bug 1342954 - Improve ERROR handling in pytest_mozlog r=davehunt
...
Not all report objects are strings, tuples or have a .crashrepr
property. In particular some brokeness in wdspec test setup produced
an object with a .errorstring property. Handle that and the general
case of being passed a weird object more gracefully.
MozReview-Commit-ID: 8vfuNNmwjhC
--HG--
extra : rebase_source : d7dd7ed6f76353df3bc82ed5b5bbd7d29cc4828e
2017-02-27 16:56:48 +00:00
Evan Tseng
e71fa05721
Bug 1323861, Bug 1322674, Bug 1217007 - Update readability from github repo, r=Gijs
...
MozReview-Commit-ID: K0VcAPMaqBV
--HG--
extra : rebase_source : a18e1a9093c59b6f42b9d04839ffa81d50f16b7c
2017-02-23 16:35:06 +08:00
Carsten "Tomcat" Book
0c91af7ef6
Merge mozilla-central to autoland
2017-02-28 13:04:30 +01:00
Carsten "Tomcat" Book
9c1c7106ee
merge mozilla-inbound to mozilla-central a=merge
2017-02-28 11:24:33 +01:00
Rail Aliiev
93e2a0ae63
Bug 1337366 - Rename ESR52 partner repack config r=jlund DONTBUILD
...
MozReview-Commit-ID: Is945ZJLPB3
--HG--
rename : testing/mozharness/configs/partner_repacks/staging_release_mozilla-esr52_desktop.py => testing/mozharness/configs/partner_repacks/release_mozilla-esr52_desktop.py
extra : rebase_source : f1fdb3ea23a6102dbb97f82d86df31890d820683
extra : amend_source : 01520e6a18e23a369dcd55ae585a663ed2a361f0
2017-02-27 22:39:27 -05:00
Boris Chiou
bb298790fe
Bug 1342957 - Fix incorrect MOZ_ASSERT in AnimationEffectReadOnly. r=hiro
...
MozReview-Commit-ID: 6amRZ9AGudQ
--HG--
extra : rebase_source : 350c0d64f371aea0568fc25e345e5de733142abc
2017-02-28 01:38:52 +08:00
Mark Banner
cbf9faa2a5
Bug 1342427 - Setting Web Feeds in Application Preferences to "Add Live Bookmarks" then reselecting it appears to revert to "Preview in Nightly". r=jaws
...
MozReview-Commit-ID: KedE9gfOyp0
--HG--
extra : rebase_source : 9a5d916ff29f575736396121d34090b0adb77cc5
2017-02-27 13:37:30 +00:00
Julian Descottes
d539aebf32
Bug 1342051 - clear css grid pattern cache when destroying highlighter;r=zer0
...
MozReview-Commit-ID: 5LpjjzjZfs3
--HG--
extra : rebase_source : f23974994ff8d10b61e4b6f79dffb69eb985822a
2017-02-27 18:59:49 +01:00
Julian Descottes
51cb975bac
Bug 1342051 - add test for grid highlighter bug after reload;r=zer0
...
MozReview-Commit-ID: 3ZqfxLgnJp0
--HG--
extra : rebase_source : 5ad7f23067c592c4615ac00528d3a4a1062d1ba7
2017-02-27 21:06:55 +01:00
Chris Pearce
035505f62b
Bug 1342822 - Move Widevine decryption throughput limit into Gecko. r=gerald
...
This means each stream that's being decrypted will have its own throughput
limiting, independent of other streams.
MozReview-Commit-ID: DiOiRx19OuC
--HG--
extra : rebase_source : c2205e37caec9c89620b4ec09d7fa962a30d9357
2017-02-27 15:57:41 +13:00
Nicholas Nethercote
54ff9e9a14
Bug 1328378 (part 4) - Remove sample_obj. r=mstange.
...
It's silly indirection.
--HG--
extra : rebase_source : 6eb2f7c13d689db57e604f871372e98d06fea5a1
2017-02-27 12:32:55 +11:00
Nicholas Nethercote
c1b1bc70df
Bug 1328378 (part 3) - Remove unnecessary locking in profiler_get_backtrace(). r=mstange.
...
There's no need to lock when calling Tick() on a local TickSample that uses a
fresh SyncProfile with its own fresh ProfileBuffer -- none of that data can
be touched by another thread.
--HG--
extra : rebase_source : aaabef89e8481758b566e6dd01e4bb61a5855b1a
2017-02-27 12:32:18 +11:00
Nicholas Nethercote
8c0fd1de93
Bug 1328378 (part 2) - Remove BeginUnwind() and EndUnwind(). r=mstange.
...
Both of these functions are now trivial and identical in both ThreadInfo and
SyncProfile. This patch inlines and removes them.
--HG--
extra : rebase_source : 15fb7c1d4df9fbc80d8e671761b4aa1508845cac
2017-02-27 12:31:44 +11:00
Nicholas Nethercote
97a8ad79df
Bug 1328378 (part 1) - Remove SyncProfile::mOwnerState. r=mstange.
...
It appears to be a remnant of a time when SyncProfile lifetimes were more
complex. Nowadays they are simple.
- profiler_get_backtrace() constructs a SyncProfile called |profile|.
|profile|'s mOwnerState is REFERENCED.
- profiler_get_backtrace() then calls BeginUnwind() and EndUnwind() on
|profile|. After the EndUnwind(), |profile->mOwnerState| is always OWNED.
- |profile| then is put into the returned ProfilerBacktrace. That
ProfilerBacktrace will destroy |profile| in its destructor because
ShouldDestroy() always returns true because mOwnerState is always OWNED.
The OWNER_DESTROYING and ORPHANED states are never used, and the whole
OwnerState type isn't necessary. This patch removes it and ShouldDestroy().
--HG--
extra : rebase_source : f1828b4a5d6b8f73245e666f457b93a24ca7266e
2017-02-27 12:30:25 +11:00
cnevinchen@gmail.com
c1ccdd63f5
Bug 1337692 - Ask for permission on input=file/accept. r=sebastian,grisha
2017-02-27 21:02:00 -06:00
Wes Kocher
8e40e003f5
Merge m-c to inbound, a=merge
...
MozReview-Commit-ID: 7JUk3hX7oRK
2017-02-27 17:02:24 -08:00
Wes Kocher
e8fb9a4f0d
Backed out changeset 506e2da5e26f (bug 1325778) for turning test_insecure_form_field_autocomplete.html permafail on android a=backout
...
MozReview-Commit-ID: 5a3fWSTqoOh
2017-02-27 16:59:51 -08:00
Daniel Holbert
7e75a0fa30
Bug 1340441 part 2: Add a failsafe to remove "reftest-wait" in crashtest 1338772-1.html, after some time has elapsed. (test-only, no review)
...
MozReview-Commit-ID: 94yCXN8AbQ6
2017-02-27 16:53:23 -08:00
Blake Kaplan
9fb1ff597d
Bug 1334716 - Make process selection a service and implementable in JS. r=krizsa
...
MozReview-Commit-ID: CViRvZB8nKe
2017-02-27 16:09:06 -08:00
Wes Kocher
dbf209197e
Backed out 2 changesets (bug 1340146) for spidermonkey bustage a=backout
...
Backed out changeset 5556b171034e (bug 1340146)
Backed out changeset c355a0ffcb10 (bug 1340146)
MozReview-Commit-ID: JTVSUcenPdC
2017-02-27 15:28:34 -08:00
Ben Kelly
2f8d218126
Bug 1342854 Run a limited number of timer callbacks in the same event loop runnable. r=smaug
2017-02-27 17:33:30 -05:00
Michael Kaply
eaf1c195a8
Bug 1031210 - Add junit tests for StringUtils.stripScheme. r=snorp
2017-02-27 16:21:47 -06:00
Wes Kocher
d2b28917c0
Merge m-c to inbound, a=merge
...
MozReview-Commit-ID: 7UN77Uvxgus
2017-02-27 13:37:44 -08:00
Wes Kocher
1e95bd721f
Merge inbound to central, a=merge
...
MozReview-Commit-ID: F0XvCKnh8H7
2017-02-27 13:34:55 -08:00
Wes Kocher
f448516b0f
Merge autoland to central, a=merge
...
MozReview-Commit-ID: I3hgM0ng45o
2017-02-27 13:12:25 -08:00
Mihai Tabara
035e4968ce
Bug 1338186 - tweak the bucket scope to new form. r=aki a=release DONTBUILD
...
MozReview-Commit-ID: Fbjk6xTZwmZ
--HG--
extra : source : e6b4a6513789a8fa3a2950bb9f6c65d5f5afc5f2
extra : intermediate-source : e00f58c31a85ad03e6eccfa99926f75687041254
2017-02-27 18:55:03 +00:00
Emilio Cobos Alvarez
bbacba9f0d
Bug 1342738, Bug 1342188: Reftest expectations adjustments. r=bz
2017-02-27 19:17:12 +01:00
André Bargull
a8358b9891
Bug 1340146 - Process js/src/shell JavaScript files as self-hosted in eslint plugin. r=evilpie
...
--HG--
extra : rebase_source : c34e54150dafbab3f6422b1beb0689b9ced87608
2017-02-27 09:55:21 -08:00
UK992
fa5cf3d7c1
servo: Merge #15753 - Fix Cargo.toml in servo_tidy_tests (from UK992:tidy); r=jdm
...
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #15737
Source-Repo: https://github.com/servo/servo
Source-Revision: 28bd00debc4f64ff4a9973bea0003c3fd6776299
--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : c3ba9a60a9c479fbc38985ad84a014f910c5822c
2017-02-27 08:56:30 -08:00
Benjamin Bouvier
ee24048334
Bug 1342956: Fix promise_test in wasm-testharness.js; r=luke
...
MozReview-Commit-ID: IfPkWSw05pX
--HG--
extra : rebase_source : cf2ffc8c0f3640dbfbcd3a633df8d9f3db8093f1
2017-02-27 17:35:18 +01:00
Andrea Marchesini
0c0a744d4f
Bug 1342361 - Get rid of ArchiveReader API, r=smaug
2017-02-27 17:50:46 +01:00
Ehsan Akhgari
116c304388
Bug 1342560 - Guarantee that the empty string atom is always static; r=froydnj
2017-02-27 10:51:43 -05:00
André Bargull
bdc5d2e7cf
Bug 1340146 - Normalize paths for module registry in shell module loader. r=jonco
...
--HG--
extra : rebase_source : 8712d18be190acc67416d33850844b1fb6c247a7
2017-02-27 07:49:29 -08:00
Tom Schuster
f69d3a9d55
Bug 1342402 - Use optimized GetElement in JSON. r=jandem
2017-02-27 16:43:24 +01:00
ffxbld
4039fb4c58
No bug, Automated HPKP preload list update from host bld-linux64-spot-031 - a=hpkp-update
2017-02-27 07:28:02 -08:00
ffxbld
c8f79e9d17
No bug, Automated HSTS preload list update from host bld-linux64-spot-031 - a=hsts-update
2017-02-27 07:28:00 -08:00
Joel Maher
c439242012
Bug 1288343 - Intermittent /media-source/SourceBuffer-abort-updating.html. disabled for now. r=gbrown
...
MozReview-Commit-ID: KgVZt9RQPas
2017-02-27 10:25:06 -05:00
Joel Maher
59d6738d11
Bug 1338320 - annotate testing/web-platform/moz.build with BUG_COMPONENT: part1. r=overholt
...
MozReview-Commit-ID: 675WQU4BFMQ
2017-02-27 10:25:06 -05:00
Joel Maher
c850cfdb3c
Bug 1325778 - Intermittent toolkit/components/passwordmgr/test/mochitest/test_insecure_form_field_autocomplete.html. r=gbrown
...
MozReview-Commit-ID: 4X29wI7PLEn
2017-02-27 10:25:06 -05:00
Joel Maher
83e2a8017d
Bug 1304273
- Intermittent browser/base/content/test/general/browser_offlineQuotaNotification.js. disabled on linux opt/pgo. r=gbrown
...
MozReview-Commit-ID: FkjLhHL6dtY
2017-02-27 10:25:05 -05:00
Jon Coppeard
2c2e96fdc0
Bug 1340865 - Handle non-parser-created module scripts r=smaug
2017-02-27 15:04:21 +00:00
Carsten "Tomcat" Book
0597294242
merge mozilla-inbound to mozilla-central a=merge
2017-02-27 14:07:46 +01:00
Iris Hsiao
aa7be324d2
Backed out changeset e3df33f21fab (bug 1342831) for test leak
2017-02-27 17:13:25 +08:00
Jan de Mooij
9fa749d29e
Bug 1341067 followup - Fix non-unified build bustage. r=red
2017-02-27 10:00:02 +01:00
Jan de Mooij
ed8798799e
Bug 1341067 - Port Ion SetProp/SetElem IC to CacheIR. r=h4writer
2017-02-27 09:32:49 +01:00
Chris Pearce
6425456721
Bug 1342822 - Backed out changeset 70bc7d4e8512 (bug 1338924). r=gerald
...
MozReview-Commit-ID: DXGgfMMghOD
--HG--
extra : rebase_source : e5d329122754dfab6750ff2aedadc1f65a52f0f8
2017-02-27 13:58:27 +13:00
Chris Pearce
892e18f12e
Bug 1342822 - Backed out changeset a379d64f8496 (Bug 1338924 patch 3). r=gerald
...
MozReview-Commit-ID: 4aFx52mwpQ6
--HG--
extra : rebase_source : 45cfb3aba27e93d49c5ebf64510d0143f1c57654
2017-02-27 13:57:39 +13:00
Tim Nguyen
856b53c527
Bug 1342672 - Fix memory tool CSS. r=jryans
...
MozReview-Commit-ID: mSZFtU2AUF
--HG--
extra : rebase_source : 463f46ca1af075fba6673fef98f171683c7a4fc3
2017-02-25 16:09:31 +00:00
André Bargull
455dcb1fcb
Bug 1342648 - Only define PluralRules constructor when calling addIntlExtras in test262 PluralRules tests. r=gandalf
...
--HG--
extra : rebase_source : 17c29061f6ff57bacdc3e56462b859266c71b643
2017-02-25 01:59:42 -08:00