summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/common/extensions/docs/static/xhr.html6
-rw-r--r--chrome/common/extensions/docs/xhr.html6
2 files changed, 12 insertions, 0 deletions
diff --git a/chrome/common/extensions/docs/static/xhr.html b/chrome/common/extensions/docs/static/xhr.html
index 84cecfc..a7be123 100644
--- a/chrome/common/extensions/docs/static/xhr.html
+++ b/chrome/common/extensions/docs/static/xhr.html
@@ -36,6 +36,12 @@ xhr.open("GET", chrome.extension.getURL('/config_resources/config.json'), true);
xhr.send();
</pre>
+<p class="caution">
+<b>Bug note:</b>
+Until <a href="http://crbug.com/41024">bug 41024</a> is fixed,
+the preceding code won't work.
+</p>
+
<p>If the extension attempts to use a security origin other than itself,
say http://www.google.com,
the browser disallows it
diff --git a/chrome/common/extensions/docs/xhr.html b/chrome/common/extensions/docs/xhr.html
index c04f417..4353955 100644
--- a/chrome/common/extensions/docs/xhr.html
+++ b/chrome/common/extensions/docs/xhr.html
@@ -300,6 +300,12 @@ xhr.open("GET", chrome.extension.getURL('/config_resources/config.json'), true);
xhr.send();
</pre>
+<p class="caution">
+<b>Bug note:</b>
+Until <a href="http://crbug.com/41024">bug 41024</a> is fixed,
+the preceding code won't work.
+</p>
+
<p>If the extension attempts to use a security origin other than itself,
say http://www.google.com,
the browser disallows it