OSDN Git Service

createDocumentメソッドの例外処理におけるalertを除去
authordhrname <dhrname@users.sourceforge.jp>
Sun, 17 Jun 2012 14:07:42 +0000 (23:07 +0900)
committerdhrname <dhrname@users.sourceforge.jp>
Sun, 17 Jun 2012 14:07:42 +0000 (23:07 +0900)
org/w3c/core.js

index 84c9a88..e52db9d 100644 (file)
@@ -201,7 +201,7 @@ DOMImplementation = {
         s.doctype = doctype;
         s.documentElement = s.createElementNS(ns,qname); //ルート要素を作る
         return s;
-      } catch(e){alert(e.message);}
+      } catch(e){}
     },
     "http://www.w3.org/2000/xmlns": {}
 };