| Index: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| index 8254a174992b257075ca6c8496c67d03e5300c9d..5b93b34e05e16eebdd6c55b5f7cd59b40a3e8087 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
|
| @@ -503,7 +503,7 @@ void HTMLSelectElement::setLength(unsigned newLen, ExceptionState& exceptionStat
|
|
|
| if (diff < 0) { // Add dummy elements.
|
| do {
|
| - appendChild(document().createElement(optionTag, false), exceptionState);
|
| + appendChild(document().createElement(optionTag, CreatedByCreateElement), exceptionState);
|
| if (exceptionState.hadException())
|
| break;
|
| } while (++diff);
|
|
|