Title: [134329] trunk/Source/WebCore
Revision
134329
Author
[email protected]
Date
2012-11-12 17:04:45 -0800 (Mon, 12 Nov 2012)

Log Message

[V8] V8Event::valueAccessorGetter() in custom binding is not used
https://bugs.webkit.org/show_bug.cgi?id=101893

Reviewed by Adam Barth.

No tests. No change in behavior.

* bindings/v8/custom/V8EventCustom.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134328 => 134329)


--- trunk/Source/WebCore/ChangeLog	2012-11-13 01:03:56 UTC (rev 134328)
+++ trunk/Source/WebCore/ChangeLog	2012-11-13 01:04:45 UTC (rev 134329)
@@ -1,3 +1,14 @@
+2012-11-12  Kentaro Hara  <[email protected]>
+
+        [V8] V8Event::valueAccessorGetter() in custom binding is not used
+        https://bugs.webkit.org/show_bug.cgi?id=101893
+
+        Reviewed by Adam Barth.
+
+        No tests. No change in behavior.
+
+        * bindings/v8/custom/V8EventCustom.cpp:
+
 2012-11-12  Roger Fong  <[email protected]>
 
         Web Inspector: Fix docking behaviour on Windows.

Modified: trunk/Source/WebCore/bindings/v8/custom/V8EventCustom.cpp (134328 => 134329)


--- trunk/Source/WebCore/bindings/v8/custom/V8EventCustom.cpp	2012-11-13 01:03:56 UTC (rev 134328)
+++ trunk/Source/WebCore/bindings/v8/custom/V8EventCustom.cpp	2012-11-13 01:04:45 UTC (rev 134329)
@@ -42,12 +42,6 @@
 
 namespace WebCore {
 
-void V8Event::valueAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
-{
-    Event* event = V8Event::toNative(info.Holder());
-    event->setDefaultPrevented(!value->BooleanValue());
-}
-
 v8::Handle<v8::Value> V8Event::dataTransferAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
 {
     Event* event = V8Event::toNative(info.Holder());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to