summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html b/testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html
new file mode 100644
index 0000000000..c9c30c2a3d
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/tables/collapsing-border-model-003-ref.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>CSS Reference</title>
+<style>
+ div {
+ height: 1.5in;
+ width: 100px;
+ }
+ .orange {
+ background: orange;
+ }
+ .blue {
+ background: blue;
+ width: 50px;
+ float: right;
+ }
+</style>
+<body>
+ <p>Test passes if the orange and blue boxes below are the same height.</p>
+ <div class="orange"><div class="blue"></div></div>
+</body>