| Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-sizing-horiz-001-expected.xhtml
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-sizing-horiz-001-expected.xhtml b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-sizing-horiz-001-expected.xhtml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dfe5b35ca25de196a54fd7443627ff0379841341
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-sizing-horiz-001-expected.xhtml
|
| @@ -0,0 +1,79 @@
|
| +<?xml version="1.0" encoding="UTF-8"?>
|
| +<!--
|
| + Any copyright is dedicated to the Public Domain.
|
| + http://creativecommons.org/publicdomain/zero/1.0/
|
| + -->
|
| +<html xmlns="http://www.w3.org/1999/xhtml">
|
| + <head>
|
| + <title>CSS Reftest Reference</title>
|
| + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
|
| + <style>
|
| + div { height: 10px; }
|
| + div.flexbox {
|
| + border: 1px dashed blue;
|
| + font-size: 10px;
|
| + margin-bottom: 2px;
|
| + }
|
| + div.a, div.b, div.c { float: left }
|
| + div.a {
|
| + width: 20px;
|
| + background: lightgreen;
|
| + }
|
| + div.b {
|
| + width: 40px;
|
| + background: purple;
|
| + }
|
| + div.c {
|
| + width: 40px;
|
| + background: orange;
|
| + }
|
| + </style>
|
| + </head>
|
| + <body>
|
| + <div class="flexbox">
|
| + <div class="a" style="width: 60px"/>
|
| + <div class="b" style="width: 60px"/>
|
| + <div class="c" style="width: 60px"/>
|
| + </div>
|
| +
|
| + <div class="flexbox">
|
| + <div class="a" style="width: 60px"/>
|
| + <div class="b" style="width: 60px"/>
|
| + <div class="c" style="width: 60px"/>
|
| + </div>
|
| +
|
| + <div class="flexbox" style="width: 300px">
|
| + <div class="a" style="width: 60px"/>
|
| + <div class="b" style="width: 60px"/>
|
| + <div class="c" style="width: 60px"/>
|
| + </div>
|
| +
|
| + <div class="flexbox" style="width: 70px">
|
| + <div class="a" style="width: 10px"/>
|
| + <div class="b"/>
|
| + <div class="c" style="width: 20px"/>
|
| + </div>
|
| +
|
| + <div class="flexbox" style="width: 20px">
|
| + <!-- We add an extra layer of <div> wrapping in this chunk, with a
|
| + fixed width, to keep the overflowing children from wrapping. -->
|
| + <div style="width: 50px">
|
| + <div class="b"/>
|
| + <div class="c" style="width: 10px"/>
|
| + </div>
|
| + </div>
|
| +
|
| + <div class="flexbox" style="width: 58px">
|
| + <div class="a" style="width: 6px"/>
|
| + <div class="b"/>
|
| + <div class="c" style="width: 12px"/>
|
| + </div>
|
| +
|
| + <div class="flexbox" style="width: 140px">
|
| + <div class="a" style="width: 40px"/>
|
| + <div class="b" style="width: 40px"/>
|
| + <div class="c" style="width: 60px"/>
|
| + </div>
|
| +
|
| + </body>
|
| +</html>
|
|
|