ソースを参照

add a <table summary="..." /> attribute so screenreader software does not

get hopelessly lost.
tags/v0.99.beta17
Ben Wiley Sittler bsittler 16年前
コミット
ef3b597946
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      caca/codec/export.c

+ 1
- 1
caca/codec/export.c ファイルの表示

@@ -488,7 +488,7 @@ static void *export_html3(caca_canvas_t const *cv, size_t *bytes)
*bytes = 1000 + cv->height * (10 + maxcols * (48 + 36 + 9 + 17));
cur = data = malloc(*bytes);

cur += sprintf(cur, "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n");
cur += sprintf(cur, "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" summary=\"[libcaca canvas html3 export]\">\n");

for(y = 0; y < cv->height; y++)
{


読み込み中…
キャンセル
保存