| Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-reverse-nowrap.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-reverse-nowrap.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-reverse-nowrap.html
|
| index 14624b0db2dfa0a755dec8b86495e118bda3bd6b..b1139ade69c97c61626bd00d85134fbe533066d3 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-reverse-nowrap.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-reverse-nowrap.html
|
| @@ -4,23 +4,23 @@
|
| <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow">
|
| <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction-column-reverse">
|
| <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-nowrap">
|
| -<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-flow: column-reverse nowrap;
|
| }
|
| -.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-direction") ==
|
| - "column-reverse" &&
|
| - getComputedStyle(body).getPropertyValue("flex-wrap") ==
|
| - "nowrap");
|
| - body.textContent = body.className = passed ? "PASS" : "FAIL";
|
| + assert_equals(getComputedStyle(body).getPropertyValue("flex-direction"),
|
| + "column-reverse");
|
| + assert_equals(getComputedStyle(body).getPropertyValue("flex-wrap"),
|
| + "nowrap");
|
| +});
|
| </script>
|
|
|