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

Unified Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-005.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-005.html
diff --git a/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-005.html b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-005.html
new file mode 100644
index 0000000000000000000000000000000000000000..b4f47c75e3552d9e425108994b4871b103c4db3b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/csswg-test/css-align-3/default-alignment/place-items-shorthand-005.html
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<title>CSS Box Alignment: place-items 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-items-property" />
+<meta name="assert" content="Check that place-items's 'inherit' value expands to 'align-items' and 'justify-items'." />
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<style>
+ #test {
+ place-items: 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-items: inherit");
+ var style = getComputedStyle(child);
+
+ test(function() {
+ assert_equals(style.getPropertyValue("align-items"),
+ "start", "place-items resolved value for align-items");
+ }, "Check place-items: inherit - align-items resolved value");
+
+ test(function() {
+ assert_equals(style.getPropertyValue("justify-items"),
+ "end", "place-items resolved value for justify-items");
+ }, "Check place-items: inherit - justify-items resolved value");
+</script>

Powered by Google App Engine
This is Rietveld 408576698