From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001
From: Daniel Baumann <daniel.baumann@progress-linux.org>
Date: Sun, 7 Apr 2024 21:33:14 +0200
Subject: Adding upstream version 115.7.0esr.

Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
---
 .../colspan-percent-distribution-2.html            | 29 ++++++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 layout/reftests/table-width/colspan-percent-distribution-2.html

(limited to 'layout/reftests/table-width/colspan-percent-distribution-2.html')

diff --git a/layout/reftests/table-width/colspan-percent-distribution-2.html b/layout/reftests/table-width/colspan-percent-distribution-2.html
new file mode 100644
index 0000000000..e019d54ec8
--- /dev/null
+++ b/layout/reftests/table-width/colspan-percent-distribution-2.html
@@ -0,0 +1,29 @@
+<html>
+<head>
+<style type="text/css">
+  table { width: 200px;   }
+  td.a  { background: lightgreen; }
+  td.b  { background: orange;     }
+  td.c  { background: yellow;     }
+  td.d  { background: lightblue;  }
+  td.e  { background: teal;     }
+
+  /* cellspacing=0 cellpadding=0 */
+  table  { border-spacing: 0 }
+  td, th { padding: 0 }
+</style>
+</head>
+<body>
+<table>
+  <tr>
+    <td class="a" colspan="2" style="width: 100%;">x</td>
+    <td class="b">x</td>
+  </tr>
+  <tr>
+    <td class="c">x</td>
+    <td class="d">x</td>
+    <td class="e">x</td>
+  </tr>
+</table>
+</body>
+</html>
-- 
cgit v1.2.3