aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlengine/data/interception/qmldir/intercepted/urlInterceptor.qml
blob: bd4aee056af9e483ba571fa85a14a93ac6bd4e02 (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: "FailsTest"
    property url resolvedUrl: Qt.resolvedUrl("FailsTest");
    property url absoluteUrl: Qt.resolvedUrl("file:///FailsTest");
    property string childString: child.myStr
    property string scriptString: Script.myStr
    property Intercepted child: Intercepted {}
}