Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8179673

JVM Crash in WebPage.setBackgroundColor() during webpage navigation (Non Public API)

XMLWordPrintable

    • web
    • x86
    • windows

        FULL PRODUCT VERSION :
        java version "1.8.0_131"
        Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
        Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)

        ADDITIONAL OS VERSION INFORMATION :
        Microsoft Windows [Version 10.0.14393]

        A DESCRIPTION OF THE PROBLEM :
        Using the workaround as per
        "
        Webview transparent I get a good solution here :
        https://javafx-jira.kenai.com/browse/RT-29186 read comments Harry Hur
        "
        to get the web-browser transparent.
        But instead of setting
            Scene.setFill( null );
        which didnt' make it transparent, i found there's a special color:
            Scene.setFill( Color.TRANSPARENT );
        it works.
        But i can perform a few navigates and then the JVM crashes.



        STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
        create a JPanel set opaque
        add a JFXPanel
                WebView view = new WebView();
                cWebEngine = view.getEngine();
                cWebEngine.documentProperty().addListener(cDocumentListener);
                cJfxPanel.setScene(new Scene(view));
                cJfxPanel.getScene().setFill( javafx.scene.paint.Color.TRANSPARENT );

        Create document listener:
          /**
           * Track Document changes for making transparent
           */
          private final ChangeListener cDocumentListener = new ChangeListener<Document>(){
            @Override
            public void changed(ObservableValue<? extends Document> arg0, Document arg1, Document arg2) {
              // only bother when this Component is set to transparent
              if (!JfxWeb.this.isOpaque()){
                try {
                  // Use reflection to retrieve the WebEngine's private 'page' field.
                  Field f = cWebEngine.getClass().getDeclaredField("page");
                  f.setAccessible(true);
                  WebPage page = (WebPage) f.get(cWebEngine);
                  // Set the background color of the page to be transparent.
                  page.setBackgroundColor((new java.awt.Color(0, 0, 0, 0)).getRGB());
                } catch (Exception e) {
                  System.out.println("Error: " + e);
                }
              }
            }
          };


        Create a HTML page with transparent background. mine was:
        <body bgcolor="#FFFFFF" link="#225588" text="#000000" vlink="#5588BB" alink="#ff9933" style="background-color: transparent;">
          <table border="0" align = "center" width="455" style="background-color: yellow;height:10%; position: absolute; top: 0; bottom: 0; left: 0; right: 0; font-family : futura, helvetica, arial; font-size : 10pt;">

        Then navigate back and forth to the translucent page and other html pages.
         i alternated between http://graphicnovel-hybrid4.peugeot.com/start.html and my translucent page.

        the JVM exist after a few switches.




        EXPECTED VERSUS ACTUAL BEHAVIOR :
        EXPECTED -
        webView with non-opage background

        ACTUAL -
        webView with non-opaque background,
        but after a few(max 20) navigates, the JVM crashes

        ERROR MESSAGES/STACK TRACES THAT OCCUR :
        #
        # A fatal error has been detected by the Java Runtime Environment:
        #
        # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006989a05a, pid=6684, tid=0x0000000000000a48
        #
        # JRE version: Java(TM) SE Runtime Environment (8.0_131-b11) (build 1.8.0_131-b11)
        # Java VM: Java HotSpot(TM) 64-Bit Server VM (25.131-b11 mixed mode windows-amd64 compressed oops)
        # Problematic frame:
        # C [jfxwebkit.dll+0x53a05a]
        #
        # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
        #
        # If you would like to submit a bug report, please visit:
        # http://bugreport.java.com/bugreport/crash.jsp
        # The crash happened outside the Java Virtual Machine in native code.
        # See problematic frame for where to report the bug.
        #

        --------------- T H R E A D ---------------

        Current thread (0x0000000015e54800): JavaThread "JavaFX Application Thread" [_thread_in_native, id=2632, stack(0x00000000211c0000,0x00000000212c0000)]

        siginfo: ExceptionCode=0xc0000005, reading address 0xffffffffffffffff

        Registers:
        RAX=0x0000000069c44c50, RBX=0x000000002142fc98, RCX=0x0066002e00740063, RDX=0x00000000212bcb50
        RSP=0x00000000212bcae0, RBP=0x00000000212bcbc0, RSI=0x000000000000001f, RDI=0x00000000f5f7c100
        R8 =0x00000000758c7f70, R9 =0x0000000000000000, R10=0x0000000002397f48, R11=0x000000006c1cbd80
        R12=0x0000000000000000, R13=0x000000002142fc98, R14=0x00000000212bcbf8, R15=0x0000000015e54800
        RIP=0x000000006989a05a, EFLAGS=0x0000000000010202

        Top of Stack: (sp=0x00000000212bcae0)
        0x00000000212bcae0: 00000000212bcb48 000000007279f2e0
        0x00000000212bcaf0: 000000000000001d 0000000002dde8a4
        0x00000000212bcb00: 00000000f5f7c100 0000000069c44c79
        0x00000000212bcb10: 0000000000000198 000000002142fc98
        0x00000000212bcb20: 0000000069c44c50 0000000012e7f350
        0x00000000212bcb30: 3fe0000000000000 0000000002397f74
        0x00000000212bcb40: 000000000000000f 00000000025ddfb7
        0x00000000212bcb50: 0000000100000000 0000000002803f44
        0x00000000212bcb60: 00000000f9485988 00000000026d1cca
        0x00000000212bcb70: 00000000f9485830 00000000636e8490
        0x00000000212bcb80: 00000000212bcb80 0000000000000000
        0x00000000212bcb90: 00000000212bcbf8 0000000021453028
        0x00000000212bcba0: 0000000000000000 000000002142fc98
        0x00000000212bcbb0: 0000000000000000 00000000212bcbe0
        0x00000000212bcbc0: 00000000212bcc40 000000000238835d
        0x00000000212bcbd0: 0000000000000000 00000000023919d8

        Instructions: (pc=0x000000006989a05a)
        0x000000006989a03a: cc 03 00 00 e9 7d 05 00 00 c3 cc cc cc cc cc cc
        0x000000006989a04a: cc cc cc cc cc cc 48 89 5c 24 10 57 48 83 ec 20
        0x000000006989a05a: 80 b9 57 02 00 00 ff 48 8b d9 40 0f 92 c7 80 7a
        0x000000006989a06a: 04 00 75 14 c7 44 24 30 ff ff ff ff c6 44 24 34


        Register to memory mapping:

        RAX=0x0000000069c44c50 is an unknown value
        RBX={method} {0x000000002142fca0} 'twkSetBackgroundColor' '(JI)V' in 'com/sun/webkit/WebPage'
        RCX=0x0066002e00740063 is an unknown value
        RDX=0x00000000212bcb50 is pointing into the stack for thread: 0x0000000015e54800
        RSP=0x00000000212bcae0 is pointing into the stack for thread: 0x0000000015e54800
        RBP=0x00000000212bcbc0 is pointing into the stack for thread: 0x0000000015e54800
        RSI=0x000000000000001f is an unknown value
        RDI=0x00000000f5f7c100 is an oop
        java.util.HashMap$Node
         - klass: 'java/util/HashMap$Node'
        R8 =0x00000000758c7f70 is an unknown value
        R9 =0x0000000000000000 is an unknown value
        R10=0x0000000002397f48 is at code_begin+840 in an Interpreter codelet
        method entry point (kind = native) [0x0000000002397c00, 0x0000000002398560] 2400 bytes
        R11=0x000000006c1cbd80 is an unknown value
        R12=0x0000000000000000 is an unknown value
        R13={method} {0x000000002142fca0} 'twkSetBackgroundColor' '(JI)V' in 'com/sun/webkit/WebPage'
        R14=0x00000000212bcbf8 is pointing into the stack for thread: 0x0000000015e54800
        R15=0x0000000015e54800 is a thread


        Stack: [0x00000000211c0000,0x00000000212c0000], sp=0x00000000212bcae0, free space=1010k
        Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
        C [jfxwebkit.dll+0x53a05a]
        C [jfxwebkit.dll+0x8e4c79]
        C 0x0000000002397f74

        Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
        j com.sun.webkit.WebPage.twkSetBackgroundColor(JI)V+0
        j com.sun.webkit.WebPage.setBackgroundColor(I)V+95
        j comp.jwui.components.jfxweb.JfxWeb$6.changed(Ljavafx/beans/value/ObservableValue;Lorg/w3c/dom/Document;Lorg/w3c/dom/Document;)V+66
        j comp.jwui.components.jfxweb.JfxWeb$6.changed(Ljavafx/beans/value/ObservableValue;Ljava/lang/Object;Ljava/lang/Object;)V+10
        j com.sun.javafx.binding.ExpressionHelper$SingleChange.fireValueChangedEvent()V+71
        J 7724 C1 javafx.beans.property.ReadOnlyObjectPropertyBase.fireValueChangedEvent()V (8 bytes) @ 0x00000000038c7044 [0x00000000038c6ec0+0x184]
        j javafx.scene.web.WebEngine$DocumentProperty.invalidate(Z)V+22
        j javafx.scene.web.WebEngine$DocumentProperty.access$300(Ljavafx/scene/web/WebEngine$DocumentProperty;Z)V+2
        j javafx.scene.web.WebEngine$LoadWorker.dispatchLoadEvent(JILjava/lang/String;Ljava/lang/String;DI)V+314
        j javafx.scene.web.WebEngine$LoadWorker.access$1200(Ljavafx/scene/web/WebEngine$LoadWorker;JILjava/lang/String;Ljava/lang/String;DI)V+11
        j javafx.scene.web.WebEngine$PageLoadListener.dispatchLoadEvent(JILjava/lang/String;Ljava/lang/String;DI)V+32
        j com.sun.webkit.WebPage.fireLoadEvent(JILjava/lang/String;Ljava/lang/String;DI)V+45
        j com.sun.webkit.WebPage.fwkFireLoadEvent(JILjava/lang/String;Ljava/lang/String;DI)V+94
        v ~StubRoutines::call_stub
        j com.sun.webkit.network.URLLoader.twkDidFinishLoading(J)V+0
        j com.sun.webkit.network.URLLoader.notifyDidFinishLoading()V+44
        j com.sun.webkit.network.URLLoader.lambda$didFinishLoading$103()V+8
        j com.sun.webkit.network.URLLoader$$Lambda$178.run()V+4
        J 7763 C2 com.sun.javafx.application.PlatformImpl$$Lambda$82.run()Ljava/lang/Object; (8 bytes) @ 0x00000000038d5a84 [0x00000000038d5a40+0x44]
        v ~StubRoutines::call_stub
        J 1505 java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object; (0 bytes) @ 0x0000000002836f26 [0x0000000002836ec0+0x66]
        J 7158 C2 com.sun.glass.ui.InvokeLaterDispatcher$Future.run()V (91 bytes) @ 0x0000000003735878 [0x00000000037352a0+0x5d8]
        v ~StubRoutines::call_stub
        j com.sun.glass.ui.win.WinApplication._runLoop(Ljava/lang/Runnable;)V+0
        j com.sun.glass.ui.win.WinApplication.lambda$null$148(ILjava/lang/Runnable;)V+8
        j com.sun.glass.ui.win.WinApplication$$Lambda$71.run()V+12
        j java.lang.Thread.run()V+11
        v ~StubRoutines::call_stub

        --------------- P R O C E S S ---------------

        Java Threads: ( => current thread )
          0x0000000015907800 JavaThread "Keep-Alive-SocketCleaner" daemon [_thread_blocked, id=6748, stack(0x000000007a9d0000,0x000000007aad0000)]
          0x000000001edd1000 JavaThread "URL-Loader-40" daemon [_thread_blocked, id=9080, stack(0x000000007acd0000,0x000000007add0000)]
          0x000000001d19e800 JavaThread "URL-Loader-39" daemon [_thread_blocked, id=8964, stack(0x000000007abd0000,0x000000007acd0000)]
          0x000000001d19d800 JavaThread "URL-Loader-38" daemon [_thread_blocked, id=6248, stack(0x000000007aad0000,0x000000007abd0000)]
          0x000000001d54d800 JavaThread "URL-Loader-37" daemon [_thread_blocked, id=8184, stack(0x000000007f7d0000,0x000000007f8d0000)]
          0x000000001db16000 JavaThread "URL-Loader-36" daemon [_thread_blocked, id=1932, stack(0x000000007f6d0000,0x000000007f7d0000)]
          0x000000001db0e800 JavaThread "URL-Loader-35" daemon [_thread_blocked, id=4592, stack(0x000000007f5d0000,0x000000007f6d0000)]
          0x000000001edd0800 JavaThread "URL-Loader-34" daemon [_thread_blocked, id=6916, stack(0x000000007f4d0000,0x000000007f5d0000)]
          0x000000001d54c800 JavaThread "URL-Loader-33" daemon [_thread_blocked, id=180, stack(0x000000007f3d0000,0x000000007f4d0000)]
          0x000000001edd2000 JavaThread "URL-Loader-32" daemon [_thread_blocked, id=6788, stack(0x000000007f2d0000,0x000000007f3d0000)]
          0x000000001edcf000 JavaThread "URL-Loader-31" daemon [_thread_blocked, id=8620, stack(0x000000007f1d0000,0x000000007f2d0000)]
          0x000000001db19000 JavaThread "URL-Loader-30" daemon [_thread_blocked, id=8428, stack(0x000000007bed0000,0x000000007bfd0000)]
          0x000000001db1a000 JavaThread "URL-Loader-29" daemon [_thread_blocked, id=460, stack(0x000000007bdd0000,0x000000007bed0000)]
          0x000000001db15800 JavaThread "URL-Loader-28" daemon [_thread_blocked, id=1744, stack(0x000000007bcd0000,0x000000007bdd0000)]
          0x000000001edce000 JavaThread "URL-Loader-27" daemon [_thread_blocked, id=7976, stack(0x000000007b7d0000,0x000000007b8d0000)]
          0x000000001edcb000 JavaThread "URL-Loader-26" daemon [_thread_blocked, id=5376, stack(0x000000007b6d0000,0x000000007b7d0000)]
          0x000000001d445000 JavaThread "URL-Loader-25" daemon [_thread_blocked, id=2012, stack(0x0000000073210000,0x0000000073310000)]
          0x000000001d446800 JavaThread "URL-Loader-24" daemon [_thread_blocked, id=8300, stack(0x0000000073110000,0x0000000073210000)]
          0x000000001d448000 JavaThread "URL-Loader-23" daemon [_thread_blocked, id=8632, stack(0x0000000073010000,0x0000000073110000)]
          0x000000001cfa5000 JavaThread "URL-Loader-22" daemon [_thread_blocked, id=7900, stack(0x0000000072f10000,0x0000000073010000)]
          0x000000001cfa5800 JavaThread "URL-Loader-21" daemon [_thread_blocked, id=2136, stack(0x0000000072e10000,0x0000000072f10000)]
          0x0000000015e63000 JavaThread "Thread-30" daemon [_thread_in_native, id=4172, stack(0x0000000067a10000,0x0000000067b10000)]
          0x0000000015e5f000 JavaThread "Prism Font Disposer" daemon [_thread_blocked, id=7208, stack(0x0000000065730000,0x0000000065830000)]
          0x0000000015e5d800 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=7324, stack(0x0000000063780000,0x0000000063880000)]
          0x0000000015e57800 JavaThread "Disposer" daemon [_thread_blocked, id=1104, stack(0x00000000615d0000,0x00000000616d0000)]
          0x0000000015e5a000 JavaThread "Thread-29" daemon [_thread_in_native, id=9004, stack(0x00000000212c0000,0x00000000213c0000)]
        =>0x0000000015e54800 JavaThread "JavaFX Application Thread" [_thread_in_native, id=2632, stack(0x00000000211c0000,0x00000000212c0000)]
          0x0000000015d52000 JavaThread "Thread-28" daemon [_thread_blocked, id=9164, stack(0x00000000210c0000,0x00000000211c0000)]
          0x0000000015d50800 JavaThread "QuantumRenderer-0" daemon [_thread_blocked, id=4580, stack(0x0000000020ec0000,0x0000000020fc0000)]
          0x0000000015d4d800 JavaThread "DestroyJavaVM" [_thread_blocked, id=2524, stack(0x0000000002180000,0x0000000002280000)]
          0x0000000015d53800 JavaThread "Visualization cache expire checker" [_thread_blocked, id=2572, stack(0x000000001e490000,0x000000001e590000)]
          0x0000000015d4f000 JavaThread "Visualization cache expire checker" [_thread_blocked, id=3096, stack(0x000000001e390000,0x000000001e490000)]
          0x0000000015d49000 JavaThread "MultiThreadedHttpConnectionManager cleanup" daemon [_thread_blocked, id=1196, stack(0x000000001bdb0000,0x000000001beb0000)]
          0x0000000015d4e800 JavaThread "TimerQueue" daemon [_thread_blocked, id=1220, stack(0x000000001bcb0000,0x000000001bdb0000)]
          0x0000000015d4b800 JavaThread "Socket-message-receiver" daemon [_thread_blocked, id=8508, stack(0x000000001bbb0000,0x000000001bcb0000)]
          0x0000000015d48800 JavaThread "Reliable message writer for [Client/isg_server]DESKTOP-JJ3OVDA:8443" [_thread_blocked, id=2008, stack(0x000000001bab0000,0x000000001bbb0000)]
          0x0000000015d4c000 JavaThread "WebSocketClient@1674809292-scheduler" [_thread_blocked, id=7300, stack(0x000000001b7b0000,0x000000001b8b0000)]
          0x0000000015d47000 JavaThread "WebSocketClient@1674809292-40" [_thread_blocked, id=7116, stack(0x000000001b6b0000,0x000000001b7b0000)]
          0x0000000015d4a000 JavaThread "WebSocketClient@1674809292-39" [_thread_blocked, id=6512, stack(0x000000001b5b0000,0x000000001b6b0000)]
          0x0000000015d4a800 JavaThread "WebSocketClient@1674809292-38" [_thread_blocked, id=7860, stack(0x000000001b4b0000,0x000000001b5b0000)]
          0x0000000015d46000 JavaThread "WebSocketClient@1674809292-37" [_thread_blocked, id=8800, stack(0x000000001b3b0000,0x000000001b4b0000)]
          0x0000000015d4d000 JavaThread "WebSocketClient@1674809292-36" [_thread_blocked, id=2812, stack(0x000000001b2b0000,0x000000001b3b0000)]
          0x0000000015d45800 JavaThread "WebSocketClient@1674809292-35" [_thread_blocked, id=8884, stack(0x000000001b1b0000,0x000000001b2b0000)]
          0x0000000015d47800 JavaThread "WebSocketClient@1674809292-34-selector-0" [_thread_in_native, id=608, stack(0x000000001b0b0000,0x000000001b1b0000)]
          0x0000000015c13800 JavaThread "WebSocketClient@1674809292-33-selector-1" [_thread_in_native, id=8648, stack(0x000000001afb0000,0x000000001b0b0000)]
          0x0000000015c18000 JavaThread "Thread-4" [_thread_blocked, id=7936, stack(0x000000001aeb0000,0x000000001afb0000)]
          0x0000000015c17000 JavaThread "Reliable message writer for [Client/dss_server]DESKTOP-JJ3OVDA:8443" [_thread_blocked, id=8480, stack(0x000000001adb0000,0x000000001aeb0000)]
          0x0000000015c16800 JavaThread "WebSocketClient@1878394435-scheduler" [_thread_blocked, id=4740, stack(0x000000001acb0000,0x000000001adb0000)]
          0x0000000015c15800 JavaThread "WebSocketClient@1878394435-30" [_thread_blocked, id=5956, stack(0x000000001a8b0000,0x000000001a9b0000)]
          0x0000000015c14000 JavaThread "WebSocketClient@1878394435-29-selector-1" [_thread_in_native, id=8972, stack(0x000000001a7b0000,0x000000001a8b0000)]
          0x0000000015c15000 JavaThread "WebSocketClient@1878394435-28" [_thread_blocked, id=1856, stack(0x000000001a6b0000,0x000000001a7b0000)]
          0x0000000015c1a000 JavaThread "WebSocketClient@1878394435-27" [_thread_blocked, id=6944, stack(0x000000001a5b0000,0x000000001a6b0000)]
          0x0000000015c19800 JavaThread "WebSocketClient@1878394435-26" [_thread_blocked, id=8112, stack(0x000000001a4b0000,0x000000001a5b0000)]
          0x0000000015c18800 JavaThread "WebSocketClient@1878394435-25-selector-0" [_thread_in_native, id=7200, stack(0x000000001a3b0000,0x000000001a4b0000)]
          0x0000000015c01800 JavaThread "WebSocketClient@1878394435-24" [_thread_blocked, id=8764, stack(0x000000001a2b0000,0x000000001a3b0000)]
          0x0000000015c00800 JavaThread "WebSocketClient@1878394435-23" [_thread_blocked, id=3312, stack(0x000000001a1b0000,0x000000001a2b0000)]
          0x0000000015a92800 JavaThread "DateCache" daemon [_thread_blocked, id=4748, stack(0x0000000019a30000,0x0000000019b30000)]
          0x0000000015a4d800 JavaThread "Timer-0" [_thread_blocked, id=9192, stack(0x0000000019930000,0x0000000019a30000)]
          0x0000000015928800 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=4080, stack(0x00000000190f0000,0x00000000191f0000)]
          0x00000000159dd000 JavaThread "AWT-EventQueue-0" [_thread_in_native, id=7980, stack(0x0000000018f70000,0x0000000019070000)]
          0x00000000158d7000 JavaThread "AWT-Windows" daemon [_thread_in_native, id=8584, stack(0x0000000016330000,0x0000000016430000)]
          0x0000000015870800 JavaThread "AWT-Shutdown" [_thread_blocked, id=6540, stack(0x0000000016230000,0x0000000016330000)]
          0x000000001586d800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=7576, stack(0x0000000016130000,0x0000000016230000)]
          0x0000000015869800 JavaThread "Wait cursor thread" daemon [_thread_blocked, id=632, stack(0x0000000016030000,0x0000000016130000)]
          0x0000000015130800 JavaThread "Service Thread" daemon [_thread_blocked, id=4064, stack(0x0000000015500000,0x0000000015600000)]
          0x00000000137a5800 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=1820, stack(0x0000000015000000,0x0000000015100000)]
          0x00000000137a0800 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=872, stack(0x0000000014f00000,0x0000000015000000)]
          0x000000001379e800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7448, stack(0x0000000014e00000,0x0000000014f00000)]
          0x000000001379c000 JavaThread "Attach Listener" daemon [_thread_blocked, id=8496, stack(0x0000000014d00000,0x0000000014e00000)]
          0x000000001379a800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7000, stack(0x0000000014c00000,0x0000000014d00000)]
          0x000000000237a800 JavaThread "Finalizer" daemon [_thread_blocked, id=6316, stack(0x0000000014a10000,0x0000000014b10000)]
          0x0000000002370000 JavaThread "Reference Handler" daemon [_thread_blocked, id=288, stack(0x0000000014910000,0x0000000014a10000)]

        Other Threads:
          0x0000000013767800 VMThread [stack: 0x0000000014810000,0x0000000014910000] [id=6812]
          0x0000000015133800 WatcherThread [stack: 0x0000000015600000,0x0000000015700000] [id=7796]

        VM state:not at safepoint (normal execution)

        VM Mutex/Monitor currently owned by a thread: None

        Heap:
         PSYoungGen total 157696K, used 69162K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 140288K, 46% used [0x00000000f5580000,0x00000000f952dc90,0x00000000fde80000)
          from space 17408K, 22% used [0x00000000fef00000,0x00000000ff2dcd20,0x0000000100000000)
          to space 16896K, 0% used [0x00000000fde80000,0x00000000fde80000,0x00000000fef00000)
         ParOldGen total 78336K, used 65691K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 83% used [0x00000000e0000000,0x00000000e4026e58,0x00000000e4c80000)
         Metaspace used 47006K, capacity 48034K, committed 48256K, reserved 1091584K
          class space used 5947K, capacity 6155K, committed 6272K, reserved 1048576K

        Card table byte_map: [0x0000000011740000,0x0000000011850000] byte_map_base: 0x0000000011040000

        Marking Bits: (ParMarkBitMap*) 0x000000006c7bc720
         Begin Bits: [0x0000000011d00000, 0x0000000012500000)
         End Bits: [0x0000000012500000, 0x0000000012d00000)

        Polling page: 0x0000000000960000

        CodeCache: size=245760Kb used=22125Kb max_used=22142Kb free=223634Kb
         bounds [0x0000000002380000, 0x0000000003940000, 0x0000000011380000]
         total_blobs=7901 nmethods=6908 adapters=902
         compilation: enabled

        Compilation events (10 events):
        Event: 107.265 Thread 0x00000000137a5800 7839 3 java.awt.geom.Path2D$Float::clone (25 bytes)
        Event: 107.265 Thread 0x00000000137a5800 nmethod 7839 0x000000000391ce90 code [0x000000000391d020, 0x000000000391d4b8]
        Event: 107.265 Thread 0x00000000137a5800 7840 3 java.awt.geom.Path2D$Float::cloneCoordsFloat (45 bytes)
        Event: 107.265 Thread 0x00000000137a5800 nmethod 7840 0x000000000392e910 code [0x000000000392eac0, 0x000000000392eff8]
        Event: 107.265 Thread 0x00000000137a5800 7842 3 javafx.scene.Camera::project (71 bytes)
        Event: 107.266 Thread 0x00000000137a5800 nmethod 7842 0x000000000392f210 code [0x000000000392f420, 0x000000000392fed8]
        Event: 107.266 Thread 0x00000000137a5800 7841 3 java.awt.geom.AffineTransform::setToTranslation (66 bytes)
        Event: 107.266 Thread 0x00000000137a5800 nmethod 7841 0x0000000003930390 code [0x00000000039304e0, 0x0000000003930770]
        Event: 107.293 Thread 0x000000001379e800 nmethod 7834 0x0000000003936350 code [0x0000000003936600, 0x00000000039394c8]
        Event: 107.300 Thread 0x000000001379e800 7843 4 java.awt.geom.AffineTransform::transform (663 bytes)

        GC Heap History (10 events):
        Event: 80.433 GC heap before
        {Heap before GC invocations=21 (full 3):
         PSYoungGen total 159232K, used 146944K [0x00000000f5580000, 0x00000000fff80000, 0x0000000100000000)
          eden space 146944K, 100% used [0x00000000f5580000,0x00000000fe500000,0x00000000fe500000)
          from space 12288K, 0% used [0x00000000fe500000,0x00000000fe500000,0x00000000ff100000)
          to space 11776K, 0% used [0x00000000ff400000,0x00000000ff400000,0x00000000fff80000)
         ParOldGen total 78336K, used 43933K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 56% used [0x00000000e0000000,0x00000000e2ae77b8,0x00000000e4c80000)
         Metaspace used 45326K, capacity 46344K, committed 46592K, reserved 1089536K
          class space used 5860K, capacity 6098K, committed 6144K, reserved 1048576K
        Event: 80.442 GC heap after
        Heap after GC invocations=21 (full 3):
         PSYoungGen total 158720K, used 11620K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 146944K, 0% used [0x00000000f5580000,0x00000000f5580000,0x00000000fe500000)
          from space 11776K, 98% used [0x00000000ff400000,0x00000000fff59250,0x00000000fff80000)
          to space 13824K, 0% used [0x00000000fe500000,0x00000000fe500000,0x00000000ff280000)
         ParOldGen total 78336K, used 46941K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 59% used [0x00000000e0000000,0x00000000e2dd77c8,0x00000000e4c80000)
         Metaspace used 45326K, capacity 46344K, committed 46592K, reserved 1089536K
          class space used 5860K, capacity 6098K, committed 6144K, reserved 1048576K
        }
        Event: 81.043 GC heap before
        {Heap before GC invocations=22 (full 3):
         PSYoungGen total 158720K, used 158564K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 146944K, 100% used [0x00000000f5580000,0x00000000fe500000,0x00000000fe500000)
          from space 11776K, 98% used [0x00000000ff400000,0x00000000fff59250,0x00000000fff80000)
          to space 13824K, 0% used [0x00000000fe500000,0x00000000fe500000,0x00000000ff280000)
         ParOldGen total 78336K, used 46946K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 59% used [0x00000000e0000000,0x00000000e2dd8b40,0x00000000e4c80000)
         Metaspace used 45444K, capacity 46408K, committed 46592K, reserved 1089536K
          class space used 5860K, capacity 6098K, committed 6144K, reserved 1048576K
        Event: 81.048 GC heap after
        Heap after GC invocations=22 (full 3):
         PSYoungGen total 160768K, used 5301K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 146944K, 0% used [0x00000000f5580000,0x00000000f5580000,0x00000000fe500000)
          from space 13824K, 38% used [0x00000000fe500000,0x00000000fea2d4c8,0x00000000ff280000)
          to space 12800K, 0% used [0x00000000ff380000,0x00000000ff380000,0x0000000100000000)
         ParOldGen total 78336K, used 57899K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 73% used [0x00000000e0000000,0x00000000e388aef0,0x00000000e4c80000)
         Metaspace used 45444K, capacity 46408K, committed 46592K, reserved 1089536K
          class space used 5860K, capacity 6098K, committed 6144K, reserved 1048576K
        }
        Event: 94.150 GC heap before
        {Heap before GC invocations=23 (full 3):
         PSYoungGen total 160768K, used 152245K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 146944K, 100% used [0x00000000f5580000,0x00000000fe500000,0x00000000fe500000)
          from space 13824K, 38% used [0x00000000fe500000,0x00000000fea2d4c8,0x00000000ff280000)
          to space 12800K, 0% used [0x00000000ff380000,0x00000000ff380000,0x0000000100000000)
         ParOldGen total 78336K, used 57904K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 73% used [0x00000000e0000000,0x00000000e388c1a8,0x00000000e4c80000)
         Metaspace used 46483K, capacity 47438K, committed 47744K, reserved 1091584K
          class space used 5942K, capacity 6153K, committed 6272K, reserved 1048576K
        Event: 94.156 GC heap after
        Heap after GC invocations=23 (full 3):
         PSYoungGen total 154624K, used 12795K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 141824K, 0% used [0x00000000f5580000,0x00000000f5580000,0x00000000fe000000)
          from space 12800K, 99% used [0x00000000ff380000,0x00000000ffffecd8,0x0000000100000000)
          to space 16384K, 0% used [0x00000000fe000000,0x00000000fe000000,0x00000000ff000000)
         ParOldGen total 78336K, used 60846K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 77% used [0x00000000e0000000,0x00000000e3b6b8b8,0x00000000e4c80000)
         Metaspace used 46483K, capacity 47438K, committed 47744K, reserved 1091584K
          class space used 5942K, capacity 6153K, committed 6272K, reserved 1048576K
        }
        Event: 99.172 GC heap before
        {Heap before GC invocations=24 (full 3):
         PSYoungGen total 154624K, used 154619K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 141824K, 100% used [0x00000000f5580000,0x00000000fe000000,0x00000000fe000000)
          from space 12800K, 99% used [0x00000000ff380000,0x00000000ffffecd8,0x0000000100000000)
          to space 16384K, 0% used [0x00000000fe000000,0x00000000fe000000,0x00000000ff000000)
         ParOldGen total 78336K, used 60851K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 77% used [0x00000000e0000000,0x00000000e3b6cca8,0x00000000e4c80000)
         Metaspace used 46730K, capacity 47694K, committed 48000K, reserved 1091584K
          class space used 5946K, capacity 6153K, committed 6272K, reserved 1048576K
        Event: 99.178 GC heap after
        Heap after GC invocations=24 (full 3):
         PSYoungGen total 153600K, used 11526K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 141824K, 0% used [0x00000000f5580000,0x00000000f5580000,0x00000000fe000000)
          from space 11776K, 97% used [0x00000000fe000000,0x00000000feb41ae8,0x00000000feb80000)
          to space 17408K, 0% used [0x00000000fef00000,0x00000000fef00000,0x0000000100000000)
         ParOldGen total 78336K, used 62663K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 79% used [0x00000000e0000000,0x00000000e3d31d18,0x00000000e4c80000)
         Metaspace used 46730K, capacity 47694K, committed 48000K, reserved 1091584K
          class space used 5946K, capacity 6153K, committed 6272K, reserved 1048576K
        }
        Event: 102.412 GC heap before
        {Heap before GC invocations=25 (full 3):
         PSYoungGen total 153600K, used 152545K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 141824K, 99% used [0x00000000f5580000,0x00000000fdf36a68,0x00000000fe000000)
          from space 11776K, 97% used [0x00000000fe000000,0x00000000feb41ae8,0x00000000feb80000)
          to space 17408K, 0% used [0x00000000fef00000,0x00000000fef00000,0x0000000100000000)
         ParOldGen total 78336K, used 62663K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 79% used [0x00000000e0000000,0x00000000e3d31d18,0x00000000e4c80000)
         Metaspace used 46866K, capacity 47894K, committed 48256K, reserved 1091584K
          class space used 5946K, capacity 6153K, committed 6272K, reserved 1048576K
        Event: 102.416 GC heap after
        Heap after GC invocations=25 (full 3):
         PSYoungGen total 157696K, used 3955K [0x00000000f5580000, 0x0000000100000000, 0x0000000100000000)
          eden space 140288K, 0% used [0x00000000f5580000,0x00000000f5580000,0x00000000fde80000)
          from space 17408K, 22% used [0x00000000fef00000,0x00000000ff2dcd20,0x0000000100000000)
          to space 16896K, 0% used [0x00000000fde80000,0x00000000fde80000,0x00000000fef00000)
         ParOldGen total 78336K, used 65691K [0x00000000e0000000, 0x00000000e4c80000, 0x00000000f5580000)
          object space 78336K, 83% used [0x00000000e0000000,0x00000000e4026e58,0x00000000e4c80000)
         Metaspace used 46866K, capacity 47894K, committed 48256K, reserved 1091584K
          class space used 5946K, capacity 6153K, committed 6272K, reserved 1048576K
        }

        Deoptimization events (10 events):
        Event: 81.518 Thread 0x0000000015e55800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002618594 method=java.lang.String.indexOf([CII[CIII)I @ 27
        Event: 81.522 Thread 0x0000000015e5c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000000000264230c method=java.lang.String.indexOf([CII[CIII)I @ 27
        Event: 81.528 Thread 0x0000000015e5e800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000002705b0c method=java.lang.String.indexOf([CII[CIII)I @ 27
        Event: 90.094 Thread 0x00000000159dd000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000035920e8 method=java.awt.EventQueue.coalesceEvent(Ljava/awt/AWTEvent;I)Z @ 77
        Event: 90.116 Thread 0x00000000159dd000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000035920e8 method=java.awt.EventQueue.coalesceEvent(Ljava/awt/AWTEvent;I)Z @ 77
        Event: 90.163 Thread 0x00000000159dd000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000035920e8 method=java.awt.EventQueue.coalesceEvent(Ljava/awt/AWTEvent;I)Z @ 77
        Event: 90.201 Thread 0x00000000159dd000 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00000000035920e8 method=java.awt.EventQueue.coalesceEvent(Ljava/awt/AWTEvent;I)Z @ 77
        Event: 100.450 Thread 0x000000001e809000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000029b1d44 method=java.util.ArrayList$Itr.checkForComodification()V @ 11
        Event: 103.949 Thread 0x00000000158d7000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000000035e03ac method=java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;I)Z @ 17
        Event: 103.949 Thread 0x00000000159dd000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000000003704560 method=java.util.concurrent.locks.AbstractQueuedSynchronizer.isOnSyncQueue(Ljava/util/concurrent/locks/AbstractQueuedSynchronizer$Node;)Z @ 22

        Internal exceptions (10 events):
        Event: 81.183 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f5f77d98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 94.243 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f560bdb8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 94.245 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f560f958) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 94.247 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f56134f8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 99.349 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f56dfb50) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 99.351 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f56e36f0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 99.353 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f56e7290) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 102.862 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f5f713f8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 102.864 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f5f74f98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]
        Event: 102.867 Thread 0x0000000015e54800 Exception <a 'java/lang/ClassNotFoundException': sun/net/www/protocol/about/Handler> (0x00000000f5f78b38) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\classfile\systemDictionary.cpp, line 210]

        Events (10 events):
        Event: 103.949 Thread 0x00000000159dd000 DEOPT UNPACKING pc=0x00000000023c582a sp=0x000000001906ee88 mode 2
        Event: 105.231 Thread 0x0000000015906000 Thread added: 0x0000000015906000
        Event: 105.231 Thread 0x0000000015906000 Thread exited: 0x0000000015906000
        Event: 105.232 Thread 0x0000000015907800 Thread added: 0x0000000015907800
        Event: 105.232 Thread 0x000000001edff800 Thread exited: 0x000000001edff800
        Event: 105.248 Thread 0x0000000015906000 Thread added: 0x0000000015906000
        Event: 105.248 Thread 0x000000001edfd800 Thread exited: 0x000000001edfd800
        Event: 105.248 Thread 0x0000000015906000 Thread exited: 0x0000000015906000
        Event: 106.285 Executing VM operation: BulkRevokeBias
        Event: 106.285 Executing VM operation: BulkRevokeBias done


        Dynamic libraries:
        0x00007ff7d6230000 - 0x00007ff7d6267000 C:\Program Files\Java\jdk1.8.0_131\bin\java.exe
        0x00007ffa868b0000 - 0x00007ffa86a81000 C:\Windows\SYSTEM32\ntdll.dll
        0x00007ffa843e0000 - 0x00007ffa8448b000 C:\Windows\System32\KERNEL32.DLL
        0x00007ffa83640000 - 0x00007ffa8385d000 C:\Windows\System32\KERNELBASE.dll
        0x00007ffa847a0000 - 0x00007ffa84842000 C:\Windows\System32\ADVAPI32.dll
        0x00007ffa83f10000 - 0x00007ffa83fae000 C:\Windows\System32\msvcrt.dll
        0x00007ffa85000000 - 0x00007ffa85059000 C:\Windows\System32\sechost.dll
        0x00007ffa85060000 - 0x00007ffa85181000 C:\Windows\System32\RPCRT4.dll
        0x00007ffa84530000 - 0x00007ffa84695000 C:\Windows\System32\USER32.dll
        0x00007ffa83580000 - 0x00007ffa8359e000 C:\Windows\System32\win32u.dll
        0x00007ffa86870000 - 0x00007ffa868a4000 C:\Windows\System32\GDI32.dll
        0x00007ffa83a20000 - 0x00007ffa83ba2000 C:\Windows\System32\gdi32full.dll
        0x00007ffa79020000 - 0x00007ffa79299000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.14393.447_none_42191651c6827bb3\COMCTL32.dll
        0x00007ffa849b0000 - 0x00007ffa84c78000 C:\Windows\System32\combase.dll
        0x00007ffa83480000 - 0x00007ffa83575000 C:\Windows\System32\ucrtbase.dll
        0x00007ffa83bb0000 - 0x00007ffa83c1a000 C:\Windows\System32\bcryptPrimitives.dll
        0x00007ffa85190000 - 0x00007ffa851be000 C:\Windows\System32\IMM32.DLL
        0x000000006c840000 - 0x000000006c912000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcr100.dll
        0x000000006bfa0000 - 0x000000006c83c000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\server\jvm.dll
        0x00007ffa84ec0000 - 0x00007ffa84ec8000 C:\Windows\System32\PSAPI.DLL
        0x00007ffa711b0000 - 0x00007ffa711b9000 C:\Windows\SYSTEM32\WSOCK32.dll
        0x00007ffa80a60000 - 0x00007ffa80a83000 C:\Windows\SYSTEM32\WINMM.dll
        0x00007ffa7e1e0000 - 0x00007ffa7e1ea000 C:\Windows\SYSTEM32\VERSION.dll
        0x00007ffa84f90000 - 0x00007ffa84ffa000 C:\Windows\System32\WS2_32.dll
        0x00007ffa80a00000 - 0x00007ffa80a2b000 C:\Windows\SYSTEM32\WINMMBASE.dll
        0x00007ffa83c20000 - 0x00007ffa83c62000 C:\Windows\System32\cfgmgr32.dll
        0x000000006bf90000 - 0x000000006bf9f000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\verify.dll
        0x000000006bf60000 - 0x000000006bf89000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\java.dll
        0x000000006bf40000 - 0x000000006bf56000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\zip.dll
        0x00007ffa85360000 - 0x00007ffa86869000 C:\Windows\System32\SHELL32.dll
        0x00007ffa82da0000 - 0x00007ffa8347a000 C:\Windows\System32\windows.storage.dll
        0x00007ffa82d40000 - 0x00007ffa82d8c000 C:\Windows\System32\powrprof.dll
        0x00007ffa84f30000 - 0x00007ffa84f82000 C:\Windows\System32\shlwapi.dll
        0x00007ffa82d30000 - 0x00007ffa82d3f000 C:\Windows\System32\kernel.appcore.dll
        0x00007ffa83860000 - 0x00007ffa83909000 C:\Windows\System32\shcore.dll
        0x00007ffa82d10000 - 0x00007ffa82d24000 C:\Windows\System32\profapi.dll
        0x000000006bd00000 - 0x000000006be98000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\awt.dll
        0x00007ffa83e50000 - 0x00007ffa83f0f000 C:\Windows\System32\OLEAUT32.dll
        0x00007ffa835a0000 - 0x00007ffa8363c000 C:\Windows\System32\msvcp_win.dll
        0x00007ffa812c0000 - 0x00007ffa8133a000 C:\Windows\SYSTEM32\apphelp.dll
        0x00007ffa814a0000 - 0x00007ffa81535000 C:\Windows\system32\uxtheme.dll
        0x00007ffa84850000 - 0x00007ffa849ab000 C:\Windows\System32\MSCTF.dll
        0x00007ffa80d00000 - 0x00007ffa80d26000 C:\Windows\system32\dwmapi.dll
        0x00007ffa84c80000 - 0x00007ffa84db7000 C:\Windows\System32\ole32.dll
        0x00007ffa72820000 - 0x00007ffa72943000 C:\Windows\system32\opengl32.dll
        0x00007ffa7c370000 - 0x00007ffa7c39d000 C:\Windows\SYSTEM32\GLU32.dll
        0x00007ffa72490000 - 0x00007ffa72587000 C:\Windows\SYSTEM32\DDRAW.dll
        0x00007ffa7ccb0000 - 0x00007ffa7ccb8000 C:\Windows\SYSTEM32\DCIMAN32.dll
        0x00007ffa684b0000 - 0x00007ffa6863d000 C:\Windows\system32\d3d9.dll
        0x00007ffa7f320000 - 0x00007ffa7f5ad000 C:\Windows\SYSTEM32\d3d10warp.dll
        0x000000006bc30000 - 0x000000006bc77000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\fontmanager.dll
        0x000000006bf20000 - 0x000000006bf3a000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\net.dll
        0x00007ffa82510000 - 0x00007ffa8256c000 C:\Windows\system32\mswsock.dll
        0x000000006bf00000 - 0x000000006bf11000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\nio.dll
        0x000000006bbe0000 - 0x000000006bc22000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\t2k.dll
        0x000000006bcd0000 - 0x000000006bcf4000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\sunec.dll
        0x00007ffa822a0000 - 0x00007ffa822d8000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
        0x00007ffa83e40000 - 0x00007ffa83e48000 C:\Windows\System32\NSI.dll
        0x00007ffa7e720000 - 0x00007ffa7e736000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
        0x00007ffa7e700000 - 0x00007ffa7e71a000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
        0x00007ffa82780000 - 0x00007ffa82797000 C:\Windows\SYSTEM32\CRYPTSP.dll
        0x00007ffa82690000 - 0x00007ffa826c3000 C:\Windows\system32\rsaenh.dll
        0x00007ffa82c50000 - 0x00007ffa82c7b000 C:\Windows\SYSTEM32\bcrypt.dll
        0x00007ffa82390000 - 0x00007ffa823af000 C:\Windows\SYSTEM32\USERENV.dll
        0x00007ffa827a0000 - 0x00007ffa827ab000 C:\Windows\SYSTEM32\CRYPTBASE.dll
        0x00007ffa822e0000 - 0x00007ffa82380000 C:\Windows\SYSTEM32\DNSAPI.dll
        0x00007ffa7e140000 - 0x00007ffa7e14a000 C:\Windows\System32\rasadhlp.dll
        0x00007ffa7e540000 - 0x00007ffa7e5aa000 C:\Windows\System32\fwpuclnt.dll
        0x000000006bef0000 - 0x000000006befb000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\sunmscapi.dll
        0x00007ffa83c70000 - 0x00007ffa83e39000 C:\Windows\System32\CRYPT32.dll
        0x00007ffa82d90000 - 0x00007ffa82da0000 C:\Windows\System32\MSASN1.dll
        0x00007ffa75900000 - 0x00007ffa75916000 C:\Windows\system32\napinsp.dll
        0x00007ffa75920000 - 0x00007ffa7593a000 C:\Windows\system32\pnrpnsp.dll
        0x00007ffa7e210000 - 0x00007ffa7e228000 C:\Windows\system32\NLAapi.dll
        0x00007ffa75980000 - 0x00007ffa7598e000 C:\Windows\System32\winrnr.dll
        0x00007ffa759c0000 - 0x00007ffa759d5000 C:\Windows\System32\wshbth.dll
        0x00007ffa84490000 - 0x00007ffa8452f000 C:\Windows\System32\clbcatq.dll
        0x00007ffa80b50000 - 0x00007ffa80cf8000 C:\Windows\SYSTEM32\WindowsCodecs.dll
        0x00007ffa6f7a0000 - 0x00007ffa6f7e9000 C:\Windows\system32\dataexchange.dll
        0x00007ffa80e10000 - 0x00007ffa80f61000 C:\Windows\system32\dcomp.dll
        0x00007ffa80200000 - 0x00007ffa804b6000 C:\Windows\system32\d3d11.dll
        0x00007ffa81ca0000 - 0x00007ffa81d3f000 C:\Windows\system32\dxgi.dll
        0x00007ffa81770000 - 0x00007ffa8188c000 C:\Windows\system32\twinapi.appcore.dll
        0x000000006bee0000 - 0x000000006beed000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\management.dll
        0x00007ffa71800000 - 0x00007ffa718ac000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.14393.447_none_0d5aa7fbb6d35646\comctl32.dll
        0x000000006bba0000 - 0x000000006bbca000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\dcpr.dll
        0x0000000069120000 - 0x0000000069151000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\jpeg.dll
        0x00007ffa747e0000 - 0x00007ffa748cf000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcr120.dll
        0x00007ffa68400000 - 0x00007ffa684a6000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\msvcp120.dll
        0x000000006bb70000 - 0x000000006bb92000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\prism_d3d.dll
        0x000000006bb20000 - 0x000000006bb63000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\glass.dll
        0x00007ffa84dc0000 - 0x00007ffa84eba000 C:\Windows\System32\COMDLG32.dll
        0x0000000069360000 - 0x000000006bb14000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\jfxwebkit.dll
        0x0000000069340000 - 0x0000000069354000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\javafx_font.dll
        0x00007ffa79e80000 - 0x00007ffa7a0e9000 C:\Windows\SYSTEM32\dwrite.dll
        0x000000006bcb0000 - 0x000000006bcc1000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\prism_common.dll
        0x0000000069260000 - 0x00000000692d3000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\glib-lite.dll
        0x00000000691c0000 - 0x000000006925c000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\gstreamer-lite.dll
        0x00007ffa62460000 - 0x00007ffa624fb000 C:\Windows\SYSTEM32\DSOUND.dll
        0x000000006bc80000 - 0x000000006bca5000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\jfxmedia.dll
        0x00007ffa82980000 - 0x00007ffa829ac000 C:\Windows\SYSTEM32\SspiCli.dll
        0x0000000069180000 - 0x00000000691b1000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\fxplugins.dll
        0x0000000063cc0000 - 0x0000000063ce3000 C:\Program Files\Java\jdk1.8.0_131\jre\bin\javafx_iio.dll
        0x00007ffa7d980000 - 0x00007ffa7d9f1000 C:\Windows\System32\MMDevApi.dll
        0x00007ffa819e0000 - 0x00007ffa81a08000 C:\Windows\System32\DEVOBJ.dll
        0x00007ffa80790000 - 0x00007ffa80915000 C:\Windows\System32\PROPSYS.dll
        0x00007ffa695f0000 - 0x00007ffa69684000 C:\Windows\SYSTEM32\AUDIOSES.DLL
        0x00007ffa7fc00000 - 0x00007ffa7fd36000 C:\Windows\SYSTEM32\wintypes.dll
        0x00007ffa7a7a0000 - 0x00007ffa7a7ca000 C:\Windows\System32\qasf.dll
        0x00007ffa5f140000 - 0x00007ffa5f38b000 C:\Windows\System32\WMVCore.DLL
        0x00007ffa7cb60000 - 0x00007ffa7cb6a000 C:\Windows\System32\msdmo.dll
        0x00007ffa67a50000 - 0x00007ffa67a9e000 C:\Windows\System32\WMASF.DLL
        0x00007ffa621e0000 - 0x00007ffa6230d000 C:\Windows\System32\mfperfhelper.dll
        0x00007ffa794f0000 - 0x00007ffa79658000 C:\Windows\SYSTEM32\MFPlat.DLL
        0x00007ffa796b0000 - 0x00007ffa796de000 C:\Windows\SYSTEM32\RTWorkQ.DLL
        0x00007ffa7a780000 - 0x00007ffa7a79d000 C:\Windows\System32\mp3dmod.dll
        0x00007ffa5ef70000 - 0x00007ffa5f133000 C:\Windows\System32\quartz.dll
        0x00007ffa78a00000 - 0x00007ffa78b92000 C:\Windows\SYSTEM32\dbghelp.dll

        VM Arguments:
        jvm_args: -Dfile.encoding=UTF-8 -Djava.util.logging.config.file=c:\FT_Development\logging.properties -Xmx512m -Xverify:none -Dcomp.dialogfactory.xml.caching=false -Dhttp.proxyHost=ni1s006.eu.ykgw.net -Dhttp.proxyPort=8080 -Dhttps.proxyHost=ni1s006.eu.ykgw.net -Dhttps.proxyPort=8080
        java_command: comp.jwui.poi.PoiStarter -h DESKTOP-JJ3OVDA -p 8443
        java_class_path (initial): C:\FT_Development\src\trunk\dis\jtools\ext\jetty\json-simple-1.1.1.jar;C:\FT_Development\IBM_ILOG_Sources\JViews-chart-all\jviews-diagrammer-all.jar;C:\FT_Development\IBM_ILOG_Sources\JViews-chart-all\all_ext_R10.03_wo_jviews.jar;C:\FT_Development\IBM_ILOG_Sources\JViews-chart-all\jviews-framework-all.jar;C:\FT_Development\IBM_ILOG_Sources\JViews-chart-all\jviews-chart-all.jar;C:\FT_Development\src\trunk\dis\jhmi\ext\nsvm\prj\build\classes;C:\FT_Development\src\trunk\dis\jhmi\prj\hmn\netbeans_jhmi_all\build\classes
        Launcher Type: SUN_STANDARD

        Environment Variables:
        JAVA_HOME=C:\Program Files\Java\jdk1.8.0_112
        JRE_HOME=C:\Program Files\Java\jdk1.8.0_112\jre
        PATH= C:\WINDOWS;C:\Windows\system32;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\Users\yawa\AppData\Local\Microsoft\WindowsApps;C:\FT_Development\tls\exe;C:\FT_Development\tls\com;C:\FT_Development\src\trunk\dis\gen\src;C:\FT_Development\src\trunk\dis\dev\src;C:\FT_Development\tls\jre\jre\bin;C:\Program Files\Java\jdk1.8.0_112\jre\bin;C:\apache-ant-1.9.7\bin;C:\ProgramData\Oracle\Java\javapath;c:\Python27;C:\Program Files\Java\jdk1.8.0_112;C:\Program Files\Java\jdk1.8.0_112\jre;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Java\jdk1.8.0_112\bin;C:\Program Files\Java\jdk1.8.0_112\include;C:\Program Files (x86)\Visual Leak Detector\bin\Win32;C:\Program Files (x86)\Visual Leak Detector\bin\Win64;C:\Users\yawa\AppData\Local\Microsoft\WindowsApps;
        USERNAME=yawa
        OS=Windows_NT
        PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 94 Stepping 3, GenuineIntel



        --------------- S Y S T E M ---------------

        OS: Windows 10.0 , 64 bit Build 14393 (10.0.14393.0)

        CPU:total 4 (initial active 4) (4 cores per cpu, 1 threads per core) family 6 model 94 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, aes, clmul, 3dnowpref, lzcnt, tsc, tscinvbit

        Memory: 4k page, physical 6257204k(2253632k free), swap 8044564k(2107312k free)

        vm_info: Java HotSpot(TM) 64-Bit Server VM (25.131-b11) for windows-amd64 JRE (1.8.0_131-b11), built on Mar 15 2017 01:23:53 by "java_re" with MS VC++ 10.0 (VS2010)

        time: Thu May 04 18:28:32 2017
        elapsed time: 107 seconds (0d 0h 1m 47s)



        REPRODUCIBILITY :
        This bug can be reproduced often.

        CUSTOMER SUBMITTED WORKAROUND :
        This was a workaround to make the WebView transparent

              ghb Guru Hb (Inactive)
              webbuggrp Webbug Group
              Votes:
              0 Vote for this issue
              Watchers:
              8 Start watching this issue

                Created:
                Updated:
                Resolved: