| Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-shorthand-auto.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-shorthand-auto.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-shorthand-auto.html
|
| index 04a3c4140b7287aaa350f29243872ca6491a2b8c..be5548f408113563decadf9cb9beaeab65bd4a9f 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-shorthand-auto.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-shorthand-auto.html
|
| @@ -2,25 +2,25 @@
|
| <title>flexbox | computed style | flex: auto</title>
|
| <link rel="author" href="http://opera.com" title="Opera Software">
|
| <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex">
|
| -<link rel="match" href="ref-pass-body.html">
|
| +<script src="../../../../resources/testharness.js"></script>
|
| +<script src="../../../../resources/testharnessreport.js"></script>
|
| <meta name="flags" content="dom">
|
| <style>
|
| body {
|
| color: red;
|
| flex: auto;
|
| }
|
| -.PASS {color: black;}
|
| </style>
|
| -<h1>FAIL, enable javascript</h1>
|
| +<div id="log"></div>
|
| <script>
|
| +test(function() {
|
| var body = document.body;
|
|
|
| - var passed =
|
| - (getComputedStyle(body).getPropertyValue("flex-grow") ==
|
| - "1" &&
|
| - getComputedStyle(body).getPropertyValue("flex-shrink") ==
|
| - "1" &&
|
| - getComputedStyle(body).getPropertyValue("flex-basis") ==
|
| - "auto");
|
| - body.textContent = body.className = passed ? "PASS" : "FAIL";
|
| + assert_equals(getComputedStyle(body).getPropertyValue("flex-grow"),
|
| + "1");
|
| + assert_equals(getComputedStyle(body).getPropertyValue("flex-shrink"),
|
| + "1");
|
| + assert_equals(getComputedStyle(body).getPropertyValue("flex-basis"),
|
| + "auto");
|
| +});
|
| </script>
|
|
|