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