summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html')
-rw-r--r--testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html b/testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html
new file mode 100644
index 0000000000..d1bb24707f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-flexbox/justify-content_flex-start.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>CSS Flexible Box Test: justify-content_flex-start</title>
+ <link rel="author" title="Intel" href="http://www.intel.com" />
+ <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#justify-content-property" />
+ <meta name="assert" content="Check if the web engine can indentify the justify-content value flex-start." />
+ <style>
+ #test01, #test02, #test03{
+ text-align:center;
+ font-size: 20px;
+ width: 30px;
+ }
+ #test01{
+ background: #7FFF00;
+ }
+ #test02{
+ background: #00FFFF;
+ }
+ #test03{
+ background: #4169E1;
+ }
+ #test{
+ background: #ff0000;
+ height: 200px;
+ width: 200px;
+ display: flex;
+ justify-content: flex-start;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if:<br>
+ 1. the rectangle 1, 2, 3 show up in a row in a red rectangle and no gap between them.<br>
+ 2. the rectangle 1, 2, 3 appear in left of red rectangle.<br>
+ 3. the height of the 1, 2, 3 is the same as the height of the red rectangle.</p>
+ <div id=test><div id=test01>1</div><div id=test02>2</div><div id=test03>3</div></div>
+ </body>
+</html>