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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-001.html

Issue 2762043004: [css-align] Import the CSS Box Alignment tests from the CSSWG Test Suite (Closed)
Patch Set: Upload suggested changes. Created 3 years, 9 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
(Empty)
1 <!DOCTYPE html>
2 <title>CSS Box Alignment: place-self shorthand - single values specified</title>
3 <link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
4 <link rel="help" href="http://www.w3.org/TR/css3-align/#place-self-property" />
5 <meta name="assert" content="Check that setting a single value to place-self exp ands to such value set in both 'align-self' and 'justify-self'." />
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8 <script src="../resources/alignment-parsing-utils.js"></script>
9 <div id="log"></div>
10 <script>
11 var values = ["auto", "normal", "stretch"].concat(selfPositionValues, baseli neValues);
12 values.forEach(function(value) {
13 test(function() {
14 checkPlaceShorhandLonghands("place-self", "align-self", "justify-sel f", value);
15 }, "Checking place-self: " + value);
16 });
17 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698