| Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_display.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_display.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_display.html
|
| index e423a63052f8206de7c45a9ed9ca7febdbf4da4f..faf484495f61df11deccb497773141e3cdb088fd 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_display.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_display.html
|
| @@ -2,21 +2,21 @@
|
| <title>flexbox | computed style | display: flex</title>
|
| <link rel="author" href="http://opera.com" title="Opera Software">
|
| <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
|
| -<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;
|
| display: flex;
|
| }
|
| -.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("display") ==
|
| - "flex";
|
| - body.textContent = body.className = passed ? "PASS" : "FAIL";
|
| + assert_equals(getComputedStyle(body).getPropertyValue("display"),
|
| + "flex");
|
| +});
|
| </script>
|
|
|