Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/calc-resolution-grid-item.html

Issue 1488493003: [css-grid] refactoring of layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch rebased and refactoring of alignment css rules. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-and-intrinsic-sizes.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-and-intrinsic-sizes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698