[Sie-announce] SIEコード [2971] IE8では、なるべくXMLHTTPRequestオブジェクトを利用するように処理させた

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 10月 2日 (日) 20:58:00 JST


Revision: 2971
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2971
Author:   dhrname
Date:     2011-10-02 20:58:00 +0900 (Sun, 02 Oct 2011)

Log Message:
-----------
IE8では、なるべくXMLHTTPRequestオブジェクトを利用するように処理させた

Modified Paths:
--------------
    branches/08x/086/org/w3c/dom/svg.js

Modified: branches/08x/086/org/w3c/dom/svg.js
===================================================================
--- branches/08x/086/org/w3c/dom/svg.js	2011-10-02 11:42:52 UTC (rev 2970)
+++ branches/08x/086/org/w3c/dom/svg.js	2011-10-02 11:58:00 UTC (rev 2971)
@@ -6256,7 +6256,11 @@
   var xmlhttp,         //XMLHttpオブジェクトを生成
       _doc = document; //documentのエイリアスを作成
   try {
-    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
+    if (XMLHttpRequest) {
+      xmlhttp = false;
+    } else {
+      xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
+    }
   } catch (e) {
     try {
       xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");




Sie-announce メーリングリストの案内
Back to archive index