Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLElement.h |
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.h b/third_party/WebKit/Source/core/html/HTMLElement.h |
| index 1b9af5d1f96e16521fd739dbe3cb71e2ba8ec814..cf53623c198c0d2dae207d12550da15fa9ff4aaa 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLElement.h |
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.h |
| @@ -56,7 +56,10 @@ public: |
| String contentEditable() const; |
| void setContentEditable(const String&, ExceptionState&); |
| - bool isContentEditable() const; |
| + // For HTMLElement.prototype.isContentEditable. This matches to neither |
| + // blink::isContentEditable() nor blink::isContentRichlyEditable(). Do not |
| + // use this function in Blink. |
| + bool isContentEditableForBinding() const; |
|
yosin_UTC9
2016/07/27 01:34:36
Thanks for adding a comment for this!
|
| virtual bool draggable() const; |
| void setDraggable(bool); |