| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reserv
ed. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) | 7 * Copyright (C) 2007 Samuel Weinig (sam@webkit.org) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "core/dom/Document.h" | 33 #include "core/dom/Document.h" |
| 34 #include "core/dom/ExceptionCode.h" | 34 #include "core/dom/ExceptionCode.h" |
| 35 #include "core/dom/Text.h" | 35 #include "core/dom/Text.h" |
| 36 #include "core/dom/shadow/ShadowRoot.h" | 36 #include "core/dom/shadow/ShadowRoot.h" |
| 37 #include "core/editing/Editor.h" | 37 #include "core/editing/Editor.h" |
| 38 #include "core/editing/FrameSelection.h" | 38 #include "core/editing/FrameSelection.h" |
| 39 #include "core/editing/TextIterator.h" | 39 #include "core/editing/TextIterator.h" |
| 40 #include "core/events/BeforeTextInsertedEvent.h" | 40 #include "core/events/BeforeTextInsertedEvent.h" |
| 41 #include "core/events/Event.h" | 41 #include "core/events/Event.h" |
| 42 #include "core/events/ThreadLocalEventNames.h" | 42 #include "core/events/ThreadLocalEventNames.h" |
| 43 #include "core/html/FormDataList.h" |
| 43 #include "core/html/forms/FormController.h" | 44 #include "core/html/forms/FormController.h" |
| 44 #include "core/html/shadow/ShadowElementNames.h" | 45 #include "core/html/shadow/ShadowElementNames.h" |
| 45 #include "core/html/shadow/TextControlInnerElements.h" | 46 #include "core/html/shadow/TextControlInnerElements.h" |
| 46 #include "core/frame/Frame.h" | 47 #include "core/frame/Frame.h" |
| 47 #include "core/platform/network/FormDataList.h" | |
| 48 #include "core/rendering/RenderTextControlMultiLine.h" | 48 #include "core/rendering/RenderTextControlMultiLine.h" |
| 49 #include "platform/text/PlatformLocale.h" | 49 #include "platform/text/PlatformLocale.h" |
| 50 #include "wtf/StdLibExtras.h" | 50 #include "wtf/StdLibExtras.h" |
| 51 #include "wtf/text/StringBuilder.h" | 51 #include "wtf/text/StringBuilder.h" |
| 52 | 52 |
| 53 namespace WebCore { | 53 namespace WebCore { |
| 54 | 54 |
| 55 using namespace HTMLNames; | 55 using namespace HTMLNames; |
| 56 | 56 |
| 57 static const int defaultRows = 2; | 57 static const int defaultRows = 2; |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 } | 542 } |
| 543 placeholder->setTextContent(placeholderText, ASSERT_NO_EXCEPTION); | 543 placeholder->setTextContent(placeholderText, ASSERT_NO_EXCEPTION); |
| 544 } | 544 } |
| 545 | 545 |
| 546 bool HTMLTextAreaElement::isInteractiveContent() const | 546 bool HTMLTextAreaElement::isInteractiveContent() const |
| 547 { | 547 { |
| 548 return true; | 548 return true; |
| 549 } | 549 } |
| 550 | 550 |
| 551 } | 551 } |
| OLD | NEW |