Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-66281

QML WebEngineView crash with Render process exited with code -2147483645 (killed) in Debug Mode

    XMLWordPrintable

Details

    • Bug
    • Resolution: Incomplete
    • Not Evaluated
    • None
    • 5.10.0
    • WebEngine
    • None

    Description

      I am trying to open a webpage in QML WebEngineView with Qt 5.10 and it crash with Render process exited with code -2147483645 (killed). 

      I am opening exact same webpage with Qt5.9.3 and it works fine.

      I can't provide the website, cause it is private.

      What our page is doing is to navigate internally to a page when authentication is received.

      It is happening 100%, and on Qt QuickNanoBrowser example too.

      My simple example is:

      ApplicationWindow {
      visible: true
      width: 640
      height: 480
      title: qsTr("Hello World")
      
      WebEngineView \{
      id: webEngine
      anchors.fill: parent
      url: ""
      
      onLoadingChanged: \{
      if(loadRequest.status === WebEngineLoadRequest.LoadStartedStatus) \{
      console.log("LoadStartedStatus: " + loadRequest.url)
      }
      else if(loadRequest.status === WebEngineLoadRequest.LoadSucceededStatus) \{
      console.log("LoadSucceededStatus: " + loadRequest.url)
      }
      else if(loadRequest.status === WebEngineLoadRequest.LoadFailedStatus) \{
      console.log("LoadFailedStatus: " + loadRequest.url + " error string: " + loadRequest.errorString)
      }
      }
      }
      }
      

       
      It stucks on LoadStartedStatus and crash with Render process exited with code -2147483645 (killed)

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            qt_webengine_team Qt WebEngine Team
            cust0m1z3 Yordan Bonev
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes