From 2e8d1b025c993d70ec8145060f5448997b8238db Mon Sep 17 00:00:00 2001 From: "ukai@chromium.org" Date: Thu, 30 Apr 2009 00:50:44 +0000 Subject: ClientRectList must provide indexed access method that acts like item() method. On translate.google.com, it fails to show balloon, because of JavaScript exception in following code: p=a.getClientRects(); ... p[0].top // p[0] is undefined! Current v8 binding misses indexed access method in ClientRectList. CSSOM View Module draft says http://dev.w3.org/csswg/cssom-view/#clientrectlist In ECMAScript implimentations, objects that implement the ClientRectList interface must also have a [[GET]] method that, when invoked with a number, acts like the item() method would when invoked with that argument. BUG=10697 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14925 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/build/V8Bindings/V8Bindings.vcproj | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webkit/build') diff --git a/webkit/build/V8Bindings/V8Bindings.vcproj b/webkit/build/V8Bindings/V8Bindings.vcproj index 0321eba..f6b87d7 100644 --- a/webkit/build/V8Bindings/V8Bindings.vcproj +++ b/webkit/build/V8Bindings/V8Bindings.vcproj @@ -132,6 +132,10 @@ > + + -- cgit v1.1