| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html
|
| index a3fa4e55543070e114ef5685c58fe58221594c89..9026f55e61ae3ced33316005330841b8a9aff35a 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html
|
| @@ -11,17 +11,21 @@
|
|
|
| .calcWidth {
|
| width: -webkit-calc(80% + 20%);
|
| + width: calc(80% + 20%);
|
| height: 15px;
|
| }
|
|
|
| .calcHeight {
|
| width: 15px;
|
| height: -webkit-calc(80% + 20px);
|
| + height: calc(80% + 20px);
|
| }
|
|
|
| .calcHeightAndWidth {
|
| width: -webkit-calc(80% + 20px);
|
| + width: calc(80% + 20px);
|
| height: -webkit-calc(70% + 30%);
|
| + height: calc(70% + 30%);
|
| }
|
| </style>
|
| <script src="../../resources/check-layout.js"></script>
|
|
|