summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html b/testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html
new file mode 100644
index 0000000000..a2fae9bd56
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/whitespace-in-flexitem-001.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html>
+<title>CSS Test: Whitespace-only nodes in Flexboxes</title>
+<link href="support/flexbox.css" rel="stylesheet">
+<link rel="author" title="Google Inc." href="http://www.google.com/">
+<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-items">
+<link rel="match" href="whitespace-in-flexitem-001-ref.html">
+<meta name="assert" content="Whitespace-only nodes in a flexbox should not
+be rendered and not influence justify-content, even in the presence of
+white-space: pre">
+<style>
+ .flexbox { white-space: pre; }
+ .a {
+ flex: none;
+ width: 30px;
+ background: salmon;
+ }
+</style>
+<body>
+ <div class="flexbox justify-content-space-around">
+ <div class="a"></div> &#9;
+ </div>
+
+ <div class="flexbox">
+ <b>foo</b> <b>bar</b>
+ </div>