| Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-005.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-005.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-005.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d74f03993c4c3a7fbffb9a8c7a9294b723c42a4c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/self-alignment/place-self-shorthand-005.html
|
| @@ -0,0 +1,30 @@
|
| +<!DOCTYPE html>
|
| +<title>CSS Box Alignment: place-self shorthand - inherit value</title>
|
| +<link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com" />
|
| +<link rel="help" href="http://www.w3.org/TR/css3-align/#place-self-property" />
|
| +<meta name="assert" content="Check that place-self's 'inherit' value expands to 'align-self' and 'justify-self'." />
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<style>
|
| + #test {
|
| + place-self: start end;
|
| + }
|
| +</style>
|
| +<div id="log"></div>
|
| +<div id="test"></div>
|
| +<script>
|
| + var child = document.createElement("div");
|
| + document.getElementById("test").appendChild(child);
|
| + child.setAttribute("style", "place-self: inherit");
|
| + var style = getComputedStyle(child);
|
| +
|
| + test(function() {
|
| + assert_equals(style.getPropertyValue("align-self"),
|
| + "start", "place-self resolved value for align-self");
|
| + }, "Check place-self: inherit - align-self resolved value");
|
| +
|
| + test(function() {
|
| + assert_equals(style.getPropertyValue("justify-self"),
|
| + "end", "place-self resolved value for justify-self");
|
| + }, "Check place-self: inherit - justify-self resolved value");
|
| +</script>
|
|
|