summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html')
-rw-r--r--testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html b/testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html
new file mode 100644
index 0000000000..a82635f986
--- /dev/null
+++ b/testing/web-platform/tests/css/css-overflow/webkit-line-clamp-with-line-height.tentative.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<link rel="match" href="reference/webkit-line-clamp-with-line-height-ref.html">
+<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2847#issuecomment-468084957">
+<meta name="assert" content="This test checks that -webkit-line-clamp calculates respects line-height when calculating its block-size.">
+<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
+<style>
+#test {
+ width: 100px;
+
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 1;
+ overflow: hidden;
+
+ border: solid thin grey;
+ font: 20px 'Ahem';
+ line-height: 40px;
+}
+</style>
+<p>This tests the -webkit-line-clamp property with line-height applied.</p>
+<div id="test">
+ XXXX XXX
+</div>