OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CharacterDataOldValue
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.h
70
CharacterDataOldValue
= 1 << 6,
MutationObserverInterestGroup.h
59
return createIfNeeded(target, MutationObserver::CharacterData, MutationObserver::
CharacterDataOldValue
);
MutationObserverRegistration.h
58
MutationRecordDeliveryOptions deliveryOptions() const { return m_options & (MutationObserver::AttributeOldValue | MutationObserver::
CharacterDataOldValue
); }
MutationObserver.cpp
98
bool
characterDataOldValue
= false;
99
bool characterDataOldValuePresent = optionsDictionary.get("
characterDataOldValue
",
characterDataOldValue
);
100
if (
characterDataOldValue
)
101
options |=
CharacterDataOldValue
;
126
if (!((options & CharacterData) || !(options &
CharacterDataOldValue
))) {
127
exceptionState.throwDOMException(TypeError, "The options object may only set '
characterDataOldValue
' to true when 'characterData' is true or not present.");
Completed in 28 milliseconds