diff options
| author | Albert Krewinkel <albert@zeitkraut.de> | 2022-01-28 18:05:49 +0100 |
|---|---|---|
| committer | Albert Krewinkel <albert@zeitkraut.de> | 2022-01-28 18:20:14 +0100 |
| commit | a6fa3df1146f7aee4e3bfa4cf506ab44e38ecb35 (patch) | |
| tree | 5da7601e160156f0bb4424ed4f60f53d6668181d /test/tables/students.html4 | |
| parent | d36a16a4df5ed54b80dfc1579c339bad24ba6b0c (diff) | |
HTML writer: avoid duplicate "style" attributes on table cells
Fixes: #7871
Diffstat (limited to 'test/tables/students.html4')
| -rw-r--r-- | test/tables/students.html4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tables/students.html4 b/test/tables/students.html4 index b02b0aba8..cbfffaa1e 100644 --- a/test/tables/students.html4 +++ b/test/tables/students.html4 @@ -12,7 +12,7 @@ </thead> <tbody class="souvereign-states"> <tr class="odd"> -<th align="left" colspan="2">Computer Science</th> +<th colspan="2" align="left">Computer Science</th> </tr> <tr class="odd"> @@ -30,7 +30,7 @@ </tbody> <tbody> <tr class="odd"> -<th align="left" colspan="2">Russian Literature</th> +<th colspan="2" align="left">Russian Literature</th> </tr> <tr class="odd"> @@ -40,7 +40,7 @@ </tbody> <tbody> <tr class="odd"> -<th align="left" colspan="2">Astrophysics</th> +<th colspan="2" align="left">Astrophysics</th> </tr> <tr class="odd"> |
