This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

Buscar en Ayuda

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.

Learn More

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

  • 1 respuesta
  • 1 tiene este problema
  • 1 visita
  • Última respuesta de 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>

Modificadas por cor-el el

Todas las respuestas (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

Modificadas por NoahSUMO el