WebEngine.getEngine.Load error thrown for this one site?  Possibly cuz asp?

so I was trying out a sample for a splash screen and it ended up having a WebView so I decided to play around with it.
I decided to try and open up a site for a company I work with, and I get some weird error.
The original site fxexperience works, google works, another site animecrazy.net works, and newegg works.
import javafx.animation.FadeTransition;
import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.geometry.Rectangle2D;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ProgressBar;
import javafx.scene.effect.DropShadow;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.Pane;
import javafx.scene.layout.VBox;
import javafx.scene.web.WebView;
import javafx.stage.Screen;
import javafx.stage.Stage;
import javafx.stage.StageStyle;
import javafx.util.Duration;
import org.w3c.dom.Document;
/** Example of displaying a splash page for a standalone JavaFX application */
public class JavaFXApplication7 extends Application {
  private Pane splashLayout;
  private ProgressBar loadProgress;
  private Label progressText;
  private WebView webView;
  private Stage mainStage;
  private static final int SPLASH_WIDTH = 676;
  private static final int SPLASH_HEIGHT = 227;
  public static void main(String[] args) throws Exception { launch(args); }
  @Override public void init() {
    ImageView splash = new ImageView(new Image("http://shelflogic.com/Images/MainPic.jpg"));
    loadProgress = new ProgressBar();
    loadProgress.setPrefWidth(SPLASH_WIDTH - 20);
    progressText = new Label("Loading hobbits with pie . . .");
    splashLayout = new VBox();
    splashLayout.getChildren().addAll(splash, loadProgress, progressText);
    progressText.setAlignment(Pos.CENTER);
    splashLayout.setStyle("-fx-padding: 5; -fx-background-color: cornsilk; -fx-border-width:5; -fx-border-color: linear-gradient(to bottom, chocolate, derive(chocolate, 50%));");
    splashLayout.setEffect(new DropShadow());
  @Override public void start(final Stage initStage) throws Exception {
    showSplash(initStage);
    showMainStage();
    webView.getEngine().documentProperty().addListener((ObservableValue<? extends Document> observableValue, Document document, Document document1) -> {
        if (initStage.isShowing()) {
          loadProgress.progressProperty().unbind();
          loadProgress.setProgress(1);
          progressText.setText("All hobbits are full.");
          mainStage.setIconified(false);
          initStage.toFront();
          FadeTransition fadeSplash = new FadeTransition(Duration.seconds(1.2), splashLayout);
          fadeSplash.setFromValue(1.0);
          fadeSplash.setToValue(0.0);
          fadeSplash.setOnFinished((ActionEvent actionEvent) -> {
              initStage.hide();
          fadeSplash.play();
  private void showMainStage() {
    mainStage = new Stage(StageStyle.DECORATED);
    mainStage.setTitle("FX Experience");
    mainStage.setIconified(true);
    // create a WebView.
    webView = new WebView();
    webView.getEngine().load("http://shelflogic.com");
    loadProgress.progressProperty().bind(webView.getEngine().getLoadWorker().workDoneProperty().divide(100));
    // layout the scene.
    Scene scene = new Scene(webView, 1000, 600);
    webView.prefWidthProperty().bind(scene.widthProperty());
    webView.prefHeightProperty().bind(scene.heightProperty());
    mainStage.setScene(scene);
    mainStage.show();
  private void showSplash(Stage initStage) {
    Scene splashScene = new Scene(splashLayout);
    initStage.initStyle(StageStyle.UNDECORATED);
    final Rectangle2D bounds = Screen.getPrimary().getBounds();
    initStage.setScene(splashScene);
    initStage.setX(bounds.getMinX() + bounds.getWidth() / 2 - SPLASH_WIDTH / 2);
    initStage.setY(bounds.getMinY() + bounds.getHeight() / 2 - SPLASH_HEIGHT / 2);
    initStage.show();
}The site works, and if I click the link in the .load(.....) it will send me to the site, just fine.
I'm curious if this might have to do with the site using ASP?
super long error...
ant -f C:\\Users\\Konrad\\Documents\\NetBeansProjects\\JavaFXApplication7 jfxsa-run
init:
Deleting: C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\build\built-jar.properties
deps-jar:
Updating property file: C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\build\built-jar.properties
Compiling 1 source file to C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\build\classes
compile:
Detected JavaFX Ant API version 1.3
Launching <fx:jar> task from C:\Program Files\Java\jdk1.8.0\lib\ant-javafx.jar
Launching <fx:deploy> task from C:\Program Files\Java\jdk1.8.0\lib\ant-javafx.jar
jfx-deployment-script:
jfx-deployment:
jar:
Copying 12 files to C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\dist\run829534638
jfx-project-run:
Executing com.javafx.main.Main from C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\dist\run829534638\JavaFXApplication7.jar using platform C:\Program Files\Java\jdk1.8.0/bin/java
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)

Sorry I had to make another post because apparently my error is so stupid long it exceeds the 30,000 character limit LOL >(
Also if no one responds or has any idea, I'm going to just make a jira report. If it works for other sites confused why it doesn't for this one... Jira, from what I saw, said nothing about loading.
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.NullPointerException
     at com.sun.prism.impl.ps.PaintHelper.setImagePattern(PaintHelper.java:741)
     at com.sun.prism.impl.ps.BaseShaderContext.updatePaintShader(BaseShaderContext.java:256)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:457)
     at com.sun.prism.impl.ps.BaseShaderContext.validatePaintOp(BaseShaderContext.java:341)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedPgram(BaseShaderGraphics.java:838)
     at com.sun.prism.impl.ps.BaseShaderGraphics.renderGeneralRoundedRect(BaseShaderGraphics.java:539)
     at com.sun.prism.impl.ps.BaseShaderGraphics.fillRect(BaseShaderGraphics.java:1441)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$6.doPaint(WCGraphicsPrismContext.java:683)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1319)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext$Composite.paint(WCGraphicsPrismContext.java:1304)
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.drawPattern(WCGraphicsPrismContext.java:686)
     at com.sun.webkit.graphics.GraphicsDecoder.drawPattern(GraphicsDecoder.java:384)
     at com.sun.webkit.graphics.GraphicsDecoder.decode(GraphicsDecoder.java:185)
     at com.sun.webkit.graphics.WCRenderQueue.decode(WCRenderQueue.java:69)
     at com.sun.webkit.WebPage.paint2GC(WebPage.java:712)
     at com.sun.webkit.WebPage.paint(WebPage.java:680)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
java.lang.IllegalStateException: Unbalanced saveState/restoreState
     at com.sun.javafx.webkit.prism.WCGraphicsPrismContext.dispose(WCGraphicsPrismContext.java:1580)
     at com.sun.javafx.webkit.prism.WCPageBackBufferImpl.disposeGraphics(WCPageBackBufferImpl.java:31)
     at com.sun.webkit.WebPage.paint(WebPage.java:682)
     at com.sun.javafx.sg.prism.NGWebView.renderContent(NGWebView.java:73)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:412)
     at com.sun.javafx.sg.prism.NGNode.doRender(NGNode.java:69)
     at com.sun.javafx.sg.BaseNode.render(BaseNode.java:1277)
     at com.sun.javafx.tk.quantum.ViewPainter.doPaint(ViewPainter.java:117)
     at com.sun.javafx.tk.quantum.AbstractPainter.paintImpl(AbstractPainter.java:212)
     at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:95)
     at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
     at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
     at com.sun.prism.render.RenderJob.run(RenderJob.java:56)
     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
     at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:129)
     at java.lang.Thread.run(Thread.java:724)
Deleting directory C:\Users\Konrad\Documents\NetBeansProjects\JavaFXApplication7\dist\run829534638
jfxsa-run:
BUILD SUCCESSFUL (total time: 12 seconds)Edited by: KonradZuse on May 23, 2013 1:34 PM

Similar Messages

  • I recently saved a draft email using mail, but now whenever I try to reopen it, it says loading but will not load. All my other drafts load fine except for this one. Is there a way to access the draft outside of mail?

    I recently saved a draft email using mail, but now whenever I try to reopen it, it says loading but will not load. All my other drafts load fine except for this one. Is there a way to access the draft outside of mail?

    Create a new profile as a test to check if your current profile is causing the problems. <br>
    See '''Creating a profile''':
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem <br>
    '''Profile Backup and Restore'''
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I receive "caution" when accessing site that I consider safe. I want to eliminate that notice for this one site.

    I am using a website that I consider safe, yet, each time I visit it I receive the warning box telling me the site could be unstable. I recall there is some place to enter the website so that it is allowed and such warnings are eliminated but I can't remember where/how.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Javascript won't load for this one website that I frequent. This just started today. All others websites work fine. This site works fine in IE...

    Javascript won't load for this one website that I frequent. This just started today. All others websites work fine. This site works fine in IE. I've tried Safe Mode with no success. I have changed nothing since yesterday. Any help is greatly appreciated.

    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache Clear Cookies & Cache]
    * [[How to clear the cache#w_clear-the-cache|Clear the Network Cache]]
    * Make sure that you are using the '''"Remember History"''' setting as described in this article -> [[Options window - Privacy panel]]
    Also see these articles:
    * [[JavaScript]]
    * http://kb.mozillazine.org/JavaScript
    Check and tell if its working.

  • Error "Licensing for this product has stopped working" when you launch Acrobat 9

    Hi,
    I'm part of service desk and my company has several thousand users of Acrobat. There has been strange issues reported since upgrading from 7.0.5 to 9.1 and a lot of them are uhappy. The latest issue is users started to receive the following error,
    Error "Licensing for this product has stopped working" when you launch Acrobat 9 or Adobe Creative Suite 4 products. The link http://kb2.adobe.com/cps/405/kb405970.html#ErrorCodes has solution, but i tried everything given for 147-178, and nothing works. The users are highly frustrated. Any other possibilities? one collegue claims running simple reg cleaner could solve this issue.

    Wow,
    I went through a "font crisis" on my MacBook about two weeks ago, and I reinstalled Snow Leopard, then restored everything from Time Machine backup. Everything but Office 2008 and CS4 was able to run from the restore, because there were preferences for both that wouldn't copy back to my Library (permissions).
    I reinstalled both from the "original media" (dmg's)  with my Time Machine and 2 other external HDs connected and mounted. I had no problems with either. In fact since I was re-installing from dmg's stored on my Time Machine drive, I had to have it connected to do this. Installing Office and CS4 from the dmg's took all of twenty minutes for both with no errors at all.
    I'm glad you got everything taken care of, but anectdotal evidence tells me CS4 can be reinstalled with external drives connected and mounted.

  • XML Error Message for Every one hour in SXMB_MONI

    Hi All,
    I am getting XML error Message for every one hour in PI when I check in SXMB_MONI I can see this.
    Details Below
    Sender Componant : PI
    Sender Interface : SAPCCMS
    Reciever Interface/Reciever Componant : Both are empty.
    PI Version 7.1
    Can anybody help in this.
    Dayakar

    Hi!
    I was just searching this about this problem and found a post that might interest you.
    [urn:SAPCCMS;
    cheers

  • Management Portal unavailable - "cannot load management data for this resource type"

    Noticing that with the exception of virtual machines, every resource type in the (non preview) Azure Management Portal is showing a sad pink icon and the help text "cannot load management data for this resource type."
    So that's a near total portal outage for us. Anybody else experiencing this?
    I've attempted to open a ticket with developer support but I'm not sure if that's the right channel.
    Brian

    Hi Brian,
    Thanks for your posting!
    From Dashboard shown (http://azure.microsoft.com/en-us/status/#history), Currently, the Azure portal works fine in every regions.
    So I suggest you can submit a tick via this channel:
    http://www.windowsazure.com/en-us/support/contact/
    Also, you can click your right-top account name and select the "Microsoft Support" item to create free ticket.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error- Unable to find error text for this exception

    Hi all,
    I am facing the following problem in discoverer ,Please give me your advice.
    while I am trying to open the workbook I am getting the following error
    "Unable to find error text for this exception"
    Could you please tell me how I can find why this warning is come ? or how I can solve this warning.
    if I ignore this warning then the workbook is failing to open.
    thanks and regards
    senthil kumar

    Hi,
    Are you getting this problem with the Desktop, Plus or Viewer editions? It could be that the database is generating the exception. You will need to trace the database session to see the error.
    Rod West

  • I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help

    I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help
    only title bar opens and nothing else....please help

    Normally, when you connect via http, the browser doesn't check for site identity, so I don't understand what's happening there.
    Do you have any security-related add-ons that force popular sites to use a secure connection, or claim to provide anonymous browsing?
    Were you making the connection on your own network or on a public network (e.g., school, coffee shop)? If it was a public network, maybe the error indicates that your traffic was being intercepted???
    Without hands on, this is a tough one to diagnose.

  • "Enable distribution-point sharing for this source site" did not showing SCCM 2007 DPs as SCCM 2012 content shares for CM12 clients

    Hi
    We have one central site server and three primary site servers in SCCM 2007 and completed the SCCM 2012 migration as single hierarchy.
    During the migration, We have configured SCCM 2007 Central site server as source hierarchy for data gathering process and configured the "Enable distribution-point sharing for this source site" to make SCCM 2007 distribution points
    as SCCM 2012 content shares to serve SCCM 2012 migrated clients. Now we are facing a problem that one of the primary site server's data gathering process did not gather SCCM 2007 DPs even though we configured "Enable distribution-point sharing for this
    source site" but data gathering process is completing successfully.
    Is anyone have idea, why these SCCM 2007 DPs did not appearing as SCCM 2012 content shares under "Shared Distribution Points"
    Thanks in Advance
    srkr

     Now we are facing a problem that one of the primary site server's data gathering process did not gather SCCM 2007 DPs even though we configured "Enable distribution-point sharing for this source
    site" but data gathering process is completing successfully.
    Earlier all the shared DPs are showing under  Shared Distribution Points ? Or since starting itself these DPs are not showing down? Have you checked migmctrl.log for some clue?
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • Firefox is not loading specific websites for me. Sites like Facebook, Ebay, Google, and Netflix refuse to open, or even acknowledge me pressing the Enter key

    Firefox is not loading specific websites for me. Sites like Facebook, Ebay, Google, and Netflix refuse to open, or even acknowledge me pressing the Enter key when I type in the address or click a link to that site. Practically every other site works perfectly fine. I did not change any settings or download any new addons prior to this problem, it just started happening. I have done everything I can find in the forums; resetting firefox, clearing cache and cookies, making network settings use no proxy, reinstalling, and today I uninstalled Firefox, updated and scanned my computer with all 3 software I use (AVG, Malwarebytes, and Spybot), found no issues, restarted my computer, and reinstalled a freshly downloaded Firefox setup without importing any settings or doing anything other than a totally clean install, and still nothing. Chrome and IE still are able to access every site perfectly fine. I have no idea what the issue is or how to fix it, as I've tried everything I know and could research.

    Hi There,
    Sorry to hear of your issue. I found a great article for you to read and explain how to fix your issue. I hope this hope :)
    Robert
    Click on the link below
    [[https://support.mozilla.org/en-US/kb/firefox-and-other-browsers-cant-load-websites ]]

  • Adobe AIR for Android as3 codes not working for this one project

    I'm trying to use Accelerometer in my flash game, which works for every other project I'm working on, but for some reason on this one project if I try using it I get errors, using the same code i've used before, such as this. 
    1046: Type was not found or was not a compile-time constant: Accelerometer.
    1180: Call to a possibly undefined method Accelerometer. 
    This is a fairly old file, not that old, so are there files I need to add to it to get it to work, or settings I need to change? This is very frustrating, I don't know what the problem possibly could be. Can anybody help me?

    The error message is indicating it cannot find the class.  Make sure you are importing it:
         import flash.sensors.Accelerometer;

  • Every single time I try to load any page (even this one where I'm asking), it keeps either crashing or taking a very long time with "Not responding" windows status

    Whenever I try to load a page, let's say: Hotmail, or Youtube or even this one (support.mozilla.com) the window gets frozen and the "Not responding" status displays on the Title bar... then after a minute or two, either loads the page or it just crashes...

    The CrashIDs are what is needed. Do not attempt to attach or paste the reports.
    #Run Firefox in safe mode does that prevent crashes ?<br/>[[Troubleshoot Firefox issues using Safe Mode]]
    #Disable all plugins
    #Repeat and this time try in Windows safe mode. use the F8 key <br /> http://windows.microsoft.com/en-us/windows/start-computer-safe-mode#start-computer-safe-mode=windows-7
    So you are saying it works ok as long as you avoid certain pages such as this Forum. That makes me wonder if it could be malware that is blocking access to assistance.Run malwarescans with multipe and up-to-date tools.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Urgent please send code for this one ( write code by using core java)

    hi sir
    my question
    i am taking one square box .. and i divide that square in again four parts .. now i am placing one object in 1st box now i want to move that object to 2 box or third box... like that only if my object is in 1st box now i want to jump directly to 4th box
    i want that programing code the code will written BY USING CORE JAVA ONLY
    PLEASE HELP FOR THAT

    hi sirWhat if I'm a madam?
    i want that programing code Why did you post here asking for it?
    1) You are the Lead Architect at a world-class company and none of your staff of topnotch developers are able to handle this insidious task. You need to pull in outside resources for this noodler. You would use Dice, Monster, etc., but, by a freak coincidence, you happen to have had illicit trysts with the wives of several high-ranking executives in each of those companies, and as a result, have been blacklisted in perpetuity. You sought help here because you know that the denizens of this particular cyber-community are not only the best of the best of the best in the world of software development, we also happen--by yet another bizarre convergence of the unfahtomable Threads of Fate--to be the handsomest and best-endowed, dude-tube-wise. This is exactly what you need to distract your wife from your many concubines so you can continue with your plan for world dominance, which, of course, is but a small cog in the machina profunda that grinds unfailingly and inexorably toward your ultimate goal of the perfect tofu burrito.
    2) You are a lazy slimeball student who thinks it's acceptable to take credit for somebody else's work. You have no motivation, no ethics, and nothing to contribute to the society upon which you will become a bigger and more loathsome burden daily.

  • What happens?. Unable to find error text for this exception

    I4m trying to open a workbook and before doing anything it shows me the message "Unable to find error text from this exception", after this, it appears another one "attempt to open workbook failed". Help me to find why i4m not able to open the workbook, which could be the reason.
    Thanks in advance.

    I think this has something to do with the folders that
    you are using? Have you renamed an old folder and then
    recreated another folder as its replacement?
    Christopher

Maybe you are looking for

  • Column names of a dynamic internal table

    Hi Friends, I have a dynamic internal table flowing in my ABAP program and I want to list down the column names of the this dynamic internal table. The declaration of this dynamic internal table :    FIELD-SYMBOLS:     <l_t_data>         TYPE STANDAR

  • Launchpad showing multiple instances of some apps

    Anyone has the same issue? I use external USB HD for Time Machine backups of my Data partition and for daily clones of System partition done by SuperDuper! - Launchpad is showing all instances of applications, not only these in the Applications folde

  • Screensaver will not start...

    I have 8.1 Enterprise installed and have a LOCAL Administrative account with a screensaver installed and setup.  I can click on Screensaver Preview and the screensaver kicks in and works, however I move the time to start the screensaver to 1 minute a

  • Video y Powerpoint sobre Flash

    Hola. En en un curso en línea encontré esta herramiente en donde tu tienes un video de un lado de la pantalla y una presentación de powerpoint justo del otro lado del video. Cuando tu avanzas o retrocedes la presentación también el video avanza o ret

  • Data stopping at case structure

    When the block diagram operates, the only data saved to the spreadsheet file are sets of 0.00000.  I assume this means that my data is not getting into the case structure, and that the array is adding data of 0 each iteration.  What problems am I hav