The Official 20170814 builds are out

Discussion about official Mozilla Firefox builds
Josa
Posts: 7364
Joined: July 28th, 2009, 4:52 pm

The Official 20170814 builds are out

Post by Josa »

Previous Nightly Builds thread 20170813

The Official 20170814 NIGHTLY builds are out
.The Official Firefox 56 Beta 3 builds are not yet out

Previous NIGHTLY: 20170813 (Fx 57.0a1)
Previous BETA: 20170811 (Fx 56.0b2)

Tinderbox Builds
Treeherder
Release Notes: NIGHTLY | BETA
Changelogs: NIGHTLY | BETA


Fixed:
  1. NIGHTLY +19
  2. #1389798 [Core:Build Config]-XML Parsing Error on network error page [Uns][]
  3. #1389963 [Core:Build Config]-Backout "Move the override chrome entries from language manifest" [Uns][]
  4. #1382925 [Core:CSS Parsing and Computation]-stylo: Keep the UA parts of the stylist across changes to document sheets [Uns][]
  5. #1387956 [Core:CSS Parsing and Computation]-stylo: Need to measure ComputedValues together during memory reporting [Uns][]
  6. #1389681 [Core:CSS Parsing and Computation]-stylo: Move NoteDirty* from nsIContent to Element and stop doing style traversals for text node insertions [Uns][]
  7. #1389790 [Core:CSS Parsing and Computation]-Crash in mozilla::ServoStyleContext::GetCachedInheritingAnonBoxStyle [Win][]
  8. #1299363 [Core:DOM]-Implement custom element v1 upgrade algorithm [Uns][dom-ce-m2]
  9. #1351148 [Core:DOM: Events]-Add an event queue to nsThread for input events and annotate input IPC messages to use it [Uns][]
  10. #1175033 [Core:General]-support custom use counters that can be incremented from C++ [Uns][]
  11. #1389381 [Core:JavaScript Engine]-16 Second Pause in ExtensionUtils.jsm's truncate() [Uns][[qf]]
  12. #1389215 [Core:Layout: Web Painting]-Stop layerizing in response to margin animations [All][]
  13. #1359397 [Core:Selection]-All Selection methods should refuse to add range that have a different root (collapse, extend, selectAllChildren, etc.) [Uns][]
  14. #1388668 [Core:Web Audio]-AudioDestinationNode uses NS_DispatchToCurrentThread() [Uns][]
  15. #1373958 [Core:XPCOM]-Crash in shutdownhang | ZwCreateUserProcess [Win][]
  16. #1387803 [Core:XPCOM]-Remove the [deprecated] annotation from XPIDL [Uns][]
  17. #1384830 [Firefox:Preferences]-Preferences search is janky and unresponsive [Uns][[photon-preference]]
  18. #1372448 [Toolkit:Add-ons Manager]-No new installation notification for sideload add-ons on <appid> directory [Uns][investigating]
  19. #1384689 [Toolkit:Startup and Profile System]-create a method for directly adding chrome registry entries [Uns][]
  20. #1344519 [Toolkit:WebExtensions: Untriaged]-No contextualIdentity events [Uns][[contextualIdentities], triaged]
  1. Partial Landings/Diagnostic Patches:
  2. #1389740 [Firefox:Theme]-Consolidate URL bar history dropmarker styling [All][[reserve-photon-visual]]
  1. Beta 2 -> Beta 3 Changelog +5
  2. #1385372
  3. #1388046 [Core:Security: Process Sandboxing]-Disable sandbox read restrictions (level 3) in Firefox 56 [Lin][sb+]
  4. #1388628 [Firefox:Session Restore]-Tabs are all restored as blank frequently after restart of applying Firefox 55 update [All][]
  5. #1388584 [Toolkit:Places]-New Version 55, constantly freezes, not responding, bookmarks lost, all bookmark commands do not function. [Win][]
  6. #1388192 [Toolkit:View Source]-regression: view-source is not shown in the address bar and links don't open [All][]

Nightly 57 fixes since 20170802 (Gecko 56) ~702
Beta 56 fixes since 20170613 (Gecko 55) ~2663

Firefox 56 Beta 4 Testday
Nightly Blog
Release Calendar
Release Tracking
MozRegression Guide
Last edited by Josa on August 14th, 2017, 5:59 pm, edited 1 time in total.
ashleylai87
Posts: 218
Joined: December 13th, 2013, 7:40 pm

Re: The Official 20170814 builds are not yet out

Post by ashleylai87 »

[@Gusar]

OH come on....are mozilla seriously disallow context menu on "mouse up" (for mouse gestures)?

Speaking of css, currently I am using DOMi and Inspect Context add-ons to find out object's ID for hiding unwanted firefox stuff . Both extensions will be gone soon.
Example of my hidden userchrome.css content:

Code: Select all

#ctraddon_BMB_subscribeToPageMenuitem { display: none !important; }
#ctraddon_BMB_bookmarkThisPage { display: none !important; }
#ctraddon_BMB_bookmarksToolbar { display: none !important; }
#ctraddon_BMB_subscribeToPageMenupopup, #ctraddon_BMB_subscribeToPageMenupopup+menuseparator { display: none !important; }
#ctraddon_BMB_unsortedBookmarks_m, #ctraddon_BMB_unsortedBookmarks_m+menuseparator { display: none !important; }
and my usercontent.css

Code: Select all

#newtab-customize-button {display: none}
How do you find toolbarbutton-inner-padding, tab-content[pinned] etc without DOM Inspector?



>.< On unrelated issue......
Darn, how to disable "send page to device" on right clicking? I don't use Mozilla Sync service.
Oh.....found the css to remove "send page to device"

Code: Select all

#context-sendpagetodevice { display: none !important; }
#context-sep-sendpagetodevice { display: none !important; }

EDIT:
By the way....I just noticed since version 55 on firefox android, it cannot be moved to SDcard anymore. Is this intended behavior?
Gusar
Posts: 205
Joined: March 17th, 2006, 1:52 pm

Re: The Official 20170814 builds are not yet out

Post by Gusar »

ashleylai87 wrote:OH come on....are mozilla seriously disallow context menu on "mouse up" (for mouse gestures)?
That bug is not WONTFIXed yet, so there's at least some hope we might see it implemented.
ashleylai87 wrote:How do you find toolbarbutton-inner-padding, tab-content[pinned] etc without DOM Inspector?
That's a very good question. I guess you just... don't. I'm going to miss DOM Inspector too. The way I found that code is by going through the Firefox source code, searching for "compact" in all theme-related .css files.
ashleylai87
Posts: 218
Joined: December 13th, 2013, 7:40 pm

Re: The Official 20170814 builds are not yet out

Post by ashleylai87 »

Gusar wrote:
ashleylai87 wrote:OH come on....are mozilla seriously disallow context menu on "mouse up" (for mouse gestures)?
That bug is not WONTFIXed yet, so there's at least some hope we might see it implemented.
ashleylai87 wrote:How do you find toolbarbutton-inner-padding, tab-content[pinned] etc without DOM Inspector?
That's a very good question. I guess you just... don't. I'm going to miss DOM Inspector too. The way I found that code is by going through the Firefox source code, searching for "compact" in all theme-related .css files.

>.<
I need that "mouse up" for gestures......

Sad news indeed....DOMi is really a good tool.
Browsing through all firefox source code is way too tedious....T_T

Another 3 Object ID removal, just how many useless context is there? :evil: :

Code: Select all

#context-searchselect { display: none !important; }
#context-sendlinktodevice { display: none !important; }
#context-sep-sendlinktodevice { display: none !important; }
keztrel
Posts: 27
Joined: May 30th, 2017, 2:53 am

Re: The Official 20170814 builds are not yet out

Post by keztrel »

ashleylai87 wrote: How do you find toolbarbutton-inner-padding, tab-content[pinned] etc without DOM Inspector?
Browser Toolbox
ashleylai87
Posts: 218
Joined: December 13th, 2013, 7:40 pm

Re: The Official 20170814 builds are not yet out

Post by ashleylai87 »

keztrel wrote:
ashleylai87 wrote: How do you find toolbarbutton-inner-padding, tab-content[pinned] etc without DOM Inspector?
Browser Toolbox
At first....I was happy after reading there is DOMi alternative, then I realize in order to use Browser Toolbox, one must install Firefox Developer Edition....... #-o
User avatar
GHM113
Posts: 707
Joined: December 16th, 2015, 3:59 am
Location: Moscow, Russia

Re: The Official 20170814 builds are not yet out

Post by GHM113 »

It looks like I came across Stylo crash, any help is welcome: https://bugzilla.mozilla.org/show_bug.cgi?id=1390179
Sorry for my poor English.
mattcoz
Posts: 1021
Joined: November 7th, 2002, 11:15 pm

Re: The Official 20170814 builds are not yet out

Post by mattcoz »

ashleylai87 wrote:
Gusar wrote:
ashleylai87 wrote:OH come on....are mozilla seriously disallow context menu on "mouse up" (for mouse gestures)?
That bug is not WONTFIXed yet, so there's at least some hope we might see it implemented.
>.<
I need that "mouse up" for gestures......
What are we talking about here? Are they going to break mouse gestures?
User avatar
streetwolf
Posts: 2700
Joined: August 21st, 2011, 8:07 am
Location: NJ (USA)

Re: The Official 20170814 builds are not yet out

Post by streetwolf »

GHM113 wrote:It looks like I came across Stylo crash, any help is welcome: https://bugzilla.mozilla.org/show_bug.cgi?id=1390179
I can confirm this.
Intel i9-13900K | ASUS ROG MAXIMUS Z790 HERO DDR5 | 64GB CORSAIR VENGEANCE DDR5 @ 6400 Mhz.
H100i ELITE CAPELLIX XT Liquid CPU Cooler | PNY 12GB GeForce RTX 3080 Ti | 2 CORSAIR 2TB MP600 PRO XT GEN 4
HX1200 PLATINUM PSU | XENEON 32" IPS UHD 144Hz | BenQ 32" UHD | MS Windows 11 Pro
Romani
Posts: 115
Joined: September 4th, 2009, 8:01 am

Re: The Official 20170814 builds are not yet out

Post by Romani »

GHM113 wrote:It looks like I came across Stylo crash, any help is welcome: https://bugzilla.mozilla.org/show_bug.cgi?id=1390179
I have same problem on Linux, but srash report is very different (OS related?)
User avatar
Edds
Posts: 332
Joined: July 21st, 2010, 1:13 pm
Location: SVK

Re: The Official 20170814 builds are not yet out

Post by Edds »

GHM113 wrote:It looks like I came across Stylo crash, any help is welcome: https://bugzilla.mozilla.org/show_bug.cgi?id=1390179
Maybe you should change Component in the bug to CSS Parsing and Computation, to get more attention.
edit: nvm, Alice already did
Laptop: Intel Core i5 1240P | 16GB DDR4 | 500GB NVMe | 1080p | Win 11
Phone: Samsung S24 Ultra | Android 14
User avatar
GHM113
Posts: 707
Joined: December 16th, 2015, 3:59 am
Location: Moscow, Russia

Re: The Official 20170814 builds are not yet out

Post by GHM113 »

@streetwolf, Romani, Edds Thank you!
Sorry for my poor English.
Eriatile
Posts: 84
Joined: December 27th, 2003, 7:28 am

Re: The Official 20170814 builds are not yet out

Post by Eriatile »

mattcoz wrote:
ashleylai87 wrote:I need that "mouse up" for gestures......
What are we talking about here? Are they going to break mouse gestures?
On mac and Linux context menu appears on mouse down (while on windows it's on mouse up)
The problem for Mac and Linux users is that when they want to use a gesture they can't because context menu appears as soon as they right click.
As far as I understand with legacy extension this behavior was overwriten by changing context menu appearance on mouse up no matter which os was used. This, is not possible with web extension.
User avatar
Alice0775
Posts: 2817
Joined: October 26th, 2007, 11:25 pm
Location: OSAKA

Re: The Official 20170814 builds are not yet out

Post by Alice0775 »

Mozilla should implement its own native mouse gesture like Vivaldi!!!!!!!!!!!!!!!!!
User avatar
WildcatRay
Posts: 7484
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: The Official 20170814 builds are not yet out

Post by WildcatRay »

Alice0775 wrote:Mozilla should implement its own native mouse gesture like Vivaldi!!!!!!!!!!!!!!!!!
The devs won't do it now since you suggested it. [-(
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
Locked