Moving the implementation of isContentEditable to the
the WebPrivate category.
* bindings/objc/DOM.mm:
(-[DOMNode isContentEditable]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15684
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-28 Timothy Hatcher <timothy@apple.com>
+
+ Suggested by Darin.
+
+ Moving the implementation of isContentEditable to the
+ the WebPrivate category.
+
+ * bindings/objc/DOM.mm:
+ (-[DOMNode isContentEditable]):
+
2006-07-28 Justin Garcia <justin.garcia@apple.com>
Reviewed by levi
return DOM_cast<Node *>(_internal);
}
-- (BOOL)isContentEditable
-{
- return [self _node]->isContentEditable();
-}
-
- (const KJS::Bindings::RootObject *)_executionContext
{
if (Node *n = [self _node])
@end
+@implementation DOMNode (WebPrivate)
+
+- (BOOL)isContentEditable
+{
+ return [self _node]->isContentEditable();
+}
+
+@end
+
@implementation DOMNode (DOMEventTarget)
- (void)addEventListener:(NSString *)type :(id <DOMEventListener>)listener :(BOOL)useCapture