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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased patch for landing Created 5 years, 2 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
Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html
index 88c0ef60553b8f3a57e4d82e64f0e268276be520..f1944a5c4f0a82b288d2e84f7bd7713762688dae 100644
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-distribution-vertical-rl.html
@@ -2,6 +2,7 @@
<html>
<head>
<link href="resources/grid.css" rel="stylesheet">
+<link href="resources/grid-alignment.css" rel="stylesheet">
<script src="../../resources/check-layout.js"></script>
<style>
body {
@@ -20,45 +21,6 @@ body {
grid-auto-columns: auto;
}
-.justifyContentSpaceBetween {
- justify-content: space-between;
-}
-
-.justifyContentSpaceAround {
- justify-content: space-around;
-}
-
-.justifyContentSpaceEvenly {
- justify-content: space-evenly;
-}
-
-.justifyContentStretch {
- justify-content: stretch;
-}
-
-.firstRowThirdColumn {
- background-color: magenta;
- grid-column: 3;
- grid-row: 1;
-}
-
-.secondRowThirdColumn {
- background-color: navy;
- grid-column: 3;
- grid-row: 2;
-}
-
-.firstRowFourthColumn {
- background-color: green;
- grid-column: 4;
- grid-row: 1;
-}
-
-.secondRowFourthColumn {
- background-color: pink;
- grid-column: 4;
- grid-row: 2;
-}
</style>
</head>
<body onload="checkLayout('.grid')">

Powered by Google App Engine
This is Rietveld 408576698