Details
-
Bug
-
Resolution: Incomplete
-
P2: Important
-
None
-
5.4.0 RC
-
None
-
qt5 5.4 branch on Gentoo Linux amd64
Qt 5.4RC on Ubuntu 14.04
Description
How to reproduce: run the code below with qmlscene
import QtQuick 2.2 Item { width: 360 height: 360 Timer { interval: 100 repeat: true running: true onTriggered: { var request = new XMLHttpRequest request.open('GET', 'http://192.168.0.1/') // please change the url to a valid one request.send() } } }
memory consumption is getting increased continuously.