OSDN Git Service

textarea@istyle for XHTML(ez,y!)
authorcoltware@gmail.com <coltware@gmail.com>
Mon, 16 Nov 2009 17:13:46 +0000 (17:13 +0000)
committerAtsushi Konno <atkonn@gmail.com>
Thu, 10 Dec 2009 03:28:39 +0000 (12:28 +0900)
src/chxj_jxhtml.c
src/chxj_xhtml_mobile_1_0.c

index 955ccd8..aaee4fe 100755 (executable)
@@ -4162,11 +4162,8 @@ s_jxhtml_start_textarea_tag(void *pdoc, Node *node)
     W_L("\"");
   }
   if (attr_istyle) {
-    char *vv = qs_conv_istyle_to_format(doc->buf.pool, attr_istyle);
-    W_L(" style=\"");
-    W_L("-wap-input-format:&quot;*");
-    W_V(vv);
-    W_L("&quot;;");
+    W_L(" istyle=\"");
+    W_V(attr_istyle);
     W_L("\"");
   }
   W_L(">");
index 5829e64..d00e3f0 100755 (executable)
@@ -4636,9 +4636,8 @@ s_xhtml_1_0_start_textarea_tag(void *pdoc, Node *node)
     W_L("\"");
   }
   if (attr_istyle) {
-    char *fmt = qs_conv_istyle_to_format(doc->r->pool, attr_istyle);
-    W_L(" FORMAT=\"*");
-    W_V(fmt);
+    W_L(" istyle=\"");
+    W_V(attr_istyle);
     W_L("\"");
   }
   W_L(">");