HomeSort by relevance Sort by last modified time
    Searched refs:hasAttribute (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/webkit/WebCore/html/
HTMLDataGridCellElement.cpp 56 return hasAttribute(focusedAttr);
66 return hasAttribute(checkedAttr);
76 return hasAttribute(indeterminateAttr);
HTMLDataGridRowElement.cpp 53 return hasAttribute(selectedAttr);
63 return hasAttribute(focusedAttr);
73 return hasAttribute(expandedAttr);
HTMLDataGridElement.cpp 67 return hasAttribute(autofocusAttr);
77 return hasAttribute(disabledAttr);
87 return hasAttribute(multipleAttr);
HTMLDataGridColElement.cpp 107 if (!hasAttribute(sortableAttr))
140 return hasAttribute(primaryAttr);
  /external/webkit/WebCore/wml/
WMLImageLoader.cpp 69 if (!imageElement->hasAttribute(localsrcAttr) && !imageElement->hasAttribute(HTMLNames::srcAttr))
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementhasattribute03.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
36 * Create an element Node and an attribute Node. Invoke hasAttribute method
38 * Invoke the hasAttribute method on the element and verify if it returns true.
74 state = element.hasAttribute("domestic");
77 state = element.hasAttribute("domestic");
elementhasattribute01.java 47 * The method hasAttribute returns true when an attribute with a given name is specified
49 * Invoke the hasAttribute method to check if the documentElement has attributres.
88 state = element.hasAttribute("");
elementhasattribute04.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
37 * Invoke the hasAttribute method on the element and verify if the method returns true.
74 state = element.hasAttribute("domestic");
hasAttribute01.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
71 state = testNode.hasAttribute("domestic");
hasAttribute03.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
71 state = testNode.hasAttribute("nomatch");
elementhasattribute02.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
36 * Invoke the hasAttribute method to on an element with default attributes and verify if it
79 state = element.hasAttribute("defaultAttr");
hasAttribute02.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
78 state = testNode.hasAttribute("street");
hasAttribute04.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
78 state = testNode.hasAttribute("dmstc:domestic");
  /external/webkit/WebCore/svg/
SVGFilterPrimitiveStandardAttributes.cpp 101 if (this->hasAttribute(SVGNames::xAttr))
103 if (this->hasAttribute(SVGNames::yAttr))
105 if (this->hasAttribute(SVGNames::widthAttr))
107 if (this->hasAttribute(SVGNames::heightAttr))
SVGRadialGradientElement.cpp 187 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr))
190 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr))
193 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr))
205 if (!attributes.hasCx() && current->hasAttribute(SVGNames::cxAttr))
208 if (!attributes.hasCy() && current->hasAttribute(SVGNames::cyAttr))
211 if (!attributes.hasR() && current->hasAttribute(SVGNames::rAttr))
214 if (!attributes.hasFx() && current->hasAttribute(SVGNames::fxAttr))
217 if (!attributes.hasFy() && current->hasAttribute(SVGNames::fyAttr))
SVGLinearGradientElement.cpp 155 if (!attributes.hasSpreadMethod() && current->hasAttribute(SVGNames::spreadMethodAttr))
158 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::gradientUnitsAttr))
161 if (!attributes.hasGradientTransform() && current->hasAttribute(SVGNames::gradientTransformAttr))
173 if (!attributes.hasX1() && current->hasAttribute(SVGNames::x1Attr))
176 if (!attributes.hasY1() && current->hasAttribute(SVGNames::y1Attr))
179 if (!attributes.hasX2() && current->hasAttribute(SVGNames::x2Attr))
182 if (!attributes.hasY2() && current->hasAttribute(SVGNames::y2Attr))
SVGPatternElement.cpp 312 if (!attributes.hasX() && current->hasAttribute(SVGNames::xAttr))
315 if (!attributes.hasY() && current->hasAttribute(SVGNames::yAttr))
318 if (!attributes.hasWidth() && current->hasAttribute(SVGNames::widthAttr))
321 if (!attributes.hasHeight() && current->hasAttribute(SVGNames::heightAttr))
324 if (!attributes.hasBoundingBoxMode() && current->hasAttribute(SVGNames::patternUnitsAttr))
327 if (!attributes.hasBoundingBoxModeContent() && current->hasAttribute(SVGNames::patternContentUnitsAttr))
330 if (!attributes.hasPatternTransform() && current->hasAttribute(SVGNames::patternTransformAttr))
SVGRectElement.cpp 136 bool hasRx = hasAttribute(SVGNames::rxAttr);
137 bool hasRy = hasAttribute(SVGNames::ryAttr);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 15 * The "hasAttribute()" method for an Element should return true if the element
17 * and the "hasAttribute()" method should return false since the element does
26 public final class HasAttribute extends DOMTestCase {
57 notes = "Verifies that hasAttribute method returns false.",
58 method = "hasAttribute",
69 state = testNode.hasAttribute("domestic");
82 // state = testNode.hasAttribute("street");
87 notes = "Verifies that hasAttribute method returns false.",
88 method = "hasAttribute",
99 state = testNode.hasAttribute("nomatch")
    [all...]
ElementHasAttribute.java 15 * The method hasAttribute returns true when an attribute with a given name is
17 * hasAttribute method to check if the documentElement has attributres.
56 notes = "Verifies hasAttribute method with empty string as a parameter.",
57 method = "hasAttribute",
66 state = element.hasAttribute("");
80 // state = element.hasAttribute("defaultAttr");
86 method = "hasAttribute",
98 state = element.hasAttribute("domestic");
101 state = element.hasAttribute("domestic");
107 method = "hasAttribute",
    [all...]
  /external/webkit/WebKit/chromium/src/
WebElement.cpp 68 bool WebElement::hasAttribute(const WebString& attrName) const
70 return constUnwrap<Element>()->hasAttribute(attrName);
  /external/webkit/WebKit/chromium/public/
WebElement.h 53 WEBKIT_API bool hasAttribute(const WebString&) const;
  /development/testrunner/
android_manifest.py 50 if not manifest or not manifest.hasAttribute('package'):
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 338 public boolean hasAttribute(String name);
  /external/webkit/WebCore/css/
CSSSelectorList.cpp 127 if (selector->hasAttribute() && selector->attribute().prefix() != nullAtom && selector->attribute().prefix() != starAtom)

Completed in 863 milliseconds

1 2 3