Lines Matching refs:node

87       var node;
106 node = notations.getNamedItem("notation1");
107 featureImpl = node.getFeature("Core",nullVersion);
108 assertSame("coreUnspecifiedVersion",node,featureImpl);
109 featureImpl = node.getFeature("cOrE",nullVersion);
110 assertSame("cOrEUnspecifiedVersion",node,featureImpl);
111 featureImpl = node.getFeature("+cOrE",nullVersion);
112 assertSame("PlusCoreUnspecifiedVersion",node,featureImpl);
113 featureImpl = node.getFeature("org.w3c.domts.bogus.feature",nullVersion);
115 featureImpl = node.getFeature("cOrE","2.0");
116 assertSame("Core20",node,featureImpl);
117 featureImpl = node.getFeature("cOrE","3.0");
118 assertSame("Core30",node,featureImpl);
119 isSupported = node.isSupported("XML",nullVersion);
120 featureImpl = node.getFeature("XML",nullVersion);
125 assertSame("XMLUnspecified",node,featureImpl);
128 isSupported = node.isSupported("SVG",nullVersion);
129 featureImpl = node.getFeature("SVG",nullVersion);
134 assertSame("SVGUnspecified",node,featureImpl);
137 isSupported = node.isSupported("HTML",nullVersion);
138 featureImpl = node.getFeature("HTML",nullVersion);
143 assertSame("HTMLUnspecified",node,featureImpl);
146 isSupported = node.isSupported("Events",nullVersion);
147 featureImpl = node.getFeature("Events",nullVersion);
152 assertSame("EventsUnspecified",node,featureImpl);
155 isSupported = node.isSupported("LS",nullVersion);
156 featureImpl = node.getFeature("LS",nullVersion);
161 assertSame("LSUnspecified",node,featureImpl);
164 isSupported = node.isSupported("LS-Async",nullVersion);
165 featureImpl = node.getFeature("LS-Async",nullVersion);
170 assertSame("LSAsyncUnspecified",node,featureImpl);
173 isSupported = node.isSupported("XPath",nullVersion);
174 featureImpl = node.getFeature("XPath",nullVersion);
179 assertSame("XPathUnspecified",node,featureImpl);
182 isSupported = node.isSupported("+HTML",nullVersion);
183 featureImpl = node.getFeature("HTML",nullVersion);
191 isSupported = node.isSupported("+SVG",nullVersion);
192 featureImpl = node.getFeature("SVG",nullVersion);