Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

With Mac FireFox version 24 and above, the java awt component Canvas is not getting visible in browser screen.

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: NoahSUMO

more options

Java awt Canvas image is not getting visible with Mac FireFox 24 and above version. The same Canvas image is displaying properly with Windows FireFox 24 and above.

Please let us know, is there any extra steps needed to make this working or is this an issue with Mac FireFox ?

public class CanvasExample extends Applet
{
   public void init() {
    this.add(new RedOval());
  }

  public Dimension getMinimumSize() {
    return new Dimension(50, 100);
  }

  public Dimension getPreferredSize() {
    return new Dimension(150, 300);
  }

  public Dimension getMaximumSize() {
    return new Dimension(200, 400);
  }
}

class RedOval extends Canvas
{

  public void paint(Graphics g) {

    Dimension d = this.getSize();
    g.setColor(Color.red); 
    g.fillOval(0, 0, d.width, d.height);

  }
}
Java awt Canvas image is not getting visible with Mac FireFox 24 and above version. The same Canvas image is displaying properly with Windows FireFox 24 and above. Please let us know, is there any extra steps needed to make this working or is this an issue with Mac FireFox ? <pre><nowiki>public class CanvasExample extends Applet { public void init() { this.add(new RedOval()); } public Dimension getMinimumSize() { return new Dimension(50, 100); } public Dimension getPreferredSize() { return new Dimension(150, 300); } public Dimension getMaximumSize() { return new Dimension(200, 400); } } class RedOval extends Canvas { public void paint(Graphics g) { Dimension d = this.getSize(); g.setColor(Color.red); g.fillOval(0, 0, d.width, d.height); } }</nowiki></pre>

この投稿は cor-el により に変更されました

すべての返信 (1)

more options

I would recommend you file a bug at https://bugzilla.mozilla.org/ using all the information you have given here. And I will do my best to have a developer comment on it. This is outside most volunteers knowledge.

Please post the bug link here after you have created the bug.

The closest report I could find on this was: http://stackoverflow.com/questions/22247304/mac-osx-appletviewer-doesnt-display-anything

この投稿は NoahSUMO により に変更されました