]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Add visual test for the bug fix! 10172/head
authorharry <harmanmanchanda182@gmail.com>
Mon, 12 Jun 2017 17:30:28 +0000 (23:00 +0530)
committerharry <harmanmanchanda182@gmail.com>
Mon, 12 Jun 2017 17:32:54 +0000 (23:02 +0530)
test/visual/xy-grid/responsive-gutters.html [new file with mode: 0644]

diff --git a/test/visual/xy-grid/responsive-gutters.html b/test/visual/xy-grid/responsive-gutters.html
new file mode 100644 (file)
index 0000000..d44daa4
--- /dev/null
@@ -0,0 +1,39 @@
+<!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>XY block grid</title>
+    <link href="../assets/css/foundation.css" rel="stylesheet" />
+    <style>
+      body {
+        padding: 30px;
+      }
+
+      .cell {
+        background: #1e90ff;
+        line-height: 50px;
+        height: 50px;
+        color: white;
+        text-align: center;
+        margin-bottom: 30px;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Responsive Gutters</h1>
+
+    <div class="grid-x grid-margin-x">
+      <div class="small-4 cell">X</div>
+      <div class="small-4 cell">Y</div>
+      <div class="small-4 cell">Z</div>
+    </div>
+
+    <script src="../assets/js/vendor.js"></script>
+    <script src="../assets/js/foundation.js"></script>
+    <script>
+      $(document).foundation();
+    </script>
+  </body>
+</html>