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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.h 69 AttributeOldValue = 1 << 5,
MutationObserverInterestGroup.h 67 return createIfNeeded(target, MutationObserver::Attributes, MutationObserver::AttributeOldValue, &attributeName);
MutationObserverRegistration.h 58 MutationRecordDeliveryOptions deliveryOptions() const { return m_options & (MutationObserver::AttributeOldValue | MutationObserver::CharacterDataOldValue); }
MutationObserver.cpp 83 bool attributeOldValue = false;
84 bool attributeOldValuePresent = optionsDictionary.get("attributeOldValue", attributeOldValue);
85 if (attributeOldValue)
86 options |= AttributeOldValue;
117 if (options & AttributeOldValue) {
118 exceptionState.throwDOMException(TypeError, "The options object may only set 'attributeOldValue' to true when 'attributes' is true or not present.");

Completed in 429 milliseconds