HomeSort by relevance Sort by last modified time
    Searched refs:hasFeature (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domimplementationregistry03.js 73 where hasFeature("Core", "3.0") returns true.
85 var hasFeature;
90 hasFeature = domImpl.hasFeature("Core","3.0");
91 assertTrue("hasCore",hasFeature);
domimplementationregistry04.js 73 where hasFeature("+Core", null) returns true.
85 var hasFeature;
92 hasFeature = domImpl.hasFeature("+Core",nullVersion);
93 assertTrue("hasCore",hasFeature);
domimplementationregistry05.js 73 where hasFeature("+Core", "3.0") returns true.
85 var hasFeature;
90 hasFeature = domImpl.hasFeature("+Core","3.0");
91 assertTrue("hasCore",hasFeature);
domimplementationregistry14.js 74 where hasFeature("Core", "3.0") returns true.
86 var hasFeature;
100 hasFeature = domImpl.hasFeature("Core","3.0");
101 assertTrue("hasCore",hasFeature);
domimplementationregistry15.js 74 where hasFeature("+Core", null) returns true.
86 var hasFeature;
102 hasFeature = domImpl.hasFeature("+Core",nullVersion);
103 assertTrue("hasCore",hasFeature);
domimplementationregistry16.js 74 where hasFeature("+Core", "3.0") returns true.
86 var hasFeature;
100 hasFeature = domImpl.hasFeature("+Core","3.0");
101 assertTrue("hasCore",hasFeature);
domimplementationregistry13.js 74 where hasFeature("Core", null) returns true.
87 var hasFeature;
106 hasFeature = domImpl.hasFeature("Core",nullVersion);
107 assertTrue("hasCore",hasFeature);
  /external/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.h 47 bool hasFeature(const String& feature, const String& version) const;
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 43 public boolean hasFeature(String feature,
JTidyDocumentBuilderFactory.java 108 public boolean hasFeature(String feature, String version) {
109 return domImpl.hasFeature(feature, version);
BatikTestDocumentBuilderFactory.java 177 public boolean hasFeature(String feature, String version) {
178 return getDOMImplementation().hasFeature(feature, version);
DOM4JTestDocumentBuilderFactory.java 130 public boolean hasFeature(String feature, String version) {
131 return domImpl.hasFeature(feature, version);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetimplementation.java 35 * DOMImplementation whose "hasFeature("XML","1.0")
68 state = docImpl.hasFeature("XML", "1.0");
domimplementationfeaturenoversion.java 31 * hasFeature("XML", "") should return true for implementations that can read staff files.
64 state = domImpl.hasFeature("XML", "");
domimplementationfeaturexml.java 31 * hasFeature("xml", "1.0") should return true for implementations that can read staff documents.
63 state = domImpl.hasFeature("xml", "1.0");
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
domimplementationfeaturecore.java 48 * "hasFeature(feature,version)" method is the package name
54 * DOMImplementation object whose "hasFeature(feature,
88 state = domImpl.hasFeature("core", "2.0");
domimplementationfeaturexmlversion2.java 48 * "hasFeature(feature,version)" method is the package name
54 * DOMImplementation object whose "hasFeature(feature,
88 state = domImpl.hasFeature("xml", "2.0");
domimplementationhasfeature02.java 34 * The method "hasFeature(feature,version)" tests if the DOMImplementation implements
37 * Call the hasFeature method on this DOMImplementation with a unfimiliar values for
70 success = domImpl.hasFeature("Blah Blah", "");
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentgetimplementation.js 80 DOMImplementation.hasFeature("HTML","1.0") should be true.
81 Otherwise, DOMImplementation.hasFeature("XML", "1.0")
102 xmlstate = docImpl.hasFeature("XML","1.0");
103 htmlstate = docImpl.hasFeature("HTML","1.0");
  /external/webkit/LayoutTests/dom/html/level2/html/
hasFeature03.js 72 hasFeature("xhTmL", null) should return true if hasFeature("XML", null) returns true.
87 hasXML = domImpl.hasFeature("XML",version);
88 state = domImpl.hasFeature("xhTmL",version);
hasFeature04.js 72 hasFeature("xhTmL", "2.0") should return true if hasFeature("XML", "2.0") returns true.
86 hasXML = domImpl.hasFeature("XML",version);
87 state = domImpl.hasFeature("xhTmL",version);
hasFeature02.js 72 hasFeature("hTmL", "2.0") should return true.
85 state = domImpl.hasFeature("hTmL",version);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentgetimplementation.js 80 DOMImplementation.hasFeature("HTML","1.0") should be true.
81 Otherwise, DOMImplementation.hasFeature("XML", "1.0")
102 xmlstate = docImpl.hasFeature("XML","1.0");
103 htmlstate = docImpl.hasFeature("HTML","1.0");
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
hasFeature03.js 72 hasFeature("xhTmL", null) should return true if hasFeature("XML", null) returns true.
87 hasXML = domImpl.hasFeature("XML",version);
88 state = domImpl.hasFeature("xhTmL",version);
hasFeature04.js 72 hasFeature("xhTmL", "2.0") should return true if hasFeature("XML", "2.0") returns true.
86 hasXML = domImpl.hasFeature("XML",version);
87 state = domImpl.hasFeature("xhTmL",version);

Completed in 1698 milliseconds

12 3 4 5 6 7