Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Unified Diff: Source/core/dom/DOMSettableTokenList.cpp

Issue 1040943002: When call getAttribute, HTMLIFrame.sandbox has a bug which don't return changed value. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modify a test-case for Layout Test. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/DOMSettableTokenList.cpp
diff --git a/Source/core/dom/DOMSettableTokenList.cpp b/Source/core/dom/DOMSettableTokenList.cpp
index 6022a44bd95c6c828f924cdc8e16906cd4ead87c..3f29bed6ab1548c3e3230eac74991a9a28892531 100644
--- a/Source/core/dom/DOMSettableTokenList.cpp
+++ b/Source/core/dom/DOMSettableTokenList.cpp
@@ -97,7 +97,7 @@ void DOMSettableTokenList::setValue(const AtomicString& value)
m_value = value;
m_tokens.set(value, SpaceSplitString::ShouldNotFoldCase);
if (m_observer)
- m_observer->valueChanged();
+ m_observer->valueChanged(this);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698