Comment 2 for bug 1292593

Revision history for this message
Chris Coulson (chrisccoulson) wrote :

And you don't even need the second webview:

import QtQuick 2.0
import QtTest 1.0
import com.canonical.Oxide 0.1

Item {
  focus: true

  WebContext {
    id: context
  }

  WebView {
    id: webview
    width: 200
    height: 200
    context: context
  }
}