Home | History | Annotate | Download | only in dom

Lines Matching refs:state

60         boolean state;
63 state = rootNode.isSupported("XXX", "1.0");
64 assertFalse("throw_False", state);
69 boolean state;
72 state = rootNode.isSupported("XML", "9.0");
73 assertFalse("throw_False", state);
78 boolean state;
81 state = rootNode.isSupported("xml", "1.0");
82 assertTrue("throw_True", state);
87 boolean state;
90 state = rootNode.isSupported("core", "2.0");
91 assertTrue("throw_True", state);
96 boolean state;
99 state = rootNode.isSupported("xml", "2.0");
100 assertTrue("throw_True", state);
105 boolean state;
108 state = rootNode.isSupported("XML", "");
109 assertTrue("throw_True", state);
114 boolean state;
117 state = rootNode.isSupported("XML", "1.0");
118 assertTrue("throw_True", state);
123 boolean state;
126 state = rootNode.isSupported("CORE", "2.0");
127 assertTrue("throw_True", state);
132 boolean state;
135 state = rootNode.isSupported("XML", "2.0");
136 assertTrue("throw_True", state);
160 boolean state;
163 state = rootNode.isSupported("Core", "2.0");
164 assertTrue("Core2", state);
167 state = rootNode.isSupported(featureElement, "1.0");
171 state = rootNode.isSupported(featureElement, "2.0");
177 boolean state;
180 state = rootNode.isSupported("Core", "");
181 assertTrue("Core", state);
186 boolean state;
191 state = rootNode.isSupported("Core", nullString);
192 assertTrue("Core", state);