## [Unreleased (7.0.4)]
+### Fixed
+
+- The `alt` attributes are once again set in the cmap output. This was a
+ regression in Graphviz 7.0.2, that intentionally removed these but did not
+ account for the W3C specification making these attributes required when the
+ `href` attribute is set. #265, #2319
+
## [7.0.3] – 2022-11-26
### Changed
gvputs_xml(job, tooltip);
gvputs(job, "\"");
}
+ /*
+ * alt text is intended for the visually impaired, but such
+ * folk are not likely to be clicking around on a graph anyway.
+ * IE on the PC platform (but not on Macs) incorrectly
+ * uses (non-empty) alt strings instead of title strings for tooltips.
+ * To make tooltips work and avoid this IE issue,
+ * while still satisfying usability guidelines
+ * that require that there is always an alt string,
+ * we generate just an empty alt string.
+ */
+ gvputs(job, " alt=\"\"");
gvputs(job, " coords=\"");
switch (map_shape) {