Lines Matching refs:node

87       var node;
104 node = elem.firstChild;
106 featureImpl = node.getFeature("Core",nullVersion);
107 assertSame("coreUnspecifiedVersion",node,featureImpl);
108 featureImpl = node.getFeature("cOrE",nullVersion);
109 assertSame("cOrEUnspecifiedVersion",node,featureImpl);
110 featureImpl = node.getFeature("+cOrE",nullVersion);
111 assertSame("PlusCoreUnspecifiedVersion",node,featureImpl);
112 featureImpl = node.getFeature("org.w3c.domts.bogus.feature",nullVersion);
114 featureImpl = node.getFeature("cOrE","2.0");
115 assertSame("Core20",node,featureImpl);
116 featureImpl = node.getFeature("cOrE","3.0");
117 assertSame("Core30",node,featureImpl);
118 isSupported = node.isSupported("XML",nullVersion);
119 featureImpl = node.getFeature("XML",nullVersion);
124 assertSame("XMLUnspecified",node,featureImpl);
127 isSupported = node.isSupported("SVG",nullVersion);
128 featureImpl = node.getFeature("SVG",nullVersion);
133 assertSame("SVGUnspecified",node,featureImpl);
136 isSupported = node.isSupported("HTML",nullVersion);
137 featureImpl = node.getFeature("HTML",nullVersion);
142 assertSame("HTMLUnspecified",node,featureImpl);
145 isSupported = node.isSupported("Events",nullVersion);
146 featureImpl = node.getFeature("Events",nullVersion);
151 assertSame("EventsUnspecified",node,featureImpl);
154 isSupported = node.isSupported("LS",nullVersion);
155 featureImpl = node.getFeature("LS",nullVersion);
160 assertSame("LSUnspecified",node,featureImpl);
163 isSupported = node.isSupported("LS-Async",nullVersion);
164 featureImpl = node.getFeature("LS-Async",nullVersion);
169 assertSame("LSAsyncUnspecified",node,featureImpl);
172 isSupported = node.isSupported("XPath",nullVersion);
173 featureImpl = node.getFeature("XPath",nullVersion);
178 assertSame("XPathUnspecified",node,featureImpl);
181 isSupported = node.isSupported("+HTML",nullVersion);
182 featureImpl = node.getFeature("HTML",nullVersion);
190 isSupported = node.isSupported("+SVG",nullVersion);
191 featureImpl = node.getFeature("SVG",nullVersion);