qt6-bb10/qtdeclarative/tests/auto/qml/qqmlxmlhttprequest/data/send_unsent.qml

17 lines
291 B
QML

import QtQuick 2.0
QtObject {
property bool test: false
Component.onCompleted: {
var x = new XMLHttpRequest;
try {
x.send();
} catch (e) {
if (e.code == DOMException.INVALID_STATE_ERR)
test = true;
}
}
}