git://git.webkit.org
/
WebKit-https.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
focus() / blur() should be on HTMLElement / SVGElement, not Element
[WebKit-https.git]
/
Source
/
WebCore
/
html
/
HTMLElement.idl
diff --git
a/Source/WebCore/html/HTMLElement.idl
b/Source/WebCore/html/HTMLElement.idl
index
62d0caa
..
fa374c7
100644
(file)
--- a/
Source/WebCore/html/HTMLElement.idl
+++ b/
Source/WebCore/html/HTMLElement.idl
@@
-69,5
+69,10
@@
#endif
void click();
+
+#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT
+ void focus();
+ void blur();
+#endif
};