OSDN Git Service

* Fixed Bug.
authorAtsushi Konno <konn@users.sourceforge.jp>
Wed, 22 Jun 2011 10:19:08 +0000 (19:19 +0900)
committerAtsushi Konno <konn@users.sourceforge.jp>
Wed, 22 Jun 2011 10:19:08 +0000 (19:19 +0900)
    - If the value attribute is empty, the value attribute is not
      output.

src/chxj_ixhtml10.c

index a08a6e4..45cc494 100644 (file)
@@ -4056,7 +4056,7 @@ s_ixhtml10_start_option_tag(void *pdoc, Node *node)
     }
   }
   W_L("<option");
-  if (value && *value) {
+  if (value) {
     W_L(" value=\"");
     W_V(value);
     W_L("\"");