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

Unified Diff: LayoutTests/fast/css-grid-layout/grid-align.html

Issue 1309513008: [css-grid] Implement grid gutters (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed two tests which were not testing gutters code Created 5 years, 3 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: LayoutTests/fast/css-grid-layout/grid-align.html
diff --git a/LayoutTests/fast/css-grid-layout/grid-align.html b/LayoutTests/fast/css-grid-layout/grid-align.html
index 6412d9790775584477c2cb3d0886b30159dce57c..3a473a80631e3527ae1703fa0eb637a1dc80ddca 100644
--- a/LayoutTests/fast/css-grid-layout/grid-align.html
+++ b/LayoutTests/fast/css-grid-layout/grid-align.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 {
@@ -26,54 +27,6 @@ body {
background: black;
}
-.alignSelfAuto {
- align-self: auto;
-}
-
-.alignSelfStretch {
- align-self: stretch;
-}
-
-.alignSelfStart {
- align-self: start;
-}
-
-.alignSelfEnd {
- align-self: end;
-}
-
-.alignSelfCenter {
- align-self: center;
-}
-
-.alignSelfRight {
- align-self: right;
-}
-
-.alignSelfLeft {
- align-self: left;
-}
-
-.alignSelfFlexStart {
- align-self: flex-start;
-}
-
-.alignSelfFlexEnd {
- align-self: flex-end;
-}
-
-.alignSelfSelfStart {
- align-self: self-start;
-}
-
-.alignSelfSelfEnd {
- align-self: self-end;
-}
-
-.alignItemsCenter {
- align-items: center;
-}
-
</style>
</head>
<body onload="checkLayout('.grid')">

Powered by Google App Engine
This is Rietveld 408576698