| Index: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-expected.html b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4cce5432571a1f50c87aa2c9c0b6365260983438
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/shapes1/shape-outside-margin-box-border-radius-003-expected.html
|
| @@ -0,0 +1,47 @@
|
| +<!DOCTYPE html>
|
| +<!-- Any copyright is dedicated to the Public Domain.
|
| + - http://creativecommons.org/publicdomain/zero/1.0/ -->
|
| +
|
| +<html>
|
| + <meta charset="utf-8">
|
| + <title>CSS Shape Test: float right, margin-box, border-radius reference</title>
|
| + <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
|
| + <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
|
| + <style>
|
| + .container {
|
| + direction: rtl;
|
| + position: absolute;
|
| + width: 200px;
|
| + line-height: 0;
|
| + }
|
| +
|
| + .shape {
|
| + float: right;
|
| + /* Omit shape-outside: margin-box; */
|
| + border-radius: 50%;
|
| + box-sizing: content-box;
|
| + height: 20px;
|
| + width: 20px;
|
| + padding: 20px;
|
| + border: 20px solid lightgreen;
|
| + margin: 10px;
|
| + background-color: orange;
|
| + }
|
| +
|
| + .box {
|
| + position: absolute;
|
| + width: 60px;
|
| + background-color: blue;
|
| + }
|
| + </style>
|
| +
|
| + <body class="container">
|
| + <div class="shape"></div>
|
| + <div class="box" style="height: 12px; top: 0px; right: 96px;"></div> <!-- Box at corner -->
|
| + <div class="box" style="height: 12px; top: 12px; right: 108px;"></div> <!-- Box at corner -->
|
| + <div class="box" style="height: 36px; top: 24px; right: 120px;"></div>
|
| + <div class="box" style="height: 36px; top: 60px; right: 120px;"></div>
|
| + <div class="box" style="height: 12px; top: 96px; right: 108px;"></div> <!-- Box at corner -->
|
| + <div class="box" style="height: 12px; top: 108px; right: 96px;"></div> <!-- Box at corner -->
|
| + </body>
|
| +</html>
|
|
|