| Index: Source/core/layout/LayoutTableCell.cpp
|
| diff --git a/Source/core/layout/LayoutTableCell.cpp b/Source/core/layout/LayoutTableCell.cpp
|
| index a269742c70dd9d20c031bb52a7eed15e1098335d..a4eb1d76baea5ed6ee7c84b40bcde15e670d0d11 100644
|
| --- a/Source/core/layout/LayoutTableCell.cpp
|
| +++ b/Source/core/layout/LayoutTableCell.cpp
|
| @@ -701,7 +701,7 @@ CollapsedBorderValue LayoutTableCell::computeCollapsedBeforeBorder(IncludeBorder
|
|
|
| // (4) The previous row's after border.
|
| if (prevCell) {
|
| - LayoutObject* prevRow = 0;
|
| + LayoutObject* prevRow = nullptr;
|
| if (prevCell->section() == section())
|
| prevRow = parent()->previousSibling();
|
| else
|
| @@ -1028,7 +1028,7 @@ void LayoutTableCell::scrollbarsChanged(bool horizontalScrollbarChanged, bool ve
|
|
|
| LayoutTableCell* LayoutTableCell::createAnonymous(Document* document)
|
| {
|
| - LayoutTableCell* layoutObject = new LayoutTableCell(0);
|
| + LayoutTableCell* layoutObject = new LayoutTableCell(nullptr);
|
| layoutObject->setDocumentForAnonymous(document);
|
| return layoutObject;
|
| }
|
|
|