| Index: Source/core/rendering/style/BasicShapes.h
|
| diff --git a/Source/core/rendering/style/BasicShapes.h b/Source/core/rendering/style/BasicShapes.h
|
| index b8735a82095938079632de526a3e297e09bddebe..a59e2b9e20cb47e26d3edd9da5d77cb5099578eb 100644
|
| --- a/Source/core/rendering/style/BasicShapes.h
|
| +++ b/Source/core/rendering/style/BasicShapes.h
|
| @@ -81,12 +81,10 @@ public:
|
| void setHeight(Length height) { m_height = height; }
|
| void setCornerRadiusX(Length radiusX)
|
| {
|
| - ASSERT(!radiusX.isUndefined());
|
| m_cornerRadiusX = radiusX;
|
| }
|
| void setCornerRadiusY(Length radiusY)
|
| {
|
| - ASSERT(!radiusY.isUndefined());
|
| m_cornerRadiusY = radiusY;
|
| }
|
|
|
| @@ -199,12 +197,10 @@ public:
|
| void setLeft(Length left) { m_left = left; }
|
| void setCornerRadiusX(Length radiusX)
|
| {
|
| - ASSERT(!radiusX.isUndefined());
|
| m_cornerRadiusX = radiusX;
|
| }
|
| void setCornerRadiusY(Length radiusY)
|
| {
|
| - ASSERT(!radiusY.isUndefined());
|
| m_cornerRadiusY = radiusY;
|
| }
|
|
|
|
|