Commit Graph

148652 Commits

Author SHA1 Message Date
Gaia Pushbot
d59c02b339 Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/cd489d362898
Author: Bob Silverberg <bob.silverberg@gmail.com>
Desc: Merge pull request #12449 from teodosia/fix-capture-video

Bug 920598 - Fix failing /camera/test_camera_capture_video.py on master

========

https://hg.mozilla.org/integration/gaia-central/rev/221338354449
Author: Teodosia Pop <teodosia.pop@gmail.com>
Desc: Bug 920598 - Fix failing /camera/test_camera_capture_video.py on master
2013-09-25 13:45:28 -07:00
Matt Brubeck
f228d53ab5 Bug 900072 - Work around line wrapping bugs in flyoutpanels [r=sfoster] 2013-09-25 13:42:46 -07:00
Matt Brubeck
4ff90a1693 Bug 920333 - Use a white background by default for thumbnail tile icon and label [r=sfoster] 2013-09-25 13:42:09 -07:00
Matt Brubeck
33acc6693c Bug 875924 - Initialize the NewTabUtils thumbnail expiration filter [r=sfoster] 2013-09-25 13:41:29 -07:00
Boris Zbarsky
35745162c2 Bug 919603 followup. Make sure EventTarget has a [Global] descendant, so it actually works right. r=peterv pending, because CLOSED TREE 2013-09-25 16:07:08 -04:00
Gregory Szorc
ea4a1ee18e NO BUG Add Vagrantfile for documentation build environment
DONTBUILD (NPOTB)
2013-09-25 13:05:57 -07:00
Ryan VanderMeulen
5382a14a1e Backed out changeset 272dabb40b3d (bug 843019) for mochitest-bc failures. 2013-09-25 15:29:06 -04:00
Brian Smith
275e5cbaaf Bug 920248: Temporarily disable TLS false start, r=keeler, r=wtc
--HG--
extra : rebase_source : 4fc35de2d6e2dc99de11b2a2d0c0f3ebe1de8b97
2013-09-25 12:00:36 -07:00
L. David Baron
38a6d76524 Bug 828312 patch 11: Don't generate change hints for restyling of later continuations, since the handling of the change hints from the first continuation is required to do the necessary work. r=bzbarsky
This depends on bug 898333 in order to avoid causing:
TEST-UNEXPECTED-FAIL | chrome://mochitests/content/chrome/dom/tests/mochitest/chrome/test_focused_link_scroll.xul | Assertion count 1 is greater than expected range 0-0 assertions.
due to the assertion:
###!!! ASSERTION: Shouldn't be trying to restyle non-elements directly: '!aContent || aContent->IsElement()', file ../../../layout/base/nsStyleChangeList.cpp, line 62

The assertion count change in layout/generic/crashtests/571995.xhtml is
expected because it changes us from having 7 of:
###!!! ASSERTION: Shouldn't be trying to restyle non-elements directly: '!aContent || aContent->IsElement()', file ../../../layout/base/nsStyleChangeList.cpp, line 62
with the stack:
  mozilla::ElementRestyler::CaptureChange(nsStyleContext*, nsStyleContext*, nsChangeHint) [layout/base/nsChangeHint.h:191]
  mozilla::ElementRestyler::RestyleSelf(nsRestyleHint) [layout/base/RestyleManager.cpp:2304]
to only having one.  This is expected since this patch changes
RestyleSelf to only call CaptureChange for the first continuation or
block-in-inline sibling.
2013-09-25 12:28:08 -07:00
L. David Baron
b19b847ec9 Bug 828312 patch 10: Add assertions to check that handling of nsChangeHint_ChildrenOnlyTransform doesn't need to check continuations. r=bzbarsky
This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.
2013-09-25 12:28:08 -07:00
L. David Baron
b0e32cdf38 Bug 828312 patch 9b: Make handling of RecomputePosition hint check continuations. r=bzbarsky
This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.
2013-09-25 12:28:08 -07:00
L. David Baron
31df6fcc33 Bug 828312 patch 9a: Make sticky positioning handle block-in-inline splits correctly. r=dholbert
This assumes that the specification for how position:sticky behaves for
block-in-inline splits matches the specification for position:relative,
in other words, matches
http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level .

It's also necessary for patch 9b since the new rule for handling of
style change hints is that a style change hint applies to all
continuations and all block-in-inline siblings ("special siblings").

The change in StickyScrollContainer::GetScrollRanges is really the fix
for bug 918994, but adjusted for the change here to use block-in-inline
siblings ("special siblings") in addition to continuations.
2013-09-25 12:28:08 -07:00
L. David Baron
4e7bd63a47 Bug 828312 patch 8: Make handling of UpdateEffects hint check continuations. r=bzbarsky
This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.
2013-09-25 12:28:07 -07:00
L. David Baron
eddf04ceed Bug 828312 patch 7: Use more typical loop structure and don't mutate |frame| in UpdateOverflow hint handling. r=bzbarsky 2013-09-25 12:28:07 -07:00
L. David Baron
2ffabf4425 Bug 828312 patch 6: Make early transform handling check continuations. r=bzbarsky
This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.
2013-09-25 12:28:07 -07:00
L. David Baron
7bb0d89ddf Bug 828312 patch 5: Don't handle UpdateCursor more than once per round of style change processing, since it's global. r=bzbarsky
(This is part of the patch stack making change hints apply across all
continuations and block-in-inline siblings.  In this case, however, the
change hint only needs to apply once, globally.)
2013-09-25 12:28:07 -07:00
L. David Baron
2c713d5f2d Bug 898209 patch 16: Move a comment that should have been moved in patch 15. No review. 2013-09-25 12:28:07 -07:00
L. David Baron
06fe81c384 Bug 898333, patch 2: Change RestyleManager::Restyle's tree traversal to reach next-continuations (and same-display block-in-inline siblings) from their prev-continuation rather than from their parent. r=bzbarsky
This patch fundamentally makes three changes:

 (1) Change the way RestyleSelf is used so that it is called in a loop,
     over all of the same-style continuations and block-in-inline
     siblings.
     (I had a note here reminding myself:
       TODO: Don't set hints for descendants!
     but I no longer remember what it meant.)

 (2) Change the traversal of children to traverse all of the children of
     the items traversed in (1).

 (3) When traversing children, skip children that are continuations,
     since we already reached them in (1) and (2).

A later patch will change the RestyleSelf loop to copy for the later
continuations rather than repeating the work.  This will mean reverting
many of the RestyleSelf changes contained here.

Some of the pieces marked temporary will be removed in bug 828312 patch
11, and the rest should hopefully be removed in bug 918064.
2013-09-25 12:28:07 -07:00
L. David Baron
d6992d5f88 Bug 898333, patch 1: Restyle the :after pseudo-element after the content children. r=bzbarsky 2013-09-25 12:28:07 -07:00
Ryan VanderMeulen
cd6b6bc4ae Merge m-c to fx-team. 2013-09-25 14:57:55 -04:00
Ryan VanderMeulen
7be3a6188c Merge m-c to b2g-inbound. 2013-09-25 14:57:08 -04:00
Michael Comella
e647d463c1 Bug 920642: Remove dead files from bug 870171. r=rnewman 2013-09-25 11:52:48 -07:00
Ryan VanderMeulen
57f4628f1d Merge the last PGO-green inbound changeset to m-c. 2013-09-25 14:51:55 -04:00
Fabrice Desré
ceae424e26 Bug 920532 - Lots of "System JS : ERROR file:///builds/slave/test/build/b2g/components/MozKeyboard.js:380 TypeError: this._inputcontext is null" r=me 2013-09-25 11:42:40 -07:00
Ryan VanderMeulen
0c96be1826 Merge fx-team to m-c. 2013-09-25 14:38:02 -04:00
Gaia Pushbot
ccd8d6b904 Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/1bfa9e10dc2b
Author: Salvador de la Puente González <salva@unoyunodiez.com>
Desc: Merge pull request #12387 from leob2g/Bug_915992_Changing_default_configuration_to_Postpaid

[Cost Control] Bug_915992_Changing_default_config_to_Postpaid r=lodr

========

https://hg.mozilla.org/integration/gaia-central/rev/ebc57c722136
Author: sarath27.vs <sarath27.vs@lge.com>
Desc: Changing default config to Postpaid
2013-09-25 11:30:23 -07:00
Ryan VanderMeulen
78dc993775 Merge b2g-inbound to m-c. 2013-09-25 14:27:43 -04:00
David Keeler
00014bbf23 bug 914716 - get seccomp-bpf sandboxing to compile on x86_64 r=kang 2013-09-25 11:14:34 -07:00
Olli Pettay
bbaaa38cb8 Bug 916685, no need to store empty event handlers, r=bz
--HG--
extra : rebase_source : 4a1b7e5e177744438f6bb59d58b0e2f6e2fe3b5c
2013-09-26 23:01:19 +03:00
Eitan Isaacson
1b67c39284 Bug 920844 - Improve listbox support. r=marcoz 2013-09-26 12:59:21 -07:00
Patrick McManus
34b0da7c85 bug 918265 - deal with long www-authenticate fields r=sworkman
--HG--
extra : rebase_source : 55e06159aa7f6464c07d3736580af26090a87179
2013-09-26 14:54:59 -04:00
Honza Bambas
b2421609eb Bug 914824 - HTTP cache v1/v2 general timing and hit rate compare telemetry, r=michal 2013-09-26 21:37:04 +02:00
Honza Bambas
d41a61b56f Bug 913813 - HTTP cache v1/v2 miss/hit time compare telemetry, r=michal 2013-09-26 21:37:03 +02:00
Glenn Randers-Pehrson
6cce99e286 Bug 841734 - Update libpng to version 1.6.6. r=jmuizelaar 2013-09-26 14:39:44 -04:00
Ryan VanderMeulen
7325bd97fa Bug 909382 - Upgrade SQLite to version 3.8.0.2 - Mozilla changes. r=mak 2013-09-26 14:29:45 -04:00
Ryan VanderMeulen
251f350ea7 Bug 909382 - Upgrade SQLite to version 3.8.0.2 - SQLite changes. r=mak 2013-09-26 14:29:45 -04:00
Ryan VanderMeulen
85b2edc046 Backed out 3 changesets (bug 920179, bug 920633, bug 920800) for Windows |make package| crashes on a CLOSED TREE.
Backed out changeset bb0041643a0f (bug 920800)
Backed out changeset 24818d9b7470 (bug 920633)
Backed out changeset d49b0f47b05a (bug 920179)
2013-09-26 14:22:43 -04:00
Ben Turner
12170df49b Bug 920800 - 'Add openKeyCursor() to IDBObjectStore'. r=janv. 2013-09-25 16:11:47 -07:00
Gaia Pushbot
c6bec42567 Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/0964e9ebb851
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #12369 from KevinGrandon/bug_919591_contacts_defer_scripts

Bug 919591 - Defer contact scripts r=vingtetun,francisco

========

https://hg.mozilla.org/integration/gaia-central/rev/013acf302f09
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 919591 - Defer contact scripts
2013-09-25 11:05:22 -07:00
Gaia Pushbot
90a5f3f90a Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/df1654f408ae
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 918576 - [B2G][SMS] The text MMS does not appear above the send button when attaching the first attachment r=gnarf

* compose.js: trigger the input event after changing the type
* thread_ui.js: don't do anything in the asynchronous getSegmentInfoForText
  callback if the type is not SMS at this point

========

https://hg.mozilla.org/integration/gaia-central/rev/68e5065474a4
Author: Ryan VanderMeulen <ryanvm@gmail.com>
Desc: Revert "Merge pull request #12435 from zacc/bug917523"

This reverts commit 3ca1ab7595d79f5a3b8351ed1c2a4fdaa664404b, reversing
changes made to bdb0cbb93224aa1f09afeb9c7a7fc3a66c61d28d.
2013-09-25 10:31:05 -07:00
Gaia Pushbot
d14f8fa6cc Bumping gaia.json for 1 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/9d76b9a19325
Author: Fabrice Desré <fabrice@desre.org>
Desc: Bug 919579 - Silent the SINGLE_VARIANT_CONF_FILE loading error r=vingtetun
2013-09-25 10:30:44 -07:00
Gaia Pushbot
50a57c17ee Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/609201aba1a4
Author: James Lal <james@lightsofapollo.com>
Desc: Merge pull request #12379 from lightsofapollo/backout-incremental-commits

Revert "Merge pull request #10981 from ganesh7/bug_819628"

========

https://hg.mozilla.org/integration/gaia-central/rev/c5123c3ba5cd
Author: James Lal <james@lightsofapollo.com>
Desc: Revert "Merge pull request #10981 from ganesh7/bug_819628"

This reverts commit 8a91b987b57e01d03eded32c33a68595bd0949cb, reversing
changes made to dfff18a59944e64f527030ff71223f30d8f45840.
2013-09-25 10:30:23 -07:00
Martijn Wargers
4b71a8a7a5 Bug 918842 - B2G mochitest app doesn't attach the SpecialPowers object to popup windows. r=jmaher 2013-09-25 19:09:30 +02:00
CJKu
4125a02fd8 Bug 909670 - Test case for for the MediaRecorder::Session. r=jsmith 2013-09-26 09:40:41 -04:00
CJKu
45309dc711 Bug 909670 - MediaRecorder - Implement MediaRecorderSession. r=roc 2013-09-26 09:40:40 -04:00
Margaret Leibovic
8302763d2a Bug 912994 - Update top sites query to exclude reading list items. r=wesj 2013-09-25 08:56:56 -07:00
Gaia Pushbot
301152445d Bumping gaia.json for 3 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/15e0ed73da28
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 920561 - Ensure LazyLoader.load does not slow down app rendering. r=mbudzynski

========

https://hg.mozilla.org/integration/gaia-central/rev/c02e61476598
Author: Vivien Nicolas <21@vingtetun.org>
Desc: Bug 920522 - Remove icc_helper.js from the Settings apps startup path. r=kaze

========

https://hg.mozilla.org/integration/gaia-central/rev/a77b52ece92f
Author: Corey Frang <gnarf37@gmail.com>
Desc: Revert "Bug 917463 - [Clock] Implement scrolling inertia in inline time picker for Timers - r=jugglinmike"

This reverts commit 41f2c409c8baf9e5375ab0d41d0bbc3fe4ecf492.
2013-09-25 08:55:23 -07:00
Gaia Pushbot
a2f2a59eaf Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/d2f42e82d86f
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #12391 from crdlc/bug-919951

Bug 919951 - DateTimeFormat is no longer needed after deleting the clock in the landing page

========

https://hg.mozilla.org/integration/gaia-central/rev/fabc1e9f8884
Author: crdlc <crdlc@tid.es>
Desc: Bug 919951 - DateTimeFormat is no longer needed after deleting the clock in the landing page
2013-09-25 08:30:32 -07:00
Gaia Pushbot
adb4541f1c Bumping gaia.json for 1 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/493172de7bb2
Author: Dave Hunt <dave.hunt@gmail.com>
Desc: Bug 920473 - Bump gaiatest version to 0.15. r=bebe
2013-09-25 07:55:23 -07:00
Gaia Pushbot
51f3d17458 Bumping gaia.json for 2 gaia-central revision(s) a=gaia-bump
========

https://hg.mozilla.org/integration/gaia-central/rev/aa7afb132e75
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Merge pull request #12440 from jmcanterafonseca/bug_export_checks

Bug 920476 [Contacts] Not possible to select a contact to be exported

========

https://hg.mozilla.org/integration/gaia-central/rev/555cbb489dd0
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Bug 920476 [Contacts] Not possible to select a contact to be exported
2013-09-25 07:40:23 -07:00