JDK-8124658 : WebView blink while moving mouse over after Lock/Unlock desktop ( or just CTRL+ALT+DEL and ESCAPE )
  • Type: Bug
  • Component: javafx
  • Sub-Component: graphics
  • Affected Version: 8
  • Priority: P3
  • Status: Closed
  • Resolution: Duplicate
  • Submitted: 2013-02-05
  • Updated: 2015-06-17
  • Resolved: 2013-02-07
Related Reports
Duplicate :  
Description
WebView is blinking ( flashing with black background ) while moving mouse over after unlocking desktop.
Step to reproduce :

- Create a simple Stage that contain only a WebView element.
- Launch the sample and move mouse over elements of the page --> Nothing bad happen
- Hit CTRL+ALT+DEL and ESCAPE
- Move mouse over WebView --> Black blincking occurs according to mouse movements.

It occurs only with JDK 1.8

Here is the sample code : 

public class Main extends Application {

	public static void main(String[] args) {
		launch(Main.class, args);
	}
	
	@Override
	public void start(Stage stage) throws Exception {

		WebView wv = WebViewBuilder.create().build();
		stage.setScene(new Scene(wv));
		

		
		wv.getEngine().load("http://maps.google.com");
		stage.show();
		
	}

}



Comments
Thanks Kevin, I checked the workaround and it works fine for us.
07-02-2013

This is a duplicate of RT-27121
07-02-2013

Not WebView specific -- reproduced with BrickBreaker. Probably indicates some issue with textures caching?
07-02-2013