Re: Firefox not displaying text on website(s)

2017-11-17 Thread dekks herton

On 11/16, Sridhar M A wrote:

Yesterday when I updated my system, I got firefox 57. It does appear
to work faster. But, I noticed that the sites I frequent, do not
display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
$HOME/.mozilla and checked again. Same problem :-(

The screenshots can be seen here:

https://imgur.com/lwjhGGu, https://imgur.com/Jcdo1Wg, https://imgur.com/KPyxmFN

Anyone else facing a similar problem?


57 has new built in themes, it's not something stupid as white text on a white 
background is it?


If it matters, except uBlock, I do not have any other extensions. Even
with the extension removed, the behaviour is the same.

Regards,

--
Sridhar M. A.



signature.asc
Description: PGP signature


Re: Firefox not displaying text on website(s)

2017-11-16 Thread Sridhar M A
On Thu, Nov 16, 2017 at 8:44 PM, Vincent Lefevre  wrote:
>
> Note that in the interface, the text is visible. So, it doesn't
> seem to be an external font issue. I suggest that you try the
> "Inspect Element" feature. It can give information about the
> fonts.

Checked the font issue. It shows body to have Arial font, and
sans-serif as fall back. Arial is installed on my system.

Visited slashdot.org using both waterfox (https://imgur.com/mkvyMCS)
and firefox (https://imgur.com/JrhkYE5).
The webdev tool shows the text to be on the page. There is some
rendering issue which is probably not showing it on the actual web
page :-(


-- 
Sridhar M. A.



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Vincent Lefevre
On 2017-11-16 10:28:38 +0530, Sridhar M A wrote:
> Yesterday when I updated my system, I got firefox 57. It does appear
> to work faster. But, I noticed that the sites I frequent, do not
> display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
> $HOME/.mozilla and checked again. Same problem :-(

Note that in the interface, the text is visible. So, it doesn't
seem to be an external font issue. I suggest that you try the
"Inspect Element" feature. It can give information about the
fonts.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Jimmy Johnson

On 11/15/2017 08:58 PM, Sridhar M A wrote:

Yesterday when I updated my system, I got firefox 57. It does appear
to work faster. But, I noticed that the sites I frequent, do not
display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
$HOME/.mozilla and checked again. Same problem :-(

The screenshots can be seen here:

https://imgur.com/lwjhGGu, https://imgur.com/Jcdo1Wg, https://imgur.com/KPyxmFN

Anyone else facing a similar problem?

If it matters, except uBlock, I do not have any other extensions. Even
with the extension removed, the behaviour is the same.

Regards,



I would click Customize and then click Restore Defaults, also make sure 
your addons are up to date.

--
Jimmy Johnson

Ubuntu 16.04 LTS - KDE Plasma 5.8.7 - AMD A8-7600 - EXT4 at sda2
Registered Linux User #380263



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Alexander V. Makartsev
On 16.11.2017 18:03, Greg Wooledge wrote:
> On Thu, Nov 16, 2017 at 03:51:10PM +0500, Alexander V. Makartsev wrote:
>>     $ for f in [sans sans-serif serif monospace];do fc-match $f;done
> Just for the record, you do not want those square brackets.  Not in
> bash or any other Bourne-family shell, at least.
>
Indeed, my mistake. Looks like sleep deprivation finally caught up with me.
This is even worse, with those square brackets this command doesn't work
as intended.
"[sans sans-serif serif monospace]" will be interpreted by shell as
"[sans", "sans-serif", "serif", "monospace]" producing bogus output
without any error messages.

-- 
With kindest regards, Alexander.

⢀⣴⠾⠻⢶⣦⠀ 
⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system
⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org
⠈⠳⣄ 



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Greg Wooledge
On Thu, Nov 16, 2017 at 03:51:10PM +0500, Alexander V. Makartsev wrote:
>     $ for f in [sans sans-serif serif monospace];do fc-match $f;done

Just for the record, you do not want those square brackets.  Not in
bash or any other Bourne-family shell, at least.



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Sridhar M A
On Thu, Nov 16, 2017 at 4:21 PM, Alexander V. Makartsev
 wrote:

> Have you checked font settings in Firefox?

I started with a clean $HOME/.mozilla so that system-wide defaults
would be used. Problem exists.

Checked the font list and set fonts specifically. Same problem.

> $ for f in [sans sans-serif serif monospace];do fc-match $f;done
>
It shows Dejavu fonts which are available in my system.

--
Sridhar M. A.



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Sridhar M A
On Thu, Nov 16, 2017 at 1:36 PM, Jeroen Mathon
 wrote:
> Does the same problem appear when using an older version of firefox?
>
As I had written, it was working fine with the old version.

-- 
Sridhar M. A.



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Alexander V. Makartsev
On 16.11.2017 09:58, Sridhar M A wrote:
> Yesterday when I updated my system, I got firefox 57. It does appear
> to work faster. But, I noticed that the sites I frequent, do not
> display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
> $HOME/.mozilla and checked again. Same problem :-(
>
> The screenshots can be seen here:
>
> https://imgur.com/lwjhGGu, https://imgur.com/Jcdo1Wg, 
> https://imgur.com/KPyxmFN
>
> Anyone else facing a similar problem?
>
> If it matters, except uBlock, I do not have any other extensions. Even
> with the extension removed, the behaviour is the same.
>
> Regards,
>
I'm not experiencing this problem, but I use custom font-manager config
to set some fonts as a system-wide default.

Have you checked font settings in Firefox?
You can use this bash command to check what fonts are substituted for
default fonts in Firefox:
    $ for f in [sans sans-serif serif monospace];do fc-match $f;done

-- 
With kindest regards, Alexander.

⢀⣴⠾⠻⢶⣦⠀ 
⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system
⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org
⠈⠳⣄ 



Re: Firefox not displaying text on website(s)

2017-11-16 Thread Jeroen Mathon
Does the same problem appear when using an older version of firefox?


On 11/16/2017 05:58 AM, Sridhar M A wrote:
> Yesterday when I updated my system, I got firefox 57. It does appear
> to work faster. But, I noticed that the sites I frequent, do not
> display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
> $HOME/.mozilla and checked again. Same problem :-(
>
> The screenshots can be seen here:
>
> https://imgur.com/lwjhGGu, https://imgur.com/Jcdo1Wg, 
> https://imgur.com/KPyxmFN
>
> Anyone else facing a similar problem?
>
> If it matters, except uBlock, I do not have any other extensions. Even
> with the extension removed, the behaviour is the same.
>
> Regards,
>




signature.asc
Description: OpenPGP digital signature


Firefox not displaying text on website(s)

2017-11-15 Thread Sridhar M A
Yesterday when I updated my system, I got firefox 57. It does appear
to work faster. But, I noticed that the sites I frequent, do not
display the text: distrocwatch.com, slashdot.org, gmail, etc. Removed
$HOME/.mozilla and checked again. Same problem :-(

The screenshots can be seen here:

https://imgur.com/lwjhGGu, https://imgur.com/Jcdo1Wg, https://imgur.com/KPyxmFN

Anyone else facing a similar problem?

If it matters, except uBlock, I do not have any other extensions. Even
with the extension removed, the behaviour is the same.

Regards,

-- 
Sridhar M. A.