summaryrefslogtreecommitdiffstats
path: root/layout/reftests/border-dotted/1761756.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/border-dotted/1761756.html')
-rw-r--r--layout/reftests/border-dotted/1761756.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/border-dotted/1761756.html b/layout/reftests/border-dotted/1761756.html
new file mode 100644
index 0000000000..efdf2b6219
--- /dev/null
+++ b/layout/reftests/border-dotted/1761756.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+big {
+ background-color: red;
+ background-clip: text !important;
+ border-block-end-style: dotted;
+}
+</style>
+</head>
+<body>
+<big id="big" dir="rtl"></big>
+<script>
+const big = document.getElementById("big");
+big.innerText = "\nA";
+</script>
+</body>
+</html>