aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/interception/types/intercepted/urlInterceptor.qml
blob: be86195bd8ec874269b41fac9300ba4a4d4aa01f (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQml 2.0
import "intercepted.js" as Script

QtObject {
    property url filePath: "doesNotExist.file"
    property url resolvedUrl: Qt.resolvedUrl("doesNotExist.file");
    property url absoluteUrl: Qt.resolvedUrl("file:///doesNotExist.file");
    property string childString: child.myStr
    property string scriptString: Script.myStr
    property Intercepted child: Intercepted {}
}