Hiroyuki Ikezoe
92a8f642ee
Bug 1216844 - Implement KeyframeEffect::SetComposite(). r=boris,smaug
...
MozReview-Commit-ID: C9wHsriHgZ9
--HG--
extra : rebase_source : 85ddcf39ed54dd5add692421c10f3bfb6e9d3ceb
2016-12-14 08:51:44 +09:00
Hiroyuki Ikezoe
54503e5fd9
Bug 1311620 - Part 11: Implement shadow list addition. r=boris
...
MozReview-Commit-ID: DRShA4qUS8Q
--HG--
extra : rebase_source : 68f4aee6abff1ac11815b18e2aa15b9470111497
2016-12-24 20:05:34 +09:00
Hiroyuki Ikezoe
059eaa8ee8
Bug 1311620 - Part 10: Implement filter list addition. r=boris
...
MozReview-Commit-ID: 8bQWBVveP9L
--HG--
extra : rebase_source : 5c292ee6d4cf547263fa0114f642fecb28ac5b17
2016-12-24 20:04:56 +09:00
Hiroyuki Ikezoe
523ccaff51
Bug 1311620 - Part 9: Implement transform list addtion. r=boris.
...
MozReview-Commit-ID: 76b5eJ9FtWo
--HG--
extra : rebase_source : fd77fbeea96986c0a7fa484d067074e3f9f87677
2016-12-24 20:04:52 +09:00
Hiroyuki Ikezoe
2418629ef8
Bug 1311620 - Part 8: Implement color addition. r=boris
...
Actually this is the same as color accumulation. Now we can pass test cases
that interpolation with overflowed values.
MozReview-Commit-ID: L4RqBhG5n3l
--HG--
extra : rebase_source : e80f1c135b33703dcda7c99df897aa7097030f05
2016-12-24 20:03:48 +09:00
Hiroyuki Ikezoe
c627be3142
Bug 1311620 - Part 7: addition result tests per properties. r=boris
...
This includes some failure test cases:
1) Color interpolation with overflowed colors.
Additive color needs to be with overflowed color components that are produced
by additive calculation. For example:
an additive color animation between rgb(100, 100, 100) and rgb(200, 200, 200)
on rgb(100, 100, 100) element should be an animation of colors;
from rgb(200, 200, 200) to rgb(300, 300, 300).
This will be fixed in the next patch (part 8).
2) All transform tests.
Additive transform list has to be concatinated, it will be done in a subsequent
patch (part 9).
MozReview-Commit-ID: 5OoT6icVMcC
--HG--
extra : rebase_source : ad572953c6e986efb85faf07e385b8a8f3b3d968
2016-12-24 19:57:49 +09:00
Hiroyuki Ikezoe
8e88d9bc70
Bug 1311620 - Part 6: Fix test cases that checks keyframe composite is not specified but effect composite is specified. r=birtles
...
From spec <https://w3c.github.io/web-animations/#dom-keyframeeffectreadonly-getkeyframes >:
composite
The keyframe-specific composite operation used to combine the values
specified in this keyframe with the underlying value.
This member will be absent if the composite operation specified on
the keyframe effect is being used.
MozReview-Commit-ID: 8ob59Xv6DRL
--HG--
extra : rebase_source : cf88254e6acb1a2d56b7c50ef46db7ef3a692947
2016-12-24 19:55:09 +09:00
Hiroyuki Ikezoe
d339d422fb
Bug 1311620 - Part 5: Implement effect composite(add). r=birtles
...
MozReview-Commit-ID: 7t6CD3VibNS
--HG--
extra : rebase_source : 3d683f945db1eac4c208daecc92750710df6c3d0
2016-12-24 19:54:42 +09:00
Hiroyuki Ikezoe
5201cc33f3
Bug 1311620 - Part 4: Implement keyframe composite(add). r=birtles
...
This patch also fixes expected computed offset values in frame at 0.5 offset for
add composite.
MozReview-Commit-ID: 8PNp237NoV4
--HG--
extra : rebase_source : 7bdf83741198fb81c6721cad1764e6464033c240
2016-12-24 19:54:27 +09:00
Hiroyuki Ikezoe
01f0291ee5
Bug 1311620 - Part 3: Incorporate null_t in Animatable. r=birtles
...
We couldn't tell the difference between a null StyleAnimationValue and
transform:none on the compositor. This was not a problem before, since we didn't
need the null StyleAnimationValue on the compositor, because the null
StyleAnimationValue have to be passed with composite:add flag, and in the case of
composite:add we just used the underlying value, i.e. we didn't use the null
value at all.
But for normal additive animations, we have to check the null StyleAnimationValue
to tell whether we are processing a missing keyframe or not.
So in this patch, Animatable can be null_t to represent the null
StyleAnimationValue, and as a result of this change, we can drop
BaseAnimationStyle.
MozReview-Commit-ID: Au41ujHgPpU
--HG--
extra : rebase_source : 71eafcf729e278d2576b9a66bb194c2a7b972f1c
2016-12-24 17:27:18 +09:00
Hiroyuki Ikezoe
8e7be87392
Bug 1311620 - Part 2: Don't call StyleAnimationValue::GetUnit() against uninitialized values, use IsNull() instead. r=birtles
...
MozReview-Commit-ID: JAcHqsgpdDB
--HG--
extra : rebase_source : 4ec9924cd7f22406a7ecd8ba2c95feeba3a0dd28
2016-12-24 17:26:50 +09:00
Hiroyuki Ikezoe
ade861d258
Bug 1311620 - Part 1: Test for effect/keyframe composite(add). r=birtles
...
MozReview-Commit-ID: ArJ6hsMNJ1y
--HG--
extra : rebase_source : bf02d1496160d2ff38755551cfb2f244f9dea6cd
2016-12-24 17:26:03 +09:00
Wes Kocher
65f15b63ea
Backed out 3 changesets (bug 1325501) for xpcshell failures a=backout
...
Backed out changeset b6e50911ef79 (bug 1325501)
Backed out changeset c0493757d21e (bug 1325501)
Backed out changeset 880decff07b3 (bug 1325501)
2016-12-24 00:38:09 -08:00
JW Wang
b245f6d89e
Bug 1319295. Part 3 - enable dormant for the test. r=jya
...
MozReview-Commit-ID: 9dvmRXbr683
--HG--
extra : rebase_source : 89757edee2d01881902583b7c54a8f9084392248
extra : intermediate-source : 487459ad82406a06b9a5d1b4a53290c8aa3ee652
extra : source : 3e90c3305c9988daa2cef10b3209f629ccc6dd2d
2016-12-20 17:05:25 +08:00
JW Wang
155621f9d6
Bug 1319295. Part 2 - reject the seek promise with WAITING_FOR_DATA so MDSM has a chance to call WaitForData() and seek again. r=jya
...
MozReview-Commit-ID: I8A0rQMcTya
--HG--
extra : rebase_source : 85ef759034d44e02d653a5aa71fd75fb01bb8035
extra : intermediate-source : 7a82d4beffd3247d12e13a6c11232dfa94db4d28
extra : source : 84a184466957ecf4f2107b94ca2261f706e6da5b
2016-12-16 17:30:28 +08:00
JW Wang
e6e5696cf4
Bug 1319295. Part 1 - add a field to identify audio or video seek failures. r=jya
...
MozReview-Commit-ID: 3PXlISED4tm
--HG--
extra : rebase_source : 18f1b074cacdacdc4dff270662e4609cdff94b76
extra : intermediate-source : 4205a6383c79d09f962853d8b4d8ddb5797bc79e
extra : source : 2e98d6a4761e4b42311fc50b9a5bcb55741eda34
2016-12-16 16:57:27 +08:00
JW Wang
7721ac45c7
Bug 1324629
. Part 5 - replace some member functions with lambda. r=kaku
...
MozReview-Commit-ID: 8mRePsDxUWx
--HG--
extra : rebase_source : 936f6fad7c4b1de2e5c255d12398e20ba48a85cf
extra : source : e68eeaf321baa4fe2363af2966c3522326b18fe2
2016-12-22 14:01:21 +08:00
JW Wang
0323cca4c5
Bug 1324629
. Part 4 - clean up some functions and comments. r=kaku
...
MozReview-Commit-ID: HP2Tp8KbRoq
--HG--
extra : rebase_source : e2ac1431611f30a8d9ffb1fb3bcd30b6a52e31c6
extra : intermediate-source : c281654e20d3a91f310f6bd983c3ba2c6915afe7
extra : source : 867b2f18697a1b5a1b87b95ad6af8a4fc60e6162
2016-12-20 15:48:20 +08:00
JW Wang
d1e5b672ea
Bug 1324629
. Part 3 - remove AudioWait and videoWait callbacks. r=kaku
...
MozReview-Commit-ID: 9pXLLrYLN4c
--HG--
extra : rebase_source : c66cc3f37fd3cebb0d6a9c7525f863f2ade2a67e
extra : intermediate-source : fbb3fcf20109d9caa13e556c679aee5e692e78f2
extra : source : e8eff4dc4bc1fae74e6f228d51d9677d215ff66a
2016-12-20 14:31:29 +08:00
JW Wang
08a93dbdc4
Bug 1324629
. Part 2 - remove video callback. r=kaku
...
MozReview-Commit-ID: 92t6GoznxL5
--HG--
extra : rebase_source : b1bf9053a396c501c918b8848d98ce920e3f09f6
extra : intermediate-source : 41414e1780251a382e900bb9ef5c011074278875
extra : source : 89fd50a16e61f3bfdfe445e1b49238ada801256b
2016-12-20 13:17:05 +08:00
JW Wang
6965b449bf
Bug 1324629
. Part 1 - remove audio callback. r=kaku
...
MozReview-Commit-ID: DbWwSNpYXLo
--HG--
extra : rebase_source : 901a519bc4864c61ee57bffe04ca61850422c862
extra : intermediate-source : 4db9b0aceda98d5a73b980582c12b8ae09b9c30b
extra : source : 3fadecee89e97b9cf9ffe464265c682ad5c5d28b
2016-12-20 12:54:23 +08:00
Robert Helmer
b03f98cd3d
Bug 1325501 - move Telemetry from XHR to ServiceRequest r=gfritzsche
...
MozReview-Commit-ID: 6ZyLQknPVFx
--HG--
extra : rebase_source : 5fb4b7052e00ee5b41036ef825c0efeca72401c6
2016-12-22 20:38:58 -08:00
Robert Helmer
42e9031acf
Bug 1325501 - move addons manager from XHR to ServiceRequest r=kmag
...
MozReview-Commit-ID: J0ytKWqDOr3
--HG--
extra : rebase_source : e09c9ee318ae8201ebcdac2cd3b40f31fe8765a1
2016-12-22 19:54:57 -08:00
Robert Helmer
afe2c03ab1
Bug 1325501 - Adds ServiceRequest as a drop-in replacement for XHR, which uses conservative TLS settings r=mossop
...
MozReview-Commit-ID: 5937m90Q948
--HG--
extra : rebase_source : a5c107e486ef1dc646c8d730e658e9693a535883
2016-12-22 15:56:37 -08:00
James Cheng
14369bf152
Bug 1325330 - [EME][Fennec] Create MediaCrypto object inside GeckoMediaDrmBridge's constructor. r=kikuo
...
MozReview-Commit-ID: 4QmvUxrMe47
--HG--
extra : rebase_source : 93a7d5df5b17a88ee5e909a4b68d45e5541b5e4e
2016-12-23 15:42:22 +08:00
Kilik Kuo
dfa33df891
Bug 1325356 - Remove unnecessary SamplesWaitingForKey object in VideoDataDecoder. r=jwwang
...
MozReview-Commit-ID: 7uYfh3F2t2e
2016-12-23 16:00:35 -08:00
Wes Kocher
c2cdfab9c9
Backed out changeset ff9a07a874fd (bug 1322873) for failing the tests it added a=backout
2016-12-23 16:00:18 -08:00
David Keeler
d339ca2730
bug 1312827 - make the certificate blocklist only apply to TLS server certificates r=jcj,mgoodwin
...
(Note that content signature verification does not use the unified certificate
verifier and thus will still consult OneCRL.)
MozReview-Commit-ID: 6KvHOngpabT
--HG--
extra : rebase_source : 601f4d8d1c66befb77d0c07a2d84f3f04416f996
2016-12-22 16:57:20 -08:00
Wes Kocher
c788de8394
Merge m-c to autoland, a=merge
...
MozReview-Commit-ID: Ir5MaTTboph
2016-12-23 14:40:22 -08:00
Wes Kocher
7145ee5d12
Merge inbound to central, a=merge
...
MozReview-Commit-ID: 56QI5RIvpXC
2016-12-23 14:34:55 -08:00
Wes Kocher
9d605d2d01
Merge autoland to central, a=merge
...
MozReview-Commit-ID: 3DGIiouS8ws
2016-12-23 14:33:39 -08:00
Wes Kocher
1f805d68a6
Backed out changeset 72f2f33715b4 (bug 1325356) for failing tests it added a=backout
2016-12-23 14:32:31 -08:00
Wes Kocher
7cd2d99f0f
Backed out 2 changesets (bug 1325445) for lint failures and possibly build bustage a=backout
...
Backed out changeset 26dfb927a58d (bug 1325445)
Backed out changeset 4fcea80bb19e (bug 1325445)
2016-12-23 14:28:27 -08:00
Ralph Giles
af4d2e7ffe
Bug 1325445 - Update builders to rust 1.14.0 stable. r=mshal
...
Repacks of the upstream builds of rust 1.14.0 stable release.
MozReview-Commit-ID: B5DclOLeBjM
--HG--
extra : rebase_source : f56feadb24193f1bec13c93bf0414a50a7de219c
2016-12-23 13:20:26 -08:00
Ralph Giles
0376ecc4b7
Bug 1325445 - Use sha256sum to verify rust releases. r=mshal
...
Use sha256sum from coreutils instead of shasum to verify
rust releases when not running on MacOS. This makes the
repack script more portable between MacOS and Linux.
MozReview-Commit-ID: BxFDquTVklu
--HG--
extra : rebase_source : 3a1b17ab391cdc467fc68eb8d05fafd3e3b9ddd7
2016-12-23 13:29:13 -08:00
Wes Kocher
8ca106c96d
Backed out changeset 25d339813371 (bug 1312827) for browser_certViewer.js failures a=backout
2016-12-23 13:03:10 -08:00
ffxbld
651f9ffc4f
No bug, Automated HPKP preload list update from host bld-linux64-spot-575 - a=hpkp-update
2016-12-23 06:28:23 -08:00
ffxbld
a1b8b15a7b
No bug, Automated HSTS preload list update from host bld-linux64-spot-575 - a=hsts-update
2016-12-23 06:28:20 -08:00
Alastor Wu
9bd913bac6
Bug 1325172 - unregister agent when nsNPAPI releases it. r=baku
...
When the global window detroyed, the service would notify agent's callback to mute its volume.
And the nsNSNPAPI's detroy would release the agent, I guess these things would happen in the same time.
So we should check whether the agent exists before calling agent's function.
MozReview-Commit-ID: 7uNmbdOLqxe
--HG--
extra : rebase_source : a93f70b34f881a06439ef237217d472fa9d886b1
2016-12-23 15:04:51 +08:00
Kilik Kuo
c25c957225
Bug 1325356 - Remove unnecessary SamplesWaitingForKey object in VideoDataDecoder. r=jwwang
...
MozReview-Commit-ID: 7uYfh3F2t2e
--HG--
extra : rebase_source : fb09263e3da9e38993feb8385d810d5abb1b692e
2016-12-23 12:49:05 +08:00
Chris Peterson
8a72eabcc1
Bug 1142403 - Part 4: Clobber to force jemalloc to rerun configure. r=glandium
...
--HG--
extra : rebase_source : 7cdca16b57d03a7f0e0bfa134da1fa2619a09924
2016-12-22 18:57:57 -08:00
Chris Peterson
b9fd4f1b11
Bug 1142403 - Part 3: jemalloc4 no longer requires ctl.c to be built in non-unified mode in debug builds. r=glandium
...
--HG--
extra : rebase_source : 9c1e00514be306552722ebd855d364b9b98b5c87
2016-12-22 18:54:59 -08:00
Wes Kocher
60785fce6d
Merge inbound to central, a=merge
...
MozReview-Commit-ID: I54WGOLqHI2
2016-12-22 18:37:07 -08:00
Chris Manchester
938419ecab
Bug 1323581 - Install Make 4.0 in the desktop build image to take advantage of parallelism during automation steps. r=gps
...
MozReview-Commit-ID: 3EHbQlrT2vf
--HG--
extra : rebase_source : 4b2742fd6e4de2e2b0cb4262e723e163f9f2e241
2016-12-22 13:45:51 -08:00
David Keeler
981d1d04d5
bug 1312827 - make the certificate blocklist only apply to TLS server certificates r=jcj,mgoodwin
...
MozReview-Commit-ID: 6KvHOngpabT
--HG--
extra : rebase_source : e7af425fa2418880e8ecf7a890661797d76bcc8b
2016-12-22 16:57:20 -08:00
Timothy Guan-tin Chien
4a917a1597
Bug 1318203 - Don't show autocomplete UI on Password Field if it is already populated with text, r=MattN
...
MozReview-Commit-ID: L3cUxHYIE5R
--HG--
extra : rebase_source : 4cd4bc67423edc09838e139cf2472a3577aed9d9
2016-12-23 14:01:39 -05:00
Matthew Noorenberghe
00a9224df3
Bug 1318203 - Login manager autoCompleteSearchAsync helper to not complete canceled searches. r=mossop
...
MozReview-Commit-ID: wBcORBANyS
--HG--
extra : rebase_source : 5bc31bb25afe7153dfcfed3cfc9c27b2cb34af7b
2016-12-23 14:01:18 -05:00
Ehsan Akhgari
41b2cc8dd4
Bug 1325255 - Don't crash during shutdown if the deserialization of the principal fails; r=bkelly
2016-12-22 15:09:12 -05:00
Sebastian Hengst
8b13894203
Backed out changeset d539253e91ae (bug 1313276
) for failing own test paint-on-maskLayer-1c.html on Android debug. r=backout
2016-12-22 20:16:20 +01:00
Sebastian Hengst
dc41e31e4c
Backed out changeset d90a8fc45b74 (bug 1313276
)
2016-12-22 20:15:40 +01:00