| Index: third_party/WebKit/LayoutTests/css3/logical-props/logicalprops-block-size-vlr-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/css3/logical-props/logicalprops-block-size-vlr-expected.html b/third_party/WebKit/LayoutTests/css3/logical-props/logicalprops-block-size-vlr-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..38fd4bb3587c8f382356b15be7b7bd4bd2745970
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/css3/logical-props/logicalprops-block-size-vlr-expected.html
|
| @@ -0,0 +1,45 @@
|
| +<!doctype html>
|
| +<meta charset="utf-8">
|
| +<title>CSS Logical Properties: {max-,min-}block-size vertical-lr</title>
|
| +<link rel="help" href="https://drafts.csswg.org/css-logical-props/">
|
| +<link rel="help" href="https://drafts.csswg.org/css-writing-modes/#logical-to-physical">
|
| +
|
| +<style>
|
| +div {
|
| + border: 1px solid #000;
|
| + writing-mode: vertical-lr;
|
| +}
|
| +#div1 {
|
| + width: 40px;
|
| + min-width: 50px;
|
| + max-width: 100px;
|
| +}
|
| +#div2 {
|
| + width: 100px;
|
| + min-width: 50px;
|
| + max-width: 100px;
|
| +}
|
| +#div3 {
|
| + width: 120px;
|
| + min-width: 50px;
|
| + max-width: 100px;
|
| +}
|
| +
|
| +p {
|
| + border: 1px solid #000;
|
| + writing-mode: vertical-lr;
|
| +}
|
| +#p1 {
|
| + width: 50px;
|
| +}
|
| +#p2 {
|
| + width: 100px;
|
| +}
|
| +</style>
|
| +
|
| +<div id="div1">Hello, this is a test</div>
|
| +<div id="div2">Hello, this is a test</div>
|
| +<div id="div3">Hello, this is a test</div>
|
| +
|
| +<p id="p1">Hello, this is a test</div>
|
| +<p id="p2">Hello, this is a test</div>
|
|
|