summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-ui
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /layout/reftests/css-ui
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/css-ui')
-rw-r--r--layout/reftests/css-ui/caret-color-01-ref.html18
-rw-r--r--layout/reftests/css-ui/caret-color-01.html17
-rw-r--r--layout/reftests/css-ui/reftest.list1
3 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/css-ui/caret-color-01-ref.html b/layout/reftests/css-ui/caret-color-01-ref.html
new file mode 100644
index 0000000000..b516c92624
--- /dev/null
+++ b/layout/reftests/css-ui/caret-color-01-ref.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<style>
+@font-face {
+ font-family: Ahem;
+ src: url(../fonts/Ahem.ttf);
+}
+div {
+ font: 16px/1 Ahem;
+ width: 1em;
+ background: green;
+}
+</style>
+<div><span></span></div>
+<script>
+let $div = document.querySelector('div');
+let $span = document.querySelector('span');
+$div.style.height = $span.getBoundingClientRect().height + 'px';
+</script>
diff --git a/layout/reftests/css-ui/caret-color-01.html b/layout/reftests/css-ui/caret-color-01.html
new file mode 100644
index 0000000000..7e9d0b33ba
--- /dev/null
+++ b/layout/reftests/css-ui/caret-color-01.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<style>
+@font-face {
+ font-family: Ahem;
+ src: url(../fonts/Ahem.ttf);
+}
+textarea {
+ caret-color: green;
+ font: 16px/1 Ahem;
+ outline: none;
+ border: 0 none;
+ resize: none;
+ padding: 0;
+ margin: 0;
+}
+</style>
+<textarea autofocus></textarea>
diff --git a/layout/reftests/css-ui/reftest.list b/layout/reftests/css-ui/reftest.list
new file mode 100644
index 0000000000..ac3ef57920
--- /dev/null
+++ b/layout/reftests/css-ui/reftest.list
@@ -0,0 +1 @@
+fails-if(useDrawSnapshot) pref(ui.caretWidth,16) needs-focus == caret-color-01.html caret-color-01-ref.html