Home | History | Annotate | Download | only in test

Lines Matching refs:root

69         root = dom.documentElement
70 elem = root.childNodes[0]
72 root.insertBefore(nelem, elem)
73 self.confirm(len(root.childNodes) == 2
74 and root.childNodes.length == 2
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
79 and root.firstChild is nelem
80 and root.lastChild is elem
81 and root.toxml() == "<doc><element/><foo/></doc>"
84 root.insertBefore(nelem, None)
85 self.confirm(len(root.childNodes) == 3
86 and root.childNodes.length == 3
87 and root.childNodes[1] is elem
88 and root.childNodes.item(1) is elem
89 and root.childNodes[2] is nelem
90 and root.childNodes.item(2) is nelem
91 and root.lastChild is nelem
93 and root.toxml() == "<doc><element/><foo/><element/></doc>"
96 root.insertBefore(nelem2, nelem)
97 self.confirm(len(root.childNodes) == 4
98 and root.childNodes.length == 4
99 and root.childNodes[2] is nelem2
100 and root.childNodes.item(2) is nelem2
101 and root.childNodes[3] is nelem
102 and root.childNodes.item(3) is nelem
105 and root.toxml() ==
594 root = dom.documentElement
595 clone = root.cloneNode(deep)
597 root, clone, "testCloneElement" + (deep and "Deep" or "Shallow"))
599 root.tagName = root.nodeName = "MODIFIED"
600 root.setAttribute("attr", "NEW VALUE")
601 root.setAttribute("added", "VALUE")
778 root = doc.documentElement
779 root.appendChild(doc.createTextNode("first"))
780 root.appendChild(doc.createTextNode("second"))
781 self.confirm(len(root.childNodes) == 2
782 and root.childNodes.length == 2,
785 self.confirm(len(root.childNodes) == 1
786 and root.childNodes.length == 1
787 and root.firstChild is root.lastChild
788 and root.firstChild.data == "firstsecond"
793 root = doc.documentElement
794 root.appendChild(doc.createTextNode(""))
796 self.confirm(len(root.childNodes) == 0
797 and root.childNodes.length == 0,
803 root = doc.documentElement
804 root.appendChild(doc.createTextNode("first"))
805 root.appendChild(doc.createTextNode("second"))
806 root.appendChild(doc.createElement("i"))
807 self.confirm(len(root.childNodes) == 3
808 and root.childNodes.length == 3,
811 self.confirm(len(root.childNodes) == 2
812 and root.childNodes.length == 2
813 and root.firstChild.data == "firstsecond"
814 and root.firstChild is not root.lastChild
815 and root.firstChild.nextSibling is root.lastChild
816 and root.firstChild.previousSibling is None
817 and root.lastChild.previousSibling is root.firstChild
818 and root.lastChild.nextSibling is None
824 root = doc.documentElement
825 root.appendChild(doc.createTextNode("first"))
826 root.appendChild(doc.createTextNode(""))
827 self.confirm(len(root.childNodes) == 2
828 and root.childNodes.length == 2,
831 self.confirm(len(root.childNodes) == 1
832 and root.childNodes.length == 1
833 and root.firstChild.data == "first"
834 and root.firstChild is root.lastChild
835 and root.firstChild.nextSibling is None
836 and root.firstChild.previousSibling is None
842 root = doc.documentElement
843 root.appendChild(doc.createTextNode(""))
844 root.appendChild(doc.createTextNode("second"))
845 self.confirm(len(root.childNodes) == 2
846 and root.childNodes.length == 2,
849 self.confirm(len(root.childNodes) == 1
850 and root.childNodes.length == 1
851 and root.firstChild.data == "second"
852 and root.firstChild is root.lastChild
853 and root.firstChild.nextSibling is None
854 and root.firstChild.previousSibling is None
860 root = doc.documentElement
861 root.appendChild(doc.createElement("i"))
862 root.appendChild(doc.createTextNode(""))
863 root.appendChild(doc.createElement("i"))
864 self.confirm(len(root.childNodes) == 3
865 and root.childNodes.length == 3,
868 self.confirm(len(root.childNodes) == 2
869 and root.childNodes.length == 2
870 and root.firstChild is not root.lastChild
871 and root.firstChild.nextSibling is root.lastChild
872 and root.firstChild.previousSibling is None
873 and root.lastChild.previousSibling is root.firstChild
874 and root.lastChild.nextSibling is None
880 root = doc.documentElement
881 root.appendChild(doc.createTextNode(""))
882 root.appendChild(doc.createTextNode("second"))
883 root.appendChild(doc.createTextNode(""))
884 root.appendChild(doc.createTextNode("fourth"))
885 root.appendChild(doc.createTextNode(""))
886 self.confirm(len(root.childNodes) == 5
887 and root.childNodes.length == 5,
890 self.confirm(len(root.childNodes) == 1
891 and root.childNodes.length == 1
892 and root.firstChild is root.lastChild
893 and root.firstChild.data == "secondfourth"
894 and root.firstChild.previousSibling is None
895 and root.firstChild.nextSibling is None
917 root = doc.documentElement
918 root.childNodes[0].appendChild(doc.createTextNode(""))
919 root.childNodes[0].appendChild(doc.createTextNode("x"))
920 root.childNodes[1].childNodes[0].appendChild(doc.createTextNode("x2"))
921 root.childNodes[1].appendChild(doc.createTextNode("x3"))
922 root.appendChild(doc.createTextNode(""))
923 self.confirm(len(root.childNodes) == 3
924 and root.childNodes.length == 3
925 and len(root.childNodes[0].childNodes) == 4
926 and root.childNodes[0].childNodes.length == 4
927 and len(root.childNodes[1].childNodes) == 3
928 and root.childNodes[1].childNodes.length == 3
929 and len(root.childNodes[1].childNodes[0].childNodes) == 2
930 and root.childNodes[1].childNodes[0].childNodes.length == 2
933 self.confirm(len(root.childNodes) == 2
934 and root.childNodes.length == 2
935 and len(root.childNodes[0].childNodes) == 2
936 and root.childNodes[0].childNodes.length == 2
937 and len(root.childNodes[1].childNodes) == 2
938 and root.childNodes[1].childNodes.length == 2
939 and len(root.childNodes[1].childNodes[0].childNodes) == 1
940 and root.childNodes[1].childNodes[0].childNodes.length == 1
942 self.confirm(root.childNodes[0].childNodes[1].data == "tx"
943 and root.childNodes[1].childNodes[0].childNodes[0].data == "t2x2"
944 and root.childNodes[1].childNodes[1].data == "t3x3"
946 self.confirm(root.childNodes[0].childNodes[1].nextSibling is None
947 and root.childNodes[0].childNodes[1].previousSibling
948 is root.childNodes[0].childNodes[0]
949 and root.childNodes[0].childNodes[0].previousSibling is None
950 and root.childNodes[0].childNodes[0].nextSibling
951 is root.childNodes[0].childNodes[1]
952 and root.childNodes[1].childNodes[1].nextSibling is None
953 and root.childNodes[1].childNodes[1].previousSibling
954 is root.childNodes[1].childNodes[0]
955 and root.childNodes[1].childNodes[0].previousSibling is None
956 and root.childNodes[1].childNodes[0].nextSibling
957 is root.childNodes[1].childNodes[1]
980 root = doc.documentElement
981 (pi, text, elm) = root.childNodes
995 root = doc.documentElement
996 elm1 = root.childNodes[0]
1000 self.confirm(root.parentNode is doc and
1001 elm1.parentNode is root and
1034 root = doc.documentElement
1035 (text1, elm1, text2) = root.childNodes
1047 self.confirm(root.parentNode is doc and
1048 text1.parentNode is root and
1049 elm1.parentNode is root and
1050 text2.parentNode is root and