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

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

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improving the skipped tesst by solving some rounding issues Created 3 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/grid-self-baseline-02-b-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-02-b-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-02-b-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..f9100f42a05faee0894d399eb303dfae80c90ddc
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-02-b-expected.html
@@ -0,0 +1,38 @@
+<!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;
+ width: 175px;
+ height: 300px;
+}
+.block1 > :nth-child(1) { font-size:24px; }
+.block1 > :nth-child(2) { font-size:32px; }
+.block2 > :nth-child(1) { font-size:48px; }
+.block2 > :nth-child(2) { font-size:64px; }
+.item {
+ display: inline-block;
+ border-width: 2px 5px 3px 4px;
+ border-style: solid;
+ padding: 6px 3px 7px 8px;
+ margin: 10px 6px 4px 12px;
+}
+.extraLeftPadding { padding-left: 30px; }
+.extraRightPadding { padding-right: 30px; }
+.area { display: inline-block; }
+.block1 > .area:nth-child(1) { height: 60px; }
+.block1 > .area:nth-child(2) { height: 60px; }
+.block2 > .area:nth-child(1) { height: 75px; }
+.block2 > .area:nth-child(2) { height: 100px; }
+.block1 { float: left; }
+.block2 { float: left; }
+</style>
+
+<p>4x1 with orthogonal items, but opposite block-flow direction.<br>All items share 'first-row' Baseline Context. No item shares any column-like Baseline Context.<br>We have 2 baseline-sharing groups.<br>The 'justify-self' property (orthogonal to the shared context) aligns items in each group along the baseline-axis using the column-like baseline.</p>
+<div class="block verticalLR"><div class="block1"><div class="area"><div class="item">A</div></div><div class="area"><div class="item">A</div></div></div><div class="block2 verticalRL"><div class="area"><div class="item">A</div></div><div class="area"><div class="item">A</div></div></div></div>
+<div class="block verticalLR"><div class="block1"><div class="area"><div class="item extraLeftPadding">A</div></div><div class="area"><div class="item extraRightPadding">A</div></div></div><div class="block2 verticalRL"><div class="area"><div class="item">A</div></div><div class="area"><div class="item">A</div></div></div></div>

Powered by Google App Engine
This is Rietveld 408576698