]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add border none test case! 10091/head
authorharry <harmanmanchanda182@gmail.com>
Wed, 31 May 2017 17:43:20 +0000 (23:13 +0530)
committerharry <harmanmanchanda182@gmail.com>
Wed, 31 May 2017 17:43:20 +0000 (23:13 +0530)
test/visual/prototype/border-none.html [new file with mode: 0644]

diff --git a/test/visual/prototype/border-none.html b/test/visual/prototype/border-none.html
new file mode 100644 (file)
index 0000000..7a3e394
--- /dev/null
@@ -0,0 +1,51 @@
+<!doctype html>
+<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
+<html class="no-js" lang="en" dir="ltr">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <title>Foundation for Sites Testing</title>
+    <link href="../motion-ui/dist/motion-ui.css" rel="stylesheet" />
+    <link href="../assets/css/foundation-prototype.css" rel="stylesheet" />
+  </head>
+  <body>
+    <div class="row column">
+      <h2>Border None</h2>
+    </div>
+    <div class="row column">
+      <div class="callout primary border-none">
+        Hi! I am a Primary callout with no Borders
+      </div>
+    </div>
+
+    <div class="row column">
+      <div class="callout secondary border-none">
+        Hi! I am a Secondary callout with no Borders
+      </div>
+    </div>
+
+    <div class="row column">
+      <div class="callout success border-none">
+        Hi! I am a Success callout with no Borders
+      </div>
+    </div>
+
+    <div class="row column">
+      <div class="callout warning border-none">
+        Hi! I am a Warning callout with no Borders
+      </div>
+    </div>
+
+    <div class="row column">
+      <div class="callout alert border-none">
+        Hi! I am a Alert callout with no Borders
+      </div>
+    </div>
+
+    <script src="../assets/js/vendor.js"></script>
+    <script src="../assets/js/foundation.js"></script>
+    <script>
+      $(document).foundation();
+    </script>
+  </body>
+</html>