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

Unified Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-07-expected.html

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed several bug and added new tests. Created 4 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/grid-self-baseline-07-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-07-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-07-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..6fd5664079a622550d79c8a2f8b37d673ed5eb7b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-07-expected.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<link href="resources/grid.css" rel="stylesheet">
+<link href="resources/grid-alignment.css" rel="stylesheet">
+<style>
+body { margin: 0; }
+.flex {
+ display: flex;
+ background: grey;
+ float: left;
+ margin: 5px;
+}
+.row { flex-flow: row; }
+.row-reverse { flex-flow: row-reverse; }
+.column { flex-flow: column; }
+span:nth-child(1) { font-size:12px; }
+span:nth-child(2) { font-size:16px; }
+span:nth-child(3) { font-size:24px; }
+span:nth-child(4) { font-size:32px; }
+span {
+ border: 2px solid;
+ padding: 3px;
+ margin: 5px;
+}
+.extraTopPadding { padding-top: 15px; }
+.extraBottomPadding { padding-bottom: 15px; }
+.extraLeftPadding { padding-left: 15px; }
+.extraRightPadding { padding-right: 15px; }
+.verticalLR { text-orientation: sideways; }
+.verticalRL { text-orientation: sideways; }
+</style>
+
+<p>4x1 with parallel and orthogonal items.<br>2 items participate in their own column-like Baseline Context.<br>2 items share 'first-row' (matches their inline axis) Baseline Context.<br>The 'justify-self' property can be used to align these 2 items along their block-axis so they are baseline-aligned to each other.<br>The Baseline Alignment may increase size contribution of some items.</p>
+<div class="flex row verticalLR itemsBaseline"><span class="horizontalTB">A</span><span>A</span><span class="horizontalTB">A</span><span>A</span></div>
+<div class="flex row verticalLR itemsBaseline"><span class="horizontalTB extraLeftPadding">A</span><span class="extraRightPadding">A</span><span class="horizontalTB">A</span><span>A</span></div>
+<div class="flex row itemsBaseline"><span>A</span><span class="verticalLR">A</span><span>A</span><span class="verticalLR">A</span></div>
+<div class="flex row itemsBaseline"><span class="extraBottomPadding">A</span><span class="verticalLR extraTopPadding">A</span><span>A</span><span class="verticalLR">A</span></div>
+<div class="flex row-reverse itemsBaseline"><span>A</span><span class="verticalRL">A</span><span>A</span><span class="verticalRL">A</span></div>
+<div class="flex row-reverse itemsBaseline"><span class="extraBottomPadding">A</span><span class="verticalRL extraTopPadding">A</span><span>A</span><span class="verticalRL">A</span></div>
+
+
+

Powered by Google App Engine
This is Rietveld 408576698