summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html')
-rw-r--r--testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html b/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html
new file mode 100644
index 0000000000..825f63ae85
--- /dev/null
+++ b/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-29-ref.html
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Test forced colors mode on table styles with sys colors</title>
+<style>
+ table {
+ border-collapse: collapse;
+ forced-color-adjust: none;
+ }
+ td, th {
+ border: 1px solid LinkText;
+ padding: 8px;
+ text-align: left;
+ }
+ tr:nth-child(even) {
+ background-color: CanvasText;
+ }
+ tr:nth-child(odd) {
+ color: Canvas;
+ text-decoration: underline;
+ text-decoration-color: LinkText;
+ text-emphasis: '*' LinkText;
+ -webkit-text-emphasis: '*' LinkText;
+ }
+</style>
+<table>
+ <tr>
+ <th>Column</th>
+ <th>Column</th>
+ <th>Column</th>
+ </tr>
+ <tr>
+ <td></td>
+ <td></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>Entry</td>
+ <td>Entry</td>
+ <td>Entry</td>
+ </tr>
+</table> \ No newline at end of file