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

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

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get advantage of recomputing the intrinsic size to solve the issues with orthogonal flows. Created 3 years, 10 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-self-baseline-06-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-06-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-06-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..51778af2e25b67dd04d62b1be5dac049a3acc128
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-06-expected.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<link href="resources/grid.css" rel="stylesheet">
+<link href="resources/grid-alignment.css" rel="stylesheet">
+<style>
+body { margin: 0; }
+.block {
+ background: grey;
+ float: left;
+ margin: 5px;
+ text-orientation: sideways;
+}
+.block > :nth-child(1) { font-size:24px; }
+.block > :nth-child(2) { font-size:32px; }
+.block > :nth-child(3) { font-size:48px; }
+.block > :nth-child(4) { font-size:64px; }
+.item {
+ border-width: 2px 5px 3px 4px;
+ border-style: solid;
+ padding: 6px 3px 7px 8px;
+ margin: 10px 6px 4px 12px;
+}
+.extraTopPadding { padding-top: 30px; }
+.extraBottomPadding { padding-bottom: 30px; }
+.extraRightPadding { padding-right: 30px; }
+.area { display: inline-block; }
+.block.verticalLR > .area { float: left; }
+.area:nth-child(1) { width: 65px; }
+.area:nth-child(2) { width: 75px; }
+.area:nth-child(3) { width: 100px; }
+.area:nth-child(4) { width: 125px; }
+.verticalLR > .area, .verticalRL > .area { width: auto; }
+.verticalLR > .area:nth-child(1), .verticalRL > .area:nth-child(1) { height: 65px; }
+.verticalLR > .area:nth-child(2), .verticalRL > .area:nth-child(2) { height: 75px; }
+.verticalLR > .area:nth-child(3), .verticalRL > .area:nth-child(3) { height: 100px; }
+.verticalLR > .area:nth-child(4), .verticalRL > .area:nth-child(4) { height: 125px; }
+.block { height: 100px; }
+.block.verticalLR, .block.verticalRL {
+ width: 100px;
+ height: auto;
+}
+</style>
+
+<p>4x1 with parallel items. Items orthogonal to the baseline-axis will use a synthesized baseline (border-box 'under' edge).<br>No item shares any row-like Baseline Context. All items share 'first-column' Baseline Context.<br>The 'justify-self' property (orthogonal to the shared context) aligns all items along the baseline-axis using the column-like baseline.</p>
+<div class="block verticalLR"><div class="area horizontalTB"><div class="item">A</div></div><div class="area horizontalTB"><div class="item">A</div></div><div class="area horizontalTB"><div class="item">A</div></div><div class="area horizontalTB"><div class="item">A</div></div></div>
+<div class="block verticalLR"><div class="area horizontalTB"><div class="item extraRightPadding">A</div></div><div class="area horizontalTB"><div class="item">A</div></div><div class="area horizontalTB"><div class="item">A</div></div><div class="area horizontalTB"><div class="item">A</div></div></div>
+<div class="block"><div class="area verticalLR"><div class="item">A</div></div><div class="area verticalLR"><div class="item">A</div></div><div class="area verticalLR"><div class="item">A</div></div><div class="area verticalLR"><div class="item">A</div></div></div>
+<div class="block"><div class="area verticalLR"><div class="item extraTopPadding">A</div></div><div class="area verticalLR"><div class="item">A</div></div><div class="area verticalLR"><div class="item">A</div></div><div class="area verticalLR"><div class="item">A</div></div></div>
+<div class="block directionRTL"><div class="area verticalRL"><div class="item">A</div></div><div class="area verticalRL"><div class="item">A</div></div><div class="area verticalRL"><div class="item">A</div></div><div class="area verticalRL"><div class="item">A</div></div></div>
+<div class="block directionRTL"><div class="area verticalRL"><div class="item extraBottomPadding">A</div></div><div class="area verticalRL"><div class="item">A</div></div><div class="area verticalRL"><div class="item">A</div></div><div class="area verticalRL"><div class="item">A</div></div></div>

Powered by Google App Engine
This is Rietveld 408576698