summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html b/testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html
new file mode 100644
index 0000000000..f855bab6a2
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<style>
+div {
+ margin-top: 50px;
+ font-size: 10px;
+ line-height: 1;
+}
+
+.inline-block {
+ display: inline-block;
+ height: 30px;
+ width: 30px;
+ background: blue;
+}
+
+.top .inline-block {
+ vertical-align: top;
+}
+
+.bottom .inline-block {
+ vertical-align: bottom;
+}
+
+</style>
+<body>
+ <div class="top">
+ <span>
+ Next
+ <span class="inline-block"></span>
+ </span>
+ </div>
+ <div class="bottom">
+ <span>
+ Next
+ <span class="inline-block"></span>
+ </span>
+ </div>
+</body>