Lines Matching refs:node

87       var node;
100 node = doc.createEntityReference("ent1");
101 featureImpl = node.getFeature("Core",nullVersion);
102 assertSame("coreUnspecifiedVersion",node,featureImpl);
103 featureImpl = node.getFeature("cOrE",nullVersion);
104 assertSame("cOrEUnspecifiedVersion",node,featureImpl);
105 featureImpl = node.getFeature("+cOrE",nullVersion);
106 assertSame("PlusCoreUnspecifiedVersion",node,featureImpl);
107 featureImpl = node.getFeature("org.w3c.domts.bogus.feature",nullVersion);
109 featureImpl = node.getFeature("cOrE","2.0");
110 assertSame("Core20",node,featureImpl);
111 featureImpl = node.getFeature("cOrE","3.0");
112 assertSame("Core30",node,featureImpl);
113 isSupported = node.isSupported("XML",nullVersion);
114 featureImpl = node.getFeature("XML",nullVersion);
119 assertSame("XMLUnspecified",node,featureImpl);
122 isSupported = node.isSupported("SVG",nullVersion);
123 featureImpl = node.getFeature("SVG",nullVersion);
128 assertSame("SVGUnspecified",node,featureImpl);
131 isSupported = node.isSupported("HTML",nullVersion);
132 featureImpl = node.getFeature("HTML",nullVersion);
137 assertSame("HTMLUnspecified",node,featureImpl);
140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
146 assertSame("EventsUnspecified",node,featureImpl);
149 isSupported = node.isSupported("LS",nullVersion);
150 featureImpl = node.getFeature("LS",nullVersion);
155 assertSame("LSUnspecified",node,featureImpl);
158 isSupported = node.isSupported("LS-Async",nullVersion);
159 featureImpl = node.getFeature("LS-Async",nullVersion);
164 assertSame("LSAsyncUnspecified",node,featureImpl);
167 isSupported = node.isSupported("XPath",nullVersion);
168 featureImpl = node.getFeature("XPath",nullVersion);
173 assertSame("XPathUnspecified",node,featureImpl);
176 isSupported = node.isSupported("+HTML",nullVersion);
177 featureImpl = node.getFeature("HTML",nullVersion);
185 isSupported = node.isSupported("+SVG",nullVersion);
186 featureImpl = node.getFeature("SVG",nullVersion);