Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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 수정일시