| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-vertical-rl-03-expected.html | 
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-vertical-rl-03-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-vertical-rl-03-expected.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0393ae9898362664b5362258aa5e937b87ab24b1 | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-vertical-rl-03-expected.html | 
| @@ -0,0 +1,31 @@ | 
| +<!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: 150px; | 
| +   height: 350px; | 
| +} | 
| +.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; | 
| +} | 
| +.extraLeftPadding { padding-left: 30px; } | 
| +.extraRightPadding { padding-right: 30px; } | 
| +.item { display: inline-block; } | 
| +</style> | 
| + | 
| +<p>1x4 with orthogonal items. Items orthogonal to the baseline-axis will use a synthesized baseline (border-box 'under' edge).<br>All items share 'first-row' Baseline Context. No item shares any column-like Baseline Context.<br>Items participate in both, column and row baseline, but since they only share a row-like Baseline Context only 'aling-self' (column baseline-axis) should apply.</p> | 
| +<div class="block verticalRL"><div class="item horizontalTB">A</div><div class="item horizontalTB">A</div><div class="item horizontalTB">A</div><div class="item horizontalTB">A</div></div> | 
| +<div class="block verticalRL"><div class="item horizontalTB extraLeftPadding">A</div><div class="item horizontalTB extraRightPadding">A</div><div class="item horizontalTB">A</div><div class="item horizontalTB">A</div></div> | 
|  |