summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html')
-rw-r--r--testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html b/testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html
new file mode 100644
index 0000000000..aa9341df1b
--- /dev/null
+++ b/testing/web-platform/tests/css/css-pseudo/first-letter-background-image.html
@@ -0,0 +1,17 @@
+<!doctype html>
+<title>CSS Test: ::first-letter correctly applies background-image</title>
+<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
+<link rel="author" href="https://mozilla.org" title="Mozilla">
+<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-letter-styling">
+<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1528451">
+<link rel="match" href="first-letter-background-image-ref.html">
+<style>
+ div::first-letter {
+ color: lime;
+ /* Lime background */
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M/wHwAEBgIApD5fRAAAAABJRU5ErkJggg==');
+ }
+</style>
+<div>
+ A letter
+</div>