summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html b/testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html
new file mode 100644
index 0000000000..3e86b8a89b
--- /dev/null
+++ b/testing/web-platform/tests/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML>
+<meta charset="utf-8">
+<title>CSS Grid Reference</title>
+<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
+<style>
+grid {
+ vertical-align: top;
+ display: inline-grid;
+ grid-template-columns: 60px 60px;
+ grid-template-rows: 60px;
+ border: 2px solid black;
+}
+item {
+ width: 60px;
+ height: 60px;
+ background: cyan;
+}
+.tall {
+ background: tan;
+}
+</style>
+<grid>
+ <item class="tall"></item>
+ <item></item>
+</grid>
+<grid class="overflowSet">
+ <item class="tall"></item>
+ <item></item>
+</grid>
+<grid class="containSet">
+ <item class="tall"></item>
+ <item></item>
+</grid>
+<grid class="containSet overflowSet">
+ <item class="tall"></item>
+ <item></item>
+</grid>