| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-item-grid-container-percentage-rows-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-item-grid-container-percentage-rows-expected.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-item-grid-container-percentage-rows-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..381c3ad6c3d3434b44ec840128a3b7db446de618
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/flex-item-grid-container-percentage-rows-expected.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +
|
| +.wrapper {
|
| + width: 200px;
|
| + border: 5px solid;
|
| +}
|
| +
|
| +.wrapper > div {
|
| + height: 100px;
|
| +}
|
| +
|
| +.magenta {
|
| + background: magenta;
|
| +}
|
| +
|
| +.cyan {
|
| + background: cyan;
|
| +}
|
| +
|
| +</style>
|
| +
|
| +<p>This test checks that percentage rows are properly resolved for a grid container that is a flex item with a definite height.</p>
|
| +<p>Test passes if you see a 200x200 box with top half cyan and bottom half magenta.</p>
|
| +
|
| +<div class="wrapper">
|
| + <div class="cyan"></div>
|
| + <div class="magenta"></div>
|
| +</div>
|
|
|