Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Is anyone else experiencing rendering errors in Firefox 17 64bit Ubuntu 12.04

  • 2 回覆
  • 3 有這個問題
  • 1 次檢視
  • 最近回覆由 pwujek

more options

I am experiencing a few problems which do not occur in the Windows version (tested on Vista and Win7) and tested on different Ubuntu machines all at 12.04 Ubuntu.

The main problem seems to be related to positioning of DIVs. DIVs which are meant to follow each other horizontally instead appear on top of each other.

This seems to be related to CSS because the problem only occurs for the application that I am developing, and I have not seen it appear on any external web sites.

One problem that I solved is that CSS border-radius requires that units be specified in Linux but not windows, so: .close-button {

 -moz-border-radius: 18;
 border-radius: 18;

} Fails in Linux and not in Windows, whereas: .close-button {

 -moz-border-radius: 18px;
 border-radius: 18px;

} Works in both Windows and Linux.

I am experiencing a few problems which do not occur in the Windows version (tested on Vista and Win7) and tested on different Ubuntu machines all at 12.04 Ubuntu. The main problem seems to be related to positioning of DIVs. DIVs which are meant to follow each other horizontally instead appear on top of each other. This seems to be related to CSS because the problem only occurs for the application that I am developing, and I have not seen it appear on any external web sites. One problem that I solved is that CSS border-radius requires that units be specified in Linux but not windows, so: .close-button { -moz-border-radius: 18; border-radius: 18; } Fails in Linux and not in Windows, whereas: .close-button { -moz-border-radius: 18px; border-radius: 18px; } Works in both Windows and Linux.

所有回覆 (2)

more options

CSS always requires units, except for zero, so I'm not sure why Firefox on Windows didn't produce the same error...

Some differences between platforms may relate to font differences. However, I don't have a Linux system, so I don't have first-hand experience with particular cases.

more options

The strange thing about the CSS is that no browser than Firefox 17 on Linux failed, Chrome, IE, all work just fine, even Firefox < 17.

I'm sure my problems are basically with CSS, it's just strange that they only show up in Firefox 17 on Linux.