--- test/html-whatpm/table-script.js 2008/05/06 07:50:28 1.7
+++ test/html-whatpm/table-script.js 2008/05/06 08:47:09 1.8
@@ -37,6 +37,7 @@
headerCellStrokeStyle: 'black',
dataCellFillStyle: 'rgba(0, 0, 0, 0)',
dataCellStrokeStyle: 'black',
+ emptyDataCellStrokeStyle: '#C0C0C0',
overlappingCellFillStyle: 'red',
overlappingCellStrokeStyle: 'rgba(0, 0, 0, 0)',
highlightCellFillStyle: 'yellow'
@@ -140,7 +141,10 @@
c2d.fillStyle = c[0].is_header
? param.headerCellFillStyle : param.dataCellFillStyle;
c2d.strokeStyle = c[0].is_header
- ? param.headerCellStrokeStyle : param.dataCellStrokeStyle;
+ ? param.headerCellStrokeStyle
+ : c[0].is_empty
+ ? param.emptyDataCellStrokeStyle
+ : param.dataCellStrokeStyle;
if (c[0].id) {
var area = document.createElement ('area');
area.shape = 'rect';
@@ -244,4 +248,4 @@
and/or modify it under the same terms as Perl itself.
*/
-/* $Date: 2008/05/06 07:50:28 $ */
+/* $Date: 2008/05/06 08:47:09 $ */