summaryrefslogtreecommitdiffstats
path: root/webkit/port/page
diff options
context:
space:
mode:
authorager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-14 14:23:54 +0000
committerager@google.com <ager@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-14 14:23:54 +0000
commit2efd98c3394b2e8f244936d8e3e21fdf8af5c944 (patch)
treeb8e6f9c0dc34408f213c5e85c1e7b797f0dc3880 /webkit/port/page
parentf6c135caf66962d03f769d1255c62496f0c147c0 (diff)
downloadchromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.zip
chromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.tar.gz
chromium_src-2efd98c3394b2e8f244936d8e3e21fdf8af5c944.tar.bz2
Fix a number of layout tests.
- Add v8 binding for animation and transition types. - Update SVGPODTypeWrappers to follow the latest webkit changes. - Remove a rebaselining that is no longer needed. Review URL: http://codereview.chromium.org/7298 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/page')
-rw-r--r--webkit/port/page/DOMWindow.idl4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/port/page/DOMWindow.idl b/webkit/port/page/DOMWindow.idl
index 6626c31..e6e0c31 100644
--- a/webkit/port/page/DOMWindow.idl
+++ b/webkit/port/page/DOMWindow.idl
@@ -445,6 +445,10 @@ module window {
attribute [Custom=DOMWindowEventHandler] DOMString onsubmit;
attribute [Custom=DOMWindowEventHandler] DOMString onunload;
attribute [Custom=DOMWindowEventHandler] DOMString onbeforeunload;
+ attribute [Custom=DOMWindowEventHandler] DOMString onwebkitanimationstart;
+ attribute [Custom=DOMWindowEventHandler] DOMString onwebkitanimationiteration;
+ attribute [Custom=DOMWindowEventHandler] DOMString onwebkitanimationend;
+ attribute [Custom=DOMWindowEventHandler] DOMString onwebkittransitionend;
#endif // defined(V8_BINDING)
};
}