HomeSort by relevance Sort by last modified time
    Searched refs:testElement (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
RadioNodeList.cpp 93 bool RadioNodeList::matchesByIdOrName(const Element& testElement) const
95 return testElement.getIdAttribute() == m_name || testElement.getNameAttribute() == m_name;
98 bool RadioNodeList::checkElementMatchesRadioNodeListFilter(const Element& testElement) const
101 ASSERT(isHTMLObjectElement(testElement) || testElement.isFormControlElement());
103 HTMLFormElement* formElement = toHTMLElement(testElement).formOwner();
108 return matchesByIdOrName(testElement);
HTMLTagCollection.h 52 inline bool HTMLTagCollection::elementMatches(const Element& testElement) const
56 const AtomicString& localName = testElement.isHTMLElement() ? m_loweredLocalName : m_localName;
57 if (localName != testElement.localName())
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClassCollection.h 62 inline bool ClassCollection::elementMatches(const Element& testElement) const
64 if (!testElement.hasClass())
68 return testElement.classNames().containsAll(m_classNames);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
live_regions.js 198 var testElement = document.createElement('div');
199 testElement.setAttribute('cvoxIgnore', '1');
200 testElement.setAttribute('class', target.getAttribute('class'));
201 testElement.setAttribute('style', target.getAttribute('style'));
202 testElement.setAttribute('hidden', target.getAttribute('hidden'));
203 testElement.setAttribute(attr, /** @type {string} */ (mutation.oldValue));
207 target.parentElement.appendChild(testElement);
208 oldInvisible = !cvox.DomUtil.isVisible(testElement);
209 target.parentElement.removeChild(testElement);
211 oldInvisible = !cvox.DomUtil.isVisible(testElement);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 170 public void testElement() {
  /libcore/jsr166-tests/src/test/java/jsr166/
SynchronousQueueTest.java 281 public void testElement() { testElement(false); }
282 public void testElement_fair() { testElement(true); }
283 public void testElement(boolean fair) {
ConcurrentLinkedQueueTest.java 251 public void testElement() {
PriorityQueueTest.java 287 public void testElement() {
LinkedListTest.java 202 public void testElement() {
PriorityBlockingQueueTest.java 415 public void testElement() {
ArrayBlockingQueueTest.java 471 public void testElement() {
ArrayDequeTest.java 450 public void testElement() {
ConcurrentLinkedDequeTest.java 400 public void testElement() {
DelayQueueTest.java 455 public void testElement() {
LinkedBlockingQueueTest.java 460 public void testElement() {
LinkedTransferQueueTest.java 333 public void testElement() throws InterruptedException {
    [all...]
LinkedBlockingDequeTest.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
GravityHelperTest.java 113 public void testElement() throws Exception {
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
jquery-1.6.4.js     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 214 def testElement(self):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 214 def testElement(self):
    [all...]

Completed in 3002 milliseconds