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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-flexbox-1/getcomputedstyle/flexbox_computedstyle_flex-flow-row-reverse-wrap.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, 7 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>flexbox | computed style | flex-flow: row-reverse wrap</title> 2 <title>flexbox | computed style | flex-flow: row-reverse wrap</title>
3 <link rel="author" href="http://opera.com" title="Opera Software"> 3 <link rel="author" href="http://opera.com" title="Opera Software">
4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow"> 4 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#propdef-flex-flow">
5 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction -row-reverse"> 5 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-direction -row-reverse">
6 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap "> 6 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#valdef-flex-wrap-wrap ">
7 <link rel="match" href="ref-pass-body.html"> 7 <script src="../../../../resources/testharness.js"></script>
8 <script src="../../../../resources/testharnessreport.js"></script>
8 <meta name="flags" content="dom"> 9 <meta name="flags" content="dom">
9 <style> 10 <style>
10 body { 11 body {
11 color: red; 12 color: red;
12 flex-flow: row-reverse wrap; 13 flex-flow: row-reverse wrap;
13 } 14 }
14 .PASS {color: black;}
15 </style> 15 </style>
16 <h1>FAIL, enable javascript</h1> 16 <div id="log"></div>
17 <script> 17 <script>
18 test(function() {
18 var body = document.body; 19 var body = document.body;
19 20
20 var passed = 21 assert_equals(getComputedStyle(body).getPropertyValue("flex-direction"),
21 » (getComputedStyle(body).getPropertyValue("flex-direction") == 22 » "row-reverse");
22 » "row-reverse" && 23 assert_equals(getComputedStyle(body).getPropertyValue("flex-wrap"),
23 » getComputedStyle(body).getPropertyValue("flex-wrap") == 24 » "wrap");
24 » "wrap"); 25 });
25 body.textContent = body.className = passed ? "PASS" : "FAIL";
26 </script> 26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698