| Index: third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
|
| index 424c2ee76b7c62ea6f9c4221fa5f452d62ea20ad..0199445ee167c78468dc07bb4870e39af52865a2 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableColElement.cpp
|
| @@ -65,8 +65,8 @@ void HTMLTableColElement::parseAttribute(const QualifiedName& name,
|
| unsigned newSpan = 0;
|
| if (value.isEmpty() || !parseHTMLNonNegativeInteger(value, newSpan) ||
|
| newSpan < 1) {
|
| - // If the value of span is not a valid non-negative integer greater than zero,
|
| - // set it to 1.
|
| + // If the value of span is not a valid non-negative integer greater than
|
| + // zero, set it to 1.
|
| newSpan = 1;
|
| }
|
| m_span = newSpan;
|
|
|