| Index: trunk/Source/core/dom/Document.cpp
|
| ===================================================================
|
| --- trunk/Source/core/dom/Document.cpp (revision 159022)
|
| +++ trunk/Source/core/dom/Document.cpp (working copy)
|
| @@ -1102,10 +1102,10 @@
|
|
|
| String Document::encodingName() const
|
| {
|
| - // TextEncoding::name() returns a char*, no need to allocate a new
|
| + // TextEncoding::domName() returns a char*, no need to allocate a new
|
| // String for it each time.
|
| // FIXME: We should fix TextEncoding to speak AtomicString anyway.
|
| - return AtomicString(m_encoding.name());
|
| + return AtomicString(m_encoding.domName());
|
| }
|
|
|
| String Document::defaultCharset() const
|
|
|