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

Unified Diff: Source/bindings/tests/results/V8TestEventTarget.cpp

Issue 14751005: Support for latest WebIDL for indexed property getters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: do not generate enumerator in case of WebKitCSSKeyframesRule Created 7 years, 8 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/bindings/tests/results/V8TestEventTarget.cpp
diff --git a/Source/bindings/tests/results/V8TestEventTarget.cpp b/Source/bindings/tests/results/V8TestEventTarget.cpp
index c2cfa9149b2117f55a8e069aff14a46841ef8f14..2861f8825aa6930f80ffa156d2105e8bdf3bcb95 100644
--- a/Source/bindings/tests/results/V8TestEventTarget.cpp
+++ b/Source/bindings/tests/results/V8TestEventTarget.cpp
@@ -199,7 +199,7 @@ v8::Handle<v8::Value> V8TestEventTarget::indexedPropertyGetter(uint32_t index, c
RefPtr<Node> element = collection->item(index);
if (!element)
return v8Undefined();
- return toV8(element.release(), info.Holder(), info.GetIsolate());
+ return toV8Fast(element.release(), info, collection);
}
v8::Handle<v8::Value> V8TestEventTarget::namedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{

Powered by Google App Engine
This is Rietveld 408576698