Граф коммитов

551229 Коммитов

Автор SHA1 Сообщение Дата
Kris Maglione 674ad0854d Bug 1350646: Part 4 - Remove most modules which depend on sdk/addon/*. r=Mossop
MozReview-Commit-ID: C2muN6tC23B

--HG--
extra : source : c68367bb0eb39090b8bb1925916dea24bdbfe6b0
2017-08-02 14:04:30 -07:00
Kris Maglione cc4c331174 Bug 1350646: Part 3 - Remove sdk/system/child_process modules. r=Mossop
MozReview-Commit-ID: LQgUe8E8M4k

--HG--
extra : source : 3ca040743aebaa3f0c971fcd8de3fe798121bcd8
2017-08-02 13:52:47 -07:00
Kris Maglione 6e2ec006a5 Bug 1350646: Part 2 - Sort SDK module sources list. r=Mossop
MozReview-Commit-ID: 5IV9BsvU8sn

--HG--
extra : source : 8d4c2f001354b186da9e411d2ff1def458d00efc
2017-08-02 13:54:30 -07:00
Kris Maglione 9cc6707daf Bug 1350646: Part 1 - Remove addon-sdk moz.build generation gunk. r=Mossop
MozReview-Commit-ID: GMlOFoosVQZ

--HG--
extra : source : 67c251e2c9db1d42a8de6d09a44e9e2f7be084a4
2017-08-02 13:51:40 -07:00
Jonathan Watt 0802c22f8d Bug 1388939, part 7 - Give clear names to the nsFrameManager methods for unregistering undisplayed style contexts. r=dholbert
MozReview-Commit-ID: EFtKqKBOPQH
2017-08-01 17:12:44 +01:00
Jonathan Watt 80b5a0301e Bug 1388939, part 6 - Give clear names to the nsFrameManager methods for obtaining the linked list of undisplayed style contexts for a node. r=dholbert
MozReview-Commit-ID: 5EuaFzCW4Lh
2017-08-01 17:03:07 +01:00
Jonathan Watt 26a2ad3013 Bug 1388939, part 5 - Rename nsFrameManager::GetUndisplayedContent to GetDisplayNoneStyleFor. r=dholbert
MozReview-Commit-ID: Kpe6DcBP8yX
2017-08-01 15:27:59 +01:00
Jonathan Watt bde9e960a3 Bug 1388939, part 4 - Give clear names to the nsFrameManager methods for updating the registered undisplayed style contexts. r=dholbert
MozReview-Commit-ID: LZuleDSt6LR
2017-08-01 15:11:02 +01:00
Jonathan Watt b1c7a0f236 Bug 1388939, part 3 - Give clear names to the nsFrameManager methods for registering undisplayed style contexts. r=dholbert
MozReview-Commit-ID: 1i2ilfWXcvo
2017-08-01 15:04:36 +01:00
Jonathan Watt bd066a2927 Bug 1388939, part 2 - Pair up and document the various nsFrameManager methods for keeping track of "undisplayed" style contexts. r=dholbert
MozReview-Commit-ID: F8GvrXdvLEm
2017-08-01 14:43:15 +01:00
Jonathan Watt e8f2e75737 Bug 1388939, part 1 - Rename nsFrameManagerBase::mUndisplayedMap to mDisplayNoneMap. r=dholbert
MozReview-Commit-ID: 94vA4YJ2u
2017-08-01 13:50:23 +01:00
Phil Ringnalda ca2c01b0ad Backed out 22 changesets (bug 1350646) for talos damp failures
Backed out changeset c3108aebee35 (bug 1350646)
Backed out changeset ee8f7fa9d410 (bug 1350646)
Backed out changeset 79e77c06ff44 (bug 1350646)
Backed out changeset 5584fdcd2ee0 (bug 1350646)
Backed out changeset 7571b064a77e (bug 1350646)
Backed out changeset 7f65323c56f9 (bug 1350646)
Backed out changeset 10bbf7c53afe (bug 1350646)
Backed out changeset e40544ead983 (bug 1350646)
Backed out changeset 5eb77e6de0a3 (bug 1350646)
Backed out changeset 6d9244a8ac40 (bug 1350646)
Backed out changeset 13110c98b0fd (bug 1350646)
Backed out changeset 096ff315b48b (bug 1350646)
Backed out changeset 57500d9ea832 (bug 1350646)
Backed out changeset 5a45d9e25a00 (bug 1350646)
Backed out changeset e931e4ff5e11 (bug 1350646)
Backed out changeset d914c050c965 (bug 1350646)
Backed out changeset 35c4d4cd77c7 (bug 1350646)
Backed out changeset 7687db575011 (bug 1350646)
Backed out changeset c68367bb0eb3 (bug 1350646)
Backed out changeset 3ca040743aeb (bug 1350646)
Backed out changeset 8d4c2f001354 (bug 1350646)
Backed out changeset 67c251e2c9db (bug 1350646)

MozReview-Commit-ID: GLM80BkVx85
2017-08-09 20:03:17 -07:00
sotaro 276b8889d3 Bug 1388639 - Use KnowsCompositor instead of ShadowForwarder in MaskImageData and MaskLayerImageCache r=nical 2017-08-10 11:43:11 +09:00
Andrew Osmond b15e213fc9 Bug 1388733 - Ensure animations resume when the image surfaces are discarded while still decoding. r=tnikkel
When an animated image has been discarded, we avoided marking the
composited frame invalid unless it had been previously decoded. Most of
the time this was fine, but if the animated image was still decoding for
the first time, then we still had a composited frame lingering that we
did not mark as invalid. As a result, when we called
RasterImage::LookupFrame (and indirectly
FrameAnimator::GetCompositedFrame), it would always return the
composited frame. This meant that RasterImage::Decode would never be
called to trigger a redecode. At the same time,
FrameAnimator::RequestRefresh would not cause us to advance the frame
because the state was still discarded.

With this patch we separate out the concepts of "has ever requested to
be decoded" and "has ever completed decoding." The former is now used to
control whether or not a composited frame is marked as invalid after we
discover we currently have no surface for the animation -- this solves
the animation remaining frozen as we now request the redecode as
expected. The latter remains used to determine if we actually know the
total number of frames.
2017-08-09 22:26:55 -04:00
Yoshi Huang 9a74f292a9 Bug 1388630 - rewrite layout/reftests/bugs/331809-1.html for new data: URI behavior. r=smaug 2017-08-10 10:20:05 +08:00
Honza Bambas 9d703fed04 Bug 1388192 - Drop result principal URI from a cloned session history entry when opening view-source: page. r=bz 2017-08-09 11:50:00 -04:00
Thomas Wisniewski c20797f0fa Bug 1261289 - Allow webextensions to open view-source links. r=mixedpuppy, r=smaug
MozReview-Commit-ID: A8TGE448vBs
2017-06-20 15:23:49 -04:00
Matthew Gregan db34390cd9 Bug 1388236 - Remove now obsolete AudioChannelConfig in favour of AudioPlaybackConfig. r=alwu 2017-08-10 13:00:09 +12:00
Matthew Gregan 526a07e856 Bug 1388236 - Remove B2G-only AudioChannel code from dom/audiochannel. r=alwu 2017-08-10 13:00:09 +12:00
Matthew Gregan fd14b55d10 Bug 1388236 - Remove B2G-only AudioChannel code from dom/ipc. r=jwwang 2017-08-10 13:00:09 +12:00
Matthew Gregan 3efbb6fca4 Bug 1388236 - Remove B2G-only AudioChannel code from HTMLMediaElement. r=jwwang 2017-08-10 13:00:08 +12:00
Matthew Gregan f50f2d9e15 Bug 1388236 - Remove B2G-only AudioChannel code from WebAudio. r=padenot 2017-08-10 13:00:08 +12:00
Matthew Gregan 2f8cc7804c Bug 1388236 - Remove B2G-only AudioChannel code from MSG. r=padenot 2017-08-10 13:00:08 +12:00
Matthew Gregan 89fde0ce0f Bug 1388236 - Remove B2G-only AudioChannel code from media playback. r=jwwang 2017-08-10 13:00:07 +12:00
Matthew Gregan f4d992a821 Bug 1388229 - Remove B2G-only audio stream type handling. r=kamidphish 2017-08-10 13:00:07 +12:00
Matthew Gregan b359c3ce6d Bug 1388229 - Update libcubeb to revision d59010139. r=kamidphish 2017-08-10 13:00:07 +12:00
Tooru Fujisawa 62b297a9cc Bug 1385310 - Set bufStart and toStringStart for generator expression functions. r=nbp 2017-08-10 09:43:35 +09:00
Tooru Fujisawa e50adffb61 Bug 1379842 - Check content principal when dragging and dropping from browser. r=smaug 2017-08-10 09:43:35 +09:00
Mason Chang cddef9fa41 Bug 1386966. Coalesce OMTP drawtarget flushes until finished painting a layer. r=dvander 2017-08-09 08:24:15 -07:00
Ryan VanderMeulen 52ffe4157f Merge m-c to inbound. a=merge 2017-08-09 18:48:56 -04:00
Ryan VanderMeulen 2e6670c78e Merge autoland to m-c. a=merge 2017-08-09 18:47:59 -04:00
Brendan Dahl 02dc1567cd Bug 1387170 - Use custom clipboard constructor instead of singleton. r=jrmuizel
This allows instances of the clipboard to be created (like it
was pre-headless).
2017-08-09 09:49:50 -07:00
Brendan Dahl d1dd2ea172 Bug 1387168 - Use custom clipboard constructor instead of singleton. r=jrmuizel
This allows instances of the clipboard to be created (like it
was pre-headless).
2017-08-09 09:46:51 -07:00
Mason Chang ce7bf90ba4 Bug 1386965 - Support async painting component-alpha layers. r=dvander 2017-08-09 09:39:07 -07:00
Eitan Isaacson b6d69628bd Bug 1385372 - Allow same id in aria-owns. r=surkov 2017-08-09 12:33:44 -04:00
Dylan Roeh 3feb883ded Bug 1366770 - Implement ContentListener.onFullScreen() for custom tabs. r=snorp 2017-08-09 10:02:22 -05:00
Kris Maglione 6e7723acd2 Bug 1350646: Part 21 - Remove SDK api-utils and dependent modules. r=Mossop
MozReview-Commit-ID: L6tBQ3YdgEI

--HG--
extra : rebase_source : adf0a8e860f6abc23018c392092c58f2a479ea09
2017-08-05 22:54:47 -07:00
Kris Maglione bfa70ae771 Bug 1350646: Part 20 - Remove remaining SDK content modules. r=Mossop
MozReview-Commit-ID: EJXQo7yj2NJ

--HG--
extra : rebase_source : ef58fa63f84474881b8f3190c255f346c0033f52
2017-08-05 22:50:30 -07:00
Kris Maglione f0ed5fc114 Bug 1350646: Part 19 - Remove SDK passwords modules. r=Mossop
MozReview-Commit-ID: Htgixg6LI4x

--HG--
extra : rebase_source : 33ba6b40bc0bf347493c0b9a755f166aa66484de
2017-08-05 22:46:28 -07:00
Kris Maglione b07ea83d51 Bug 1350646: Part 18 - Remove SDK MVC modules. r=Mossop
MozReview-Commit-ID: bFrqTxEs4S

--HG--
extra : rebase_source : b0b1d76685cb7fa716cdf2ba27132daa6a10ef03
2017-08-05 22:43:41 -07:00
Kris Maglione fbdc133e1f Bug 1350646: Part 17 - Remove SDK DOM events modules. r=Mossop
MozReview-Commit-ID: C8gLoYwRLej

--HG--
extra : rebase_source : 95651dfabeac3f51d53985c83651ac04eb045bca
2017-08-05 22:42:18 -07:00
Kris Maglione fec70b43c3 Bug 1350646: Part 16 - Remove SDK notifications module. r=Mossop
MozReview-Commit-ID: EoOMXp70MQo

--HG--
extra : rebase_source : ead4b24be284b23425963334e58f81a93e369152
2017-08-05 22:39:51 -07:00
Kris Maglione cf255b4ec3 Bug 1350646: Part 15 - Remove SDK storage modules. r=Mossop
MozReview-Commit-ID: 665RjBKhmqs

--HG--
extra : rebase_source : a6039fa15cc037c34517471beb80a5150e1c90fe
2017-08-05 22:38:31 -07:00
Kris Maglione 454d9a960f Bug 1350646: Part 14 - Remove SDK net/request modules. r=Mossop
MozReview-Commit-ID: 5z6sLzpLWSo

--HG--
extra : rebase_source : 50396983cabe8a07268d6cbcd383489b3f128a04
2017-08-05 22:37:39 -07:00
Kris Maglione 964e96474a Bug 1350646: Part 13 - Remove several SDK test modules. r=Mossop
MozReview-Commit-ID: F5AULX9DC5B

--HG--
extra : rebase_source : 077e792e034126bd3d4c3b43b299fe8aea668624
2017-08-05 22:33:46 -07:00
Kris Maglione 6e69163c18 Bug 1350646: Part 13 - Remove most SDK io modules. r=Mossop
MozReview-Commit-ID: LoAVInRE6Nt

--HG--
extra : rebase_source : 5d53e64a859e8aa8d25e71245c8c6939dd1db58f
2017-08-05 22:05:06 -07:00
Kris Maglione 09ee723f3f Bug 1350646: Part 12 - Remove SDK simple-prefs module. r=Mossop
MozReview-Commit-ID: Abh0zfzGP0h

--HG--
extra : rebase_source : 832217e1bbafc76847275a42e32861a1d325e9e5
2017-08-05 21:39:28 -07:00
Kris Maglione 6227fd64c0 Bug 1350646: Part 11 - Remove SDK stylesheet modules. r=Mossop
MozReview-Commit-ID: BwWPklao5iS

--HG--
extra : rebase_source : 5ff9844d3148dcb418794279f534f405ed4ab550
2017-08-05 21:38:01 -07:00
Kris Maglione 7fa8496564 Bug 1350646: Part 10 - Remove SDK tabs/windows modules. r=Mossop
MozReview-Commit-ID: 4VlwKUNXo8O

--HG--
extra : rebase_source : cfa4e9c007bed72cc955cf600670d1c9a79a88ab
2017-08-05 22:02:47 -07:00
Kris Maglione 8834b891f5 Bug 1350646: Part 9 - Remove SDK l10n modules. r=Mossop
MozReview-Commit-ID: 8CZq3jjxnv0

--HG--
extra : rebase_source : 69ab704f7ec5df123192f5804f8a3e692c172253
2017-08-05 21:29:31 -07:00