| Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-writing-mode-009-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-writing-mode-009-expected.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-writing-mode-009-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7380c11590accc3a501cf163faf15541580dff87
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-writing-mode-009-expected.html
|
| @@ -0,0 +1,56 @@
|
| +<!DOCTYPE html>
|
| +<!--
|
| + Any copyright is dedicated to the Public Domain.
|
| + http://creativecommons.org/publicdomain/zero/1.0/
|
| + -->
|
| +<html>
|
| +<head>
|
| + <title>CSS Reftest Reference</title>
|
| + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
|
| + <meta charset="utf-8">
|
| + <style>
|
| + .flexContainer {
|
| + width: 40px;
|
| + height: 30px;
|
| + border: 1px solid gray;
|
| + margin-bottom: 5px;
|
| + }
|
| + .flexContainer > * {
|
| + width: 20px;
|
| + height: 15px;
|
| + float: left;
|
| + }
|
| + .item1 {
|
| + /* Note: flex items are ordered as "CMYK": cyan, magenta, yellow, black */
|
| + background: cyan;
|
| + }
|
| + .item2 {
|
| + background: magenta;
|
| + }
|
| + .item3 {
|
| + background: yellow;
|
| + }
|
| + .item4 {
|
| + background: black;
|
| + }
|
| + </style>
|
| +</head>
|
| +<body>
|
| + <div class="flexContainer">
|
| + <div class="item3"></div><div class="item1"></div>
|
| + <div class="item4"></div><div class="item2"></div>
|
| + </div>
|
| + <div class="flexContainer">
|
| + <div class="item3"></div><div class="item1"></div>
|
| + <div class="item4"></div><div class="item2"></div>
|
| + </div>
|
| + <div class="flexContainer">
|
| + <div class="item3"></div><div class="item1"></div>
|
| + <div class="item4"></div><div class="item2"></div>
|
| + </div>
|
| + <div class="flexContainer">
|
| + <div class="item3"></div><div class="item1"></div>
|
| + <div class="item4"></div><div class="item2"></div>
|
| + </div>
|
| +</body>
|
| +</html>
|
|
|