Index: Source/bindings/v8/Dictionary.cpp |
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp |
index b742140269634cda5059470d069ac5cb05131d76..98763413403686947bd671eafb4c8d3be0a7b2fc 100644 |
--- a/Source/bindings/v8/Dictionary.cpp |
+++ b/Source/bindings/v8/Dictionary.cpp |
@@ -27,6 +27,7 @@ |
#include "bindings/v8/Dictionary.h" |
#include "bindings/core/v8/V8DOMError.h" |
+#include "bindings/core/v8/V8Element.h" |
#include "bindings/core/v8/V8EventTarget.h" |
#include "bindings/core/v8/V8MediaKeyError.h" |
#include "bindings/core/v8/V8MessagePort.h" |
@@ -419,6 +420,16 @@ bool Dictionary::getWithUndefinedOrNullCheck(const String& key, String& value) c |
return true; |
} |
+bool Dictionary::getWithUndefinedOrNullCheck(const String& key, RefPtrWillBeMember<Element>& value) const |
+{ |
+ v8::Local<v8::Value> v8Value; |
+ if (!getKey(key, v8Value) || WebCore::isUndefinedOrNull(v8Value)) |
+ return false; |
+ |
+ value = V8Element::toNativeWithTypeCheck(m_isolate, v8Value); |
+ return true; |
+} |
+ |
bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const |
{ |
v8::Local<v8::Value> v8Value; |