summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS4
-rw-r--r--WEBKIT_MERGE_REVISION2
-rw-r--r--webkit/port/bindings/v8/v8_custom.cpp22
3 files changed, 3 insertions, 25 deletions
diff --git a/DEPS b/DEPS
index 7c35c5c..de89666 100644
--- a/DEPS
+++ b/DEPS
@@ -1,7 +1,7 @@
vars = {
"webkit_trunk":
"http://svn.webkit.org/repository/webkit/trunk",
- "webkit_revision": "43321",
+ "webkit_revision": "43346",
}
@@ -19,7 +19,7 @@ deps = {
"http://googletest.googlecode.com/svn/trunk@243",
"src/third_party/WebKit":
- "/trunk/deps/third_party/WebKit@15521",
+ "/trunk/deps/third_party/WebKit@15555",
"src/third_party/icu38":
"/trunk/deps/third_party/icu38@13472",
diff --git a/WEBKIT_MERGE_REVISION b/WEBKIT_MERGE_REVISION
index 4c18c91..637cc8a 100644
--- a/WEBKIT_MERGE_REVISION
+++ b/WEBKIT_MERGE_REVISION
@@ -1 +1 @@
-http://svn.webkit.org/repository/webkit/trunk@43321 \ No newline at end of file
+http://svn.webkit.org/repository/webkit/trunk@43346 \ No newline at end of file
diff --git a/webkit/port/bindings/v8/v8_custom.cpp b/webkit/port/bindings/v8/v8_custom.cpp
index f3a1c4a..bf8cefc 100644
--- a/webkit/port/bindings/v8/v8_custom.cpp
+++ b/webkit/port/bindings/v8/v8_custom.cpp
@@ -74,7 +74,6 @@
#include "HTMLCanvasElement.h"
#include "HTMLDocument.h"
#include "HTMLEmbedElement.h"
-#include "HTMLFormElement.h"
#include "HTMLFrameElement.h"
#include "HTMLFrameElementBase.h"
#include "HTMLFrameSetElement.h"
@@ -157,17 +156,6 @@ ACCESSOR_GETTER(DocumentImplementation) {
}
-INDEXED_PROPERTY_GETTER(HTMLFormElement) {
- INC_STATS("DOM.HTMLFormElement.IndexedPropertyGetter");
- HTMLFormElement* form =
- V8Proxy::DOMWrapperToNode<HTMLFormElement>(info.Holder());
-
- RefPtr<Node> result = form->elements()->item(index);
- if (!result) return v8::Handle<v8::Value>();
- return V8Proxy::NodeToV8Object(result.get());
-}
-
-
INDEXED_PROPERTY_GETTER(HTMLOptionsCollection) {
INC_STATS("DOM.HTMLOptionsCollection.IndexedPropertyGetter");
HTMLOptionsCollection* collection =
@@ -996,16 +984,6 @@ CALLBACK_FUNC_DECL(DOMWindowNOP)
}
-CALLBACK_FUNC_DECL(HTMLFormElementSubmit) {
- INC_STATS("DOM.HTMLFormElement.submit()");
-
- HTMLFormElement* form =
- V8Proxy::DOMWrapperToNative<HTMLFormElement>(args.Holder());
-
- form->submit(0, false, false);
- return v8::Undefined();
-}
-
static String EventNameFromAttributeName(const String& name) {
ASSERT(name.startsWith("on"));
String event_type = name.substring(2);