| 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/dom/Text.h" | 37 #include "core/dom/Text.h" |
| 38 #include "core/dom/shadow/ShadowRoot.h" | 38 #include "core/dom/shadow/ShadowRoot.h" |
| 39 #include "core/editing/FrameSelection.h" | 39 #include "core/editing/FrameSelection.h" |
| 40 #include "core/editing/TextIterator.h" | 40 #include "core/editing/TextIterator.h" |
| 41 #include "core/html/FormController.h" | 41 #include "core/html/FormController.h" |
| 42 #include "core/html/FormDataList.h" | 42 #include "core/html/FormDataList.h" |
| 43 #include "core/html/shadow/TextControlInnerElements.h" | 43 #include "core/html/shadow/TextControlInnerElements.h" |
| 44 #include "core/page/Frame.h" | 44 #include "core/page/Frame.h" |
| 45 #include "core/platform/LocalizedStrings.h" | 45 #include "core/platform/LocalizedStrings.h" |
| 46 #include "core/rendering/RenderTextControlMultiLine.h" | 46 #include "core/rendering/RenderTextControlMultiLine.h" |
| 47 #include <wtf/StdLibExtras.h> | 47 #include "wtf/StdLibExtras.h" |
| 48 #include <wtf/text/StringBuilder.h> | 48 #include "wtf/text/StringBuilder.h" |
| 49 | 49 |
| 50 namespace WebCore { | 50 namespace WebCore { |
| 51 | 51 |
| 52 using namespace HTMLNames; | 52 using namespace HTMLNames; |
| 53 | 53 |
| 54 static const int defaultRows = 2; | 54 static const int defaultRows = 2; |
| 55 static const int defaultCols = 20; | 55 static const int defaultCols = 20; |
| 56 | 56 |
| 57 // On submission, LF characters are converted into CRLF. | 57 // On submission, LF characters are converted into CRLF. |
| 58 // This function returns number of characters considering this. | 58 // This function returns number of characters considering this. |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 RefPtr<HTMLDivElement> placeholder = HTMLDivElement::create(document()); | 549 RefPtr<HTMLDivElement> placeholder = HTMLDivElement::create(document()); |
| 550 m_placeholder = placeholder.get(); | 550 m_placeholder = placeholder.get(); |
| 551 m_placeholder->setPseudo(AtomicString("-webkit-input-placeholder", Atomi
cString::ConstructFromLiteral)); | 551 m_placeholder->setPseudo(AtomicString("-webkit-input-placeholder", Atomi
cString::ConstructFromLiteral)); |
| 552 userAgentShadowRoot()->insertBefore(m_placeholder, innerTextElement()->n
extSibling(), ASSERT_NO_EXCEPTION); | 552 userAgentShadowRoot()->insertBefore(m_placeholder, innerTextElement()->n
extSibling(), ASSERT_NO_EXCEPTION); |
| 553 } | 553 } |
| 554 m_placeholder->setInnerText(placeholderText, ASSERT_NO_EXCEPTION); | 554 m_placeholder->setInnerText(placeholderText, ASSERT_NO_EXCEPTION); |
| 555 fixPlaceholderRenderer(m_placeholder, innerTextElement()); | 555 fixPlaceholderRenderer(m_placeholder, innerTextElement()); |
| 556 } | 556 } |
| 557 | 557 |
| 558 } | 558 } |
| OLD | NEW |