Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Symbol font is not displaying correctly on mozilla 23.0.1?

  • 6 回覆
  • 9 有這個問題
  • 1 次檢視
  • 最近回覆由 cor-el

more options

I am displaying a html page inside a frame having some Maths symbols, using SYMBOL font. but these symbols are not display correct on mozilla browser. provide some solution.

I am displaying a html page inside a frame having some Maths symbols, using SYMBOL font. but these symbols are not display correct on mozilla browser. provide some solution.

所有回覆 (6)

more options

Can you provide a URL to a page demonstrating the problem?

Did the page display correctly in earlier versions of Firefox (i.e., does the problem seem to be related to changes in Firefox 23 compared with Firefox 22)?

more options

page display is correct on chrome but not in mozilla. I have attached images from chrome and mozilla. on chrome its correct but not on mozilla. any solution?

more options

When you specify the symbols, which method are you using?

  • Unicode (e.g., ⇒ written ⇒) (page encoding should be UTF-8)
  • HTML Entity (e.g., ⇒ written ⇒)
  • <font> or <span> tag specifying a symbol font

The first two have a good chance of working on all browsers on all operating systems. The third, not so much.

The following page shows the various Unicode and HTML Entity codes corresponding to many symbols: http://www.alanwood.net/demos/symbol.html

more options

On my page third mehod "<font> or tag specifying a symbol font" is used. there are a lot html pages in which have this issue.

These html pages are source of IFrame in Asp.Net. Is there any workaround/fixes can do without doing any-changes in html pages. i.e. in Asp.Net code. </font>

more options

Hi sangeeta, the problem with writing code to solve this problem is that you likely need to create a table or a pair of arrays to contain the corresponding characters. As long as you are going to do that, it might be easier to edit the pages. Or add an external script to those pages to "fix" the references.

If you are saying that the HTML pages are out of your control, that's harder...

Is it an option to load the page dynamically onto your server so it can be processed by ASP.Net and then served using a URL from your server?

If not, are your page and the framed page on the same server? In that case, perhaps a JavaScript function that "fixes" the page could be useful.

If not, it's hard to see how you can overcome the "same origin" security constraints and get to the framed page.

more options

Websites need to use Unicode replacements for such symbols instead of an 8 bit font that maps on the (extended) ASCII set.

由 NoahSUMO 於 修改