The first official 20190929 builds are out

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

The first official 20190929 builds are out

Post by Josa »

Previous Nightly Builds thread 20190928

The first official 20190929 NIGHTLY builds are out
.The official Firefox 70 Beta 11 builds are not yet out

Previous NIGHTLY: 20190928 (Fx 71.0a1)
Previous BETA: 20190927 (Fx 70.0b10)

Mozilla Inbound Builds
Treeherder
Release Notes: NIGHTLY | BETA
Changelogs: NIGHTLY | BETA


Fixed:
  1. NIGHTLY +6
  2. #1582353 [Core:Audio/Video: Playback]-Make GPU/RDD decoder IPC methods use MozPromise [Uns]
  3. #1536747 [Core:Widget: Gtk]-[Wayland] Picture-in-picture video window is not always on top [Lin]
  4. #1583852 [Core:Widget: Gtk]-Don't draw titlebar corners mask for PIP window on X11 [Uns]
  5. #1584492 [Core:Widget: Gtk]-Set and propagate PIP window flag to nsWindow [Uns]
  6. #1583174 [DevTools:Debugger]-No breakable line available in actors/thread.js from BrowserContentToolbox [Uns]
  7. #1583424 [DevTools:Debugger]-Terminating a worker with breakpoint causes blank Debugger [Uns]
  1. Partial Landings/Diagnostic Patches:
    None
  1. Beta 10 -> Beta 11 Changelog +10
  2. #1581903
  3. #1582222 [Core:Audio/Video: cubeb]-Increasing YouTube player speed causes tab crashes without any debug trace [Uns]
  4. #1579585 [Core:CSS Parsing and Computation]-Crash in [@ OOM | large | mozalloc_abort | mozalloc_handle_oom | gkrust_shared::oom_hook::hook | std::alloc::rust_oom | std::collections::hash::map::HashMap<T>::try_resize<T> | std::collections::hash::set::HashSet<T>::insert<T>] [Win]
  5. #1316965 [Core:Disability Access APIs]-Associated label of file upload field (input type=file) in Firefox is not read by screen reader [Uns]
  6. #1581773 [Core:Widget: Gtk]-[Wayland] Bookmark popup panel disappears when opening a dropdown [Lin]
  7. #1577740 [Firefox:Address Bar]-"This time, search with" and prefs/options cog/gear icon use too faint a shade of grey as foreground colour on default theme [mac]
  8. #1578856 [Firefox:Address Bar]-browser.fixup.dns_first_for_single_words preference no longer works properly [All]
  9. #1581570 [Firefox:New Tab Page]-bug in spocs placement which causes spocs to not display after a dismiss until next restart [Uns]
  10. #1564248 [Firefox:Tracking Protection]-Double check if the contentblocking.exceptions probe was really needed [Uns]
  11. #1583225 [Web Compatibility:Interventions]-Import WebCompat GoFaster 6.1.0 sources [Uns]

Nightly 71 fixes since 20190901 (Gecko 70) ~1202
Beta 70 fixes since 20190708 (Gecko 69) ~2794

Nightly Blog
Release Calendar
Release Tracking
MozRegression Guide
Last edited by Josa on October 1st, 2019, 2:09 pm, edited 1 time in total.
User avatar
streetwolf
Posts: 2706
Joined: August 21st, 2011, 8:07 am
Location: NJ (USA)

Re: The first official 20190929 builds are not yet out

Post by streetwolf »

For the last week or so random pages will 'dim'. Could be a graphics card driver issue or an Fx issue. This doesn't happen in any other program. It doesn't happen very often but I'd like to see if anyone else is having this anomaly?
Intel i9-13900K | ASUS ROG MAXIMUS Z790 HERO DDR5 | 64GB CORSAIR VENGEANCE DDR5 @ 6600 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
Fanolian
Posts: 940
Joined: February 21st, 2011, 10:14 am

Re: The first official 20190929 builds are not yet out

Post by Fanolian »

Thanks for all the testings on https://my.hko.gov.hk.
Reading about TLS, I think it is a server issue. I guess not all HKO servers support TLS 1.2+. It may explain the intermittent errors.
Anyway, I filed a webcompat issue on this.
User avatar
Omega X
Posts: 8225
Joined: October 18th, 2007, 2:38 pm
Location: A Parallel Dimension...

Re: The first official 20190929 builds are not yet out

Post by Omega X »

streetwolf wrote:For the last week or so random pages will 'dim'. Could be a graphics card driver issue or an Fx issue. This doesn't happen in any other program. It doesn't happen very often but I'd like to see if anyone else is having this anomaly?
I have not seen that before. It could be a color calibration or driver issue.
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: The first official 20190929 builds are not yet out

Post by dickvl »

I noticed that my Tab bar moved to the top again in the current Nightly build.
I still have now empty space at the bottom of the #navigator-toolbox where the Tab should be and the Tab bar has its reduced height, so userChrome.css is working, but positioning the #TabsToolbar at the lower position via "position: absolute;" no longer works.
The Browser Toolbox shows that the rules are still applied, but do not seem to have effect.
Enabling and disabling the menu bar modifies the top value (30px / 0px)
Are there new CSS rules required or is this no longer possible?

Code: Select all

#TabsToolbar {
 -moz-box-ordinal-group: 1000!important
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
}
User avatar
dickvl
Posts: 54161
Joined: July 18th, 2005, 3:25 am

Re: The first official 20190929 builds are not yet out

Post by dickvl »

OK.
I found this discussion on Reddit:
https://www.reddit.com/r/FirefoxCSS/com ... e_or_even/

Adding display:block like suggested works to fix this and have the Tabs back on bottom again.

Code: Select all

#TabsToolbar {
 -moz-box-ordinal-group: 1000!important
 position: absolute !important;
 bottom: 0 !important;
 width: 100vw !important;
 display: block !important;
}
layout.css.xul-box-display-values.survive-blockification.enabled

Bug 1580012 - Turn off blockification of `display: -moz-box` (behind a pref for now)
Bug 1582530 - Turn on `layout.css.xul-box-display-values.survive-blockification.enabled` by default
User avatar
Virtual_ManPL
Posts: 2052
Joined: July 24th, 2008, 5:52 am
Contact:

Re: The first official 20190929 builds are not yet out

Post by Virtual_ManPL »

streetwolf wrote:For the last week or so random pages will 'dim'. Could be a graphics card driver issue or an Fx issue. This doesn't happen in any other program. It doesn't happen very often but I'd like to see if anyone else is having this anomaly?
Happened for me today 2 times, on tab swap whole website page (except 1 image) will go block in my case, it fixes itself when I move mouse pointer/cursor over it.
Virtualfox persona
Tired of constant Firefox UI changes? XUL extensions are not working anymore? Try SeaMonkey, Waterfox Classic, Pale Moon.
User avatar
streetwolf
Posts: 2706
Joined: August 21st, 2011, 8:07 am
Location: NJ (USA)

Re: The first official 20190929 builds are not yet out

Post by streetwolf »

Virtual_ManPL wrote:
streetwolf wrote:For the last week or so random pages will 'dim'. Could be a graphics card driver issue or an Fx issue. This doesn't happen in any other program. It doesn't happen very often but I'd like to see if anyone else is having this anomaly?
Happened for me today 2 times, on tab swap whole website page (except 1 image) will go block in my case, it fixes itself when I move mouse pointer/cursor over it.
Sounds exactly what I am experiencing. Are you overclocking your GPU at all?
Intel i9-13900K | ASUS ROG MAXIMUS Z790 HERO DDR5 | 64GB CORSAIR VENGEANCE DDR5 @ 6600 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
User avatar
Virtual_ManPL
Posts: 2052
Joined: July 24th, 2008, 5:52 am
Contact:

Re: The first official 20190929 builds are not yet out

Post by Virtual_ManPL »

streetwolf wrote:
Virtual_ManPL wrote:
streetwolf wrote:For the last week or so random pages will 'dim'. Could be a graphics card driver issue or an Fx issue. This doesn't happen in any other program. It doesn't happen very often but I'd like to see if anyone else is having this anomaly?
Happened for me today 2 times, on tab swap whole website page (except 1 image) will go block in my case, it fixes itself when I move mouse pointer/cursor over it.
Sounds exactly what I am experiencing. Are you overclocking your GPU at all?
No, I'm overclocking only: CPU, FSB and RAM,
but it's stable, looking at results in: Memtest86+, MemTest64, Prime95, OCCT, LinX and IntelBurnTest.
I don't updated system and drivers for over 1 month, so they can't be cause of this.

I suspect some widely GFX issue in Firefox, not only related to WebRender which you're probably using as compositing.
BTW - in my case, I'm using Direct3D 11 (Advanced Layers) compositing with NVIDIA GeForce GTX 750 Ti.
Virtualfox persona
Tired of constant Firefox UI changes? XUL extensions are not working anymore? Try SeaMonkey, Waterfox Classic, Pale Moon.
Josa
Posts: 7404
Joined: July 28th, 2009, 4:52 pm

Re: The first official 20190929 builds are out

Post by Josa »

Locked