| Index: third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.cpp
|
| index 164ef81446da5cacffb963ed917fefe54d503ec7..f0bca72bab76295bb8186127cdf9d693af977ab5 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/LongOrTestDictionary.cpp
|
| @@ -74,7 +74,7 @@ void V8LongOrTestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v
|
| if (conversionMode == UnionTypeConversionMode::Nullable && isUndefinedOrNull(v8Value))
|
| return;
|
|
|
| - if (isUndefinedOrNull(v8Value) || v8Value->IsObject()) {
|
| + if (isUndefinedOrNull(v8Value) || (v8Value->IsObject() && !v8Value->IsArray())) {
|
| TestDictionary cppValue;
|
| V8TestDictionary::toImpl(isolate, v8Value, cppValue, exceptionState);
|
| if (exceptionState.hadException())
|
|
|