| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 492a86ce6574388ae8fc61d86660cbeb4f2fe5f8..ad733eb0c4ddb3bace00238d67d869cb8e823127 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2105,16 +2105,16 @@
|
| s = getIdAttribute();
|
| if (s.length() > 0) {
|
| if (result.length() > 0)
|
| - result.append("; ");
|
| - result.append("id=");
|
| + result.appendLiteral("; ");
|
| + result.appendLiteral("id=");
|
| result.append(s);
|
| }
|
|
|
| s = getAttribute(classAttr);
|
| if (s.length() > 0) {
|
| if (result.length() > 0)
|
| - result.append("; ");
|
| - result.append("class=");
|
| + result.appendLiteral("; ");
|
| + result.appendLiteral("class=");
|
| result.append(s);
|
| }
|
|
|
|
|