From 6a4bdfdacd60d421fa6207f3ded76b3c860be7bd Mon Sep 17 00:00:00 2001 From: "levin@chromium.org" Date: Thu, 18 Jun 2009 08:02:26 +0000 Subject: WebKit merge 44773:44798 The one change is to add HTMLDataGridElement support due to change http://trac.webkit.org/changeset/44778 TBR=paul@chromium.org BUG=None TEST=The data grid element is new but it is still under development. Review URL: http://codereview.chromium.org/126310 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18698 0039d316-1c4b-4281-b951-d872f2087c98 --- DEPS | 2 +- webkit/port/bindings/v8/v8_index.cpp | 1 + webkit/port/bindings/v8/v8_index.h | 1 + webkit/webkit.gyp | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 4065a04..eebb6a6 100644 --- a/DEPS +++ b/DEPS @@ -1,7 +1,7 @@ vars = { "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", - "webkit_revision": "44773", + "webkit_revision": "44798", } diff --git a/webkit/port/bindings/v8/v8_index.cpp b/webkit/port/bindings/v8/v8_index.cpp index 7e057ad..39eb0cf 100644 --- a/webkit/port/bindings/v8/v8_index.cpp +++ b/webkit/port/bindings/v8/v8_index.cpp @@ -89,6 +89,7 @@ #include "V8HTMLButtonElement.h" #include "V8HTMLCanvasElement.h" #include "V8HTMLModElement.h" +#include "V8HTMLDataGridElement.h" #include "V8HTMLDirectoryElement.h" #include "V8HTMLDivElement.h" #include "V8HTMLDListElement.h" diff --git a/webkit/port/bindings/v8/v8_index.h b/webkit/port/bindings/v8/v8_index.h index f80eb5e..52c4e89 100644 --- a/webkit/port/bindings/v8/v8_index.h +++ b/webkit/port/bindings/v8/v8_index.h @@ -66,6 +66,7 @@ typedef v8::Persistent (*FunctionTemplateFactory)(); V(HTMLBRELEMENT, HTMLBRElement) \ V(HTMLBUTTONELEMENT, HTMLButtonElement) \ V(HTMLCANVASELEMENT, HTMLCanvasElement) \ + V(HTMLDATAGRIDELEMENT, HTMLDataGridElement) \ V(HTMLDIRECTORYELEMENT, HTMLDirectoryElement) \ V(HTMLDIVELEMENT, HTMLDivElement) \ V(HTMLDLISTELEMENT, HTMLDListElement) \ diff --git a/webkit/webkit.gyp b/webkit/webkit.gyp index 2a83688..9747e3f 100644 --- a/webkit/webkit.gyp +++ b/webkit/webkit.gyp @@ -749,6 +749,7 @@ '../third_party/WebKit/WebCore/html/HTMLCanvasElement.idl', '../third_party/WebKit/WebCore/html/HTMLCollection.idl', '../third_party/WebKit/WebCore/html/HTMLDListElement.idl', + '../third_party/WebKit/WebCore/html/HTMLDataGridElement.idl', '../third_party/WebKit/WebCore/html/HTMLDirectoryElement.idl', '../third_party/WebKit/WebCore/html/HTMLDivElement.idl', '../third_party/WebKit/WebCore/html/HTMLDocument.idl', @@ -1685,6 +1686,7 @@ '../third_party/WebKit/WebCore/html/HTMLCollection.h', '../third_party/WebKit/WebCore/html/HTMLDListElement.cpp', '../third_party/WebKit/WebCore/html/HTMLDListElement.h', + '../third_party/WebKit/WebCore/html/HTMLDataGridElement.h', '../third_party/WebKit/WebCore/html/HTMLDirectoryElement.cpp', '../third_party/WebKit/WebCore/html/HTMLDirectoryElement.h', '../third_party/WebKit/WebCore/html/HTMLDivElement.cpp', -- cgit v1.1