-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
None
-
Windows 7 64-bit SP1
java version "1.6.0_25"
Java(TM) SE Runtime Environment (build 1.6.0_25-b06)
Java HotSpot(TM) Client VM (build 20.0-b11, mixed mode, sharing)JavaFX 2.0 Beta SDK (build 30)
With following example I have got a very bad visual experience with combination of WebView and BorderPane. Please see attached screen shot. It looks like Left and Top slots obscure opposite part of WebView.
Here is a source code of the example:
package browserissue;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.BorderPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class BrowserIssue extends Application {
public static void main(String[] args) {
Application.launch(BrowserIssue.class, args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Hello World");
BorderPane root = new BorderPane();
Scene scene = new Scene(root);
root.setTop(new Label("Top"));
root.setLeft(new Label("This is Left slot..."));
root.setCenter(new WebView(new WebEngine("http://javafx.com")));
primaryStage.setScene(scene);
primaryStage.setVisible(true);
}
}
Here is a source code of the example:
package browserissue;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.BorderPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class BrowserIssue extends Application {
public static void main(String[] args) {
Application.launch(BrowserIssue.class, args);
}
@Override
public void start(Stage primaryStage) {
primaryStage.setTitle("Hello World");
BorderPane root = new BorderPane();
Scene scene = new Scene(root);
root.setTop(new Label("Top"));
root.setLeft(new Label("This is Left slot..."));
root.setCenter(new WebView(new WebEngine("http://javafx.com")));
primaryStage.setScene(scene);
primaryStage.setVisible(true);
}
}