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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-positioning-with-orthogonal-flows.html

Issue 815833005: [css-grid] Handle min-content/max-content with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comments and assertions to make the code clearer. Created 4 years, 6 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/grid-item-sizing-with-orthogonal-flows.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/grid-item-positioning-with-orthogonal-flows.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-positioning-with-orthogonal-flows.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-positioning-with-orthogonal-flows.html
new file mode 100644
index 0000000000000000000000000000000000000000..b2fd5a763d22c30386c7650e14bb79194c3202bc
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-positioning-with-orthogonal-flows.html
@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<link href="resources/grid.css" rel="stylesheet">
+<link href="resources/grid-alignment.css" rel="stylesheet">
+<style>
+body {
+ margin: 0;
+}
+
+.container {
+ position: relative;
+}
+
+.grid {
+ font: 10px/1 Ahem;
+ width: 300px;
+ height: 160px;
+}
+</style>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../../resources/check-layout-th.js"></script>
+<body onload="checkLayout('.grid')">
+<div id="log"></div>
+<p>This test checks that grid items positioning works as expected with orthogonal flows.</p>
+
+<p>HORIZONTAL-TB container with VERTICAL-LR items.</p>
+<div class="container">
+ <div class="grid itemsStart contentStart fixedWidth" data-expected-width="300" data-expected-height="160">
+ <div class="firstRowFirstColumn verticalLR" data-offset-x="0" data-offset-y="0" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="firstRowSecondColumn verticalLR" data-offset-x="20" data-offset-y="0" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="secondRowFirstColumn verticalLR" data-offset-x="0" data-offset-y="80" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="secondRowSecondColumn verticalLR" data-offset-x="20" data-offset-y="80" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ </div>
+</div>
+
+<p>HORIZONTAL-TB container with VERTICAL-RL items.</p>
+<div class="container">
+ <div class="grid itemsStart contentStart" data-expected-width="300" data-expected-height="160">
+ <div class="firstRowFirstColumn verticalRL" data-offset-x="0" data-offset-y="0" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="firstRowSecondColumn verticalRL" data-offset-x="20" data-offset-y="0" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="secondRowFirstColumn verticalRL" data-offset-x="0" data-offset-y="80" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ <div class="secondRowSecondColumn verticalRL" data-offset-x="20" data-offset-y="80" data-expected-width="20" data-expected-height="80">X X X X X X</div>
+ </div>
+</div>
+
+<p>VERTICAL-LR container with HORIZONTAL-TB items.</p>
+<div class="container">
+ <div class="grid itemsStart contentStart fixedHeight verticalLR" data-expected-width="300" data-expected-height="160">
+ <div class="firstRowFirstColumn horizontalTB" data-offset-x="0" data-offset-y="0" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="firstRowSecondColumn horizontalTB" data-offset-x="0" data-offset-y="10" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="secondRowFirstColumn horizontalTB" data-offset-x="110" data-offset-y="0" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="secondRowSecondColumn horizontalTB" data-offset-x="110" data-offset-y="10" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ </div>
+</div>
+
+<p>VERTICAL-RL container with HORIZONTAL-TB items.</p>
+<div class="container">
+ <div class="grid itemsStart contentStart fixedHeight verticalRL" data-expected-width="300" data-expected-height="160">
+ <div class="firstRowFirstColumn horizontalTB" data-offset-x="190" data-offset-y="0" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="firstRowSecondColumn horizontalTB" data-offset-x="190" data-offset-y="10" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="secondRowFirstColumn horizontalTB" data-offset-x="80" data-offset-y="0" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ <div class="secondRowSecondColumn horizontalTB" data-offset-x="80" data-offset-y="10" data-expected-width="110" data-expected-height="10">X X X X X X</div>
+ </div>
+</div>
+</body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-item-sizing-with-orthogonal-flows.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698