summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html')
-rw-r--r--testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html b/testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html
new file mode 100644
index 0000000000..a68fe7ea71
--- /dev/null
+++ b/testing/web-platform/tests/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+ <meta charset="utf-8">
+ <title>CSS Multi-column Layout Test Reference: Remove the spanner as the first child</title>
+ <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
+ <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
+
+ <style>
+ #column {
+ column-count: 3;
+ column-rule: 6px solid;
+ width: 400px;
+ outline: 1px solid black;
+ }
+ h3 {
+ column-span: all;
+ outline: 1px solid blue;
+ }
+ </style>
+
+ <body>
+ <article id="column">
+ <div>block1</div>
+ <div>block2</div>
+ </article>
+ </body>
+</html>