Comment 8 for bug 1582060

Revision history for this message
Olivier Tilloy (osomon) wrote : Re: OSK doesn’t pop up on HERE account login page

This seems to be an oxide issue, I can reliably reproduce on my phone with the following minimal QML scene:

import QtQuick 2.4
import com.canonical.Oxide 1.12
WebView {
  id: root
  Component {
    id: webviewFactory
    WebView {
      anchors.fill: parent
    }
  }
  onNewViewRequested: webviewFactory.createObject(root, {"request": request, "visible": true})
  Component.onCompleted: loadHtml('<html><body><a href="http://start.ubuntu.com" target="_blank">test</a></body></html>')
}