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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/mozilla/grid-repeat-auto-fill-fit-003-expected.html

Issue 1920953002: Revert of [css-grid] Implement auto-repeat computation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/mozilla/grid-repeat-auto-fill-fit-003-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/mozilla/grid-repeat-auto-fill-fit-003-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/mozilla/grid-repeat-auto-fill-fit-003-expected.html
deleted file mode 100644
index a719ca2df4d56cd2864f1ea425c252ece5a55da9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/mozilla/grid-repeat-auto-fill-fit-003-expected.html
+++ /dev/null
@@ -1,191 +0,0 @@
-<!DOCTYPE HTML>
-<!--
- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/
--->
-<html><head>
- <meta charset="utf-8">
- <title>Reference: repeat(auto-fill/auto-fit)</title>
- <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1118820">
- <style type="text/css">
-html,body {
- color:black; background-color:white; font-size:16px; padding:0; margin:0;
-}
-
-.grid {
- display: grid;
- float: left;
- position: relative;
- border: 1px solid;
- grid-auto-columns: 10px;
- grid-auto-rows: 10px;
- grid-auto-flow: column;
- grid-gap: 2px;
- margin-right: 2px;
- padding-top: 3px;
-}
-/* Original Mozilla tests set a fixed width for their grids, that's due to a bug they have computing
- repetitions with indefinite sizes. */
-.r1 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d]; /*width:34px;*/ }
-.r12 { grid-template-rows: [a] repeat(2, [b] 20px [c]) [d]; /*width:34px;*/ }
-.r13 { grid-template-rows: [a] repeat(3, [b] 20px [c]) [d]; /*width:34px;*/ }
-.r14 { grid-template-rows: [a] repeat(4, [b] 20px [c]) [d]; /*width:34px;*/ }
-
-.r20,.r2 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d] 30px [e]; /*width:22px;*/ }
-.r22 { grid-template-rows: [a] repeat(2, [b] 20px [c]) [d] 30px [e]; /*width:22px;*/ }
-.r23 { grid-template-rows: [a] repeat(3, [b] 20px [c]) [d] 30px [e]; /*width:22px;*/ }
-
-.r30,.r3 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d] 30px [e] 30px [f]; /*width:10px;*/ }
-.r32 { grid-template-rows: [a] repeat(2, [b] 20px [c]) [d] 30px [e] 30px [f]; /*width:10px;*/ }
-.r33 { grid-template-rows: [a] repeat(3, [b] 20px [c]) [d] 30px [e] 30px [f]; /*width:10px;*/ }
-
-fit .r1 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d]; }
-fit .r2 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d] 30px [e]; }
-fit .r3 { grid-template-rows: [a] repeat(1, [b] 20px [c]) [d] 30px [e] 30px [f]; }
-
-.w100 { height: 100px; }
-.w50 { height: 50px; }
-.w80 { height: 80px; }
-.mw100 { min-height: 100px; }
-.mw50 { min-height: 50px; }
-.mw80 { min-height: 80px; }
-.xw100 { max-height: 100px; }
-.xw50 { max-height: 50px; }
-.xw80 { max-height: 80px; }
-.float { float: left; }
-
-x {
- width: 10px;
- background: grey;
-}
-a {
- position: absolute;
- left:0; top:0; bottom:0; width: 3px;
- background: black;
- grid-row: c / c -1;
-}
-b {
- position: absolute;
- right:0; top:0; bottom:0; width: 3px;
- background: brown;
- grid-row: auto / c -1;
-}
-
-x:first-child {
- background: lime;
-}
-x:last-child {
- background: blue;
-}
-
-</style>
-</head>
-<body>
-
-<fill>
-
-<div class="grid r1"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r1 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r14 w100"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r13 w80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r12 w50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r13 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r12 xw50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r13 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r13 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r14 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r14 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r14 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
-<br clear="all">
-<br clear="all">
-
-<div class="grid r2"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r2 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r23 w100"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r22 w80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r20 w50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r22 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r20 xw50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r22 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r2 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r23 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r23 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r23 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
-<br clear="all">
-<br clear="all">
-
-<div class="grid r3"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 w100"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r30 w80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r30 w50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r30 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r30 xw50"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r30 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
-<div class="grid r3 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
-</fill>
-
-<br clear="all">
-<br clear="all">
-
-<!-- <fit>
-
- <div class="grid r1"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r1 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 w100"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 w80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r12 w50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r12 xw50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r13 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
- <br clear="all">
- <br clear="all">
-
- <div class="grid r2"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r2 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r23 w100"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r22 w80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r20 w50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r22 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r20 xw50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r22 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r2 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r23 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r23 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r23 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
- <br clear="all">
- <br clear="all">
-
- <div class="grid r3"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 w100"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r30 w80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r30 w50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r30 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r30 xw50"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r30 w100 xw80"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 mw80 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 w100 mw50 float"><x></x><x></x><a></a><b></b><x></x></div>
- <div class="grid r3 mw100 w50 float"><x></x><x></x><a></a><b></b><x></x></div>
-
- <br clear="all">
- <br clear="all">
-
- </fit> -->
-
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698