Lines Matching refs:node

87       var node;
100 node = doc.doctype;
102 featureImpl = node.getFeature("Core",nullVersion);
103 assertSame("coreUnspecifiedVersion",node,featureImpl);
104 featureImpl = node.getFeature("cOrE",nullVersion);
105 assertSame("cOrEUnspecifiedVersion",node,featureImpl);
106 featureImpl = node.getFeature("+cOrE",nullVersion);
107 assertSame("PlusCoreUnspecifiedVersion",node,featureImpl);
108 featureImpl = node.getFeature("org.w3c.domts.bogus.feature",nullVersion);
110 featureImpl = node.getFeature("cOrE","2.0");
111 assertSame("Core20",node,featureImpl);
112 featureImpl = node.getFeature("cOrE","3.0");
113 assertSame("Core30",node,featureImpl);
114 isSupported = node.isSupported("XML",nullVersion);
115 featureImpl = node.getFeature("XML",nullVersion);
120 assertSame("XMLUnspecified",node,featureImpl);
123 isSupported = node.isSupported("SVG",nullVersion);
124 featureImpl = node.getFeature("SVG",nullVersion);
129 assertSame("SVGUnspecified",node,featureImpl);
132 isSupported = node.isSupported("HTML",nullVersion);
133 featureImpl = node.getFeature("HTML",nullVersion);
138 assertSame("HTMLUnspecified",node,featureImpl);
141 isSupported = node.isSupported("Events",nullVersion);
142 featureImpl = node.getFeature("Events",nullVersion);
147 assertSame("EventsUnspecified",node,featureImpl);
150 isSupported = node.isSupported("LS",nullVersion);
151 featureImpl = node.getFeature("LS",nullVersion);
156 assertSame("LSUnspecified",node,featureImpl);
159 isSupported = node.isSupported("LS-Async",nullVersion);
160 featureImpl = node.getFeature("LS-Async",nullVersion);
165 assertSame("LSAsyncUnspecified",node,featureImpl);
168 isSupported = node.isSupported("XPath",nullVersion);
169 featureImpl = node.getFeature("XPath",nullVersion);
174 assertSame("XPathUnspecified",node,featureImpl);
177 isSupported = node.isSupported("+HTML",nullVersion);
178 featureImpl = node.getFeature("HTML",nullVersion);
186 isSupported = node.isSupported("+SVG",nullVersion);
187 featureImpl = node.getFeature("SVG",nullVersion);