Websocket support in QtWebkit 1.0
-
Hi,
I don't have QtWebkit 1.0 installed but if you have then you can test it by loading this "http://www.websocket.org/echo.html":http://www.websocket.org/echo.html link into the WebView. On loading the website should show the result.
I tested in using Qt Webkit 3.0 as follows:
@
import QtQuick 2.0
import QtQuick.Controls 1.0
import QtWebKit 3.0ScrollView {
width: 1280
height: 720
WebView {
url: "http://www.websocket.org/echo.html"
anchors.fill: parent
}
}@
-
Wonderful.. Good to hear that :)