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

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: Created 5 years, 1 month 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
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%);
svillar 2015/12/04 13:18:31 I don't see any refactoring here.
}
</style>
<script src="../../resources/check-layout.js"></script>

Powered by Google App Engine
This is Rietveld 408576698