Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Unified Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.html

Issue 1922043004: Import csswg-test@b2daa426addd5ccb8e9ce1c5d800f9d82603f1ec (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update W3CImportExpectations and make me owner for css-scoping-1 Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.html
diff --git a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.html b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.html
index 6194409117982fe7a7ca1812e226fb95ecb736b4..3c8131da6dde6a3f39b3e5ba1e8ade6d3c6bee06 100644
--- a/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.html
+++ b/third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-column-wrap-reverse.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">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap-reverse">
-<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 wrap-reverse;
}
-.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" &&
- getComputedStyle(body).getPropertyValue("flex-wrap") ==
- "wrap-reverse");
- body.textContent = body.className = passed ? "PASS" : "FAIL";
+ assert_equals(getComputedStyle(body).getPropertyValue("flex-direction"),
+ "column");
+ assert_equals(getComputedStyle(body).getPropertyValue("flex-wrap"),
+ "wrap-reverse");
+});
</script>

Powered by Google App Engine
This is Rietveld 408576698