summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/461512-1.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/bugs/461512-1.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--layout/reftests/bugs/461512-1.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/layout/reftests/bugs/461512-1.html b/layout/reftests/bugs/461512-1.html
new file mode 100644
index 0000000000..627c7f3924
--- /dev/null
+++ b/layout/reftests/bugs/461512-1.html
@@ -0,0 +1,59 @@
+<html>
+ <head>
+ <style type="text/css">
+ body { background-color: white; margin: 0; padding: 0; }
+ p {
+ margin: 10px;
+ padding: 0;
+ border: 10px solid rgba(200, 160, 120, 0.5);
+ height: 10px;
+ }
+
+ /**
+ * XXX we cannot test the corner by this testing because when the corner
+ * is joined with anti-aliased, the edge isn't matching with the
+ * reference. The dashed and dotted line's anti-aliasing are same.
+ */
+
+ /* Cover the coners by the white div element */
+ div {
+ position: absolute;
+ width: 10px;
+ height: 10px;
+ background-color: white;
+ }
+ div.tr {
+ right: 10px;
+ }
+ div.tl {
+ left: 10px;
+ }
+ div.bl {
+ left: 10px;
+ margin-top: 20px;
+ }
+ div.br {
+ right: 10px;
+ margin-top: 20px;
+ }
+ </style>
+ </head>
+ <body>
+ <p style="border-style: solid;">&nbsp;</p>
+ <!-- <p style="border-style: dashed;">&nbsp;</p> -->
+ <!-- <p style="border-style: dotted;">&nbsp;</p> -->
+ <p style="border-style: double;">&nbsp;</p>
+ <div class="tr"></div>
+ <div class="bl"></div>
+ <p style="border-style: ridge;">&nbsp;</p>
+ <div class="tr"></div>
+ <div class="bl"></div>
+ <p style="border-style: groove;">&nbsp;</p>
+ <div class="tr"></div>
+ <div class="bl"></div>
+ <p style="border-style: inset;">&nbsp;</p>
+ <div class="tr"></div>
+ <div class="bl"></div>
+ <p style="border-style: outset;">&nbsp;</p>
+ </body>
+</html>