| Index: third_party/WebKit/Source/core/style/GridPosition.h
|
| diff --git a/third_party/WebKit/Source/core/style/GridPosition.h b/third_party/WebKit/Source/core/style/GridPosition.h
|
| index 8c7be9af700d3ed0148deb624a2a81299c576d23..3de9338e8a9787ed57c46912d55e77b878f95287 100644
|
| --- a/third_party/WebKit/Source/core/style/GridPosition.h
|
| +++ b/third_party/WebKit/Source/core/style/GridPosition.h
|
| @@ -67,9 +67,9 @@ class GridPosition {
|
| m_integerPosition = 0;
|
| }
|
|
|
| - // 'span' values cannot be negative, yet we reuse the <integer> position which can
|
| - // be. This means that we have to convert the span position to an integer, losing
|
| - // some precision here. It shouldn't be an issue in practice though.
|
| + // 'span' values cannot be negative, yet we reuse the <integer> position which
|
| + // can be. This means that we have to convert the span position to an integer,
|
| + // losing some precision here. It shouldn't be an issue in practice though.
|
| void setSpanPosition(int position, const AtomicString& namedGridLine) {
|
| m_type = SpanPosition;
|
| m_integerPosition = position;
|
|
|