tests/auto/declarative/qdeclarativexmlhttprequest/data/document.qml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 02 Sep 2010 21:20:32 +0300
changeset 34 a33bf25e6f72
parent 30 5dc02b23752f
permissions -rw-r--r--
Revision: 201033 Kit: 201035

import Qt 4.7

QtObject {
    property bool xmlTest: false
    property bool dataOK: false

    function checkXML(document)
    {
        if (document.xmlVersion != "1.0")
            return;

        if (document.xmlEncoding != "UTF-8")
            return;

        if (document.xmlStandalone != true)
            return;

        if (document.documentElement == null)
            return;

        if (document.nodeName != "#document")
            return;

        if (document.nodeValue != null)
            return;

        if (document.parentNode != null)
            return;

        // ### Test other node properties
        // ### test encoding (what is a valid qt encoding?)
        xmlTest = true;
    }

    Component.onCompleted: {
        var x = new XMLHttpRequest;

        x.open("GET", "document.xml");

        // Test to the end
        x.onreadystatechange = function() {
            if (x.readyState == XMLHttpRequest.DONE) {

                dataOK = true;

                if (x.responseXML != null)
                    checkXML(x.responseXML);

            }
        }

        x.send()
    }
}