Index: chrome/common/extensions/docs/templates/articles/faq.html |
diff --git a/chrome/common/extensions/docs/templates/articles/faq.html b/chrome/common/extensions/docs/templates/articles/faq.html |
index 0539c5677b057281754476ad4d91f6d2b4f5804a..a4c77e3e1d542b8a3892dd5e59c90b5db5a1f3be 100644 |
--- a/chrome/common/extensions/docs/templates/articles/faq.html |
+++ b/chrome/common/extensions/docs/templates/articles/faq.html |
@@ -13,7 +13,7 @@ try the |
</p> |
<div id="faq-TOC"> |
- <h4>General</h4> |
+ <h4 id="general">General</h4> |
<ul> |
<li><a href="#faq-gen-01">What are Google Chrome Extensions?</a></li> |
<li><a href="#faq-dev-01">How can I set up Chrome for extension development?</a></li> |
@@ -21,7 +21,7 @@ try the |
<li><a href="#faq-gen-03">Are extensions fetched from the web every time the browser is loaded?</a></li> |
<li><a href="#faq-dev-14">How do I determine which version of Chrome is deployed to which channel?</a></li> |
</ul> |
- <h4>Capabilities</h4> |
+ <h4 id="capabilities">Capabilities</h4> |
<ul> |
<li><a href="#faq-dev-02">Can extensions make cross-domain Ajax requests?</a></li> |
<li><a href="#faq-dev-03">Can extensions use 3rd party web services?</a></li> |
@@ -38,7 +38,7 @@ try the |
<li><a href="#faq-persist-popups">Can extensions keep popups open after the user clicks away from them?</a></li> |
<li><a href="#faq-lifecycle-events">Can extensions be notified when they are installed/uninstalled?</a></li> |
</ul> |
- <h4>Development</h4> |
+ <h4 id="development">Development</h4> |
<ul> |
<li><a href="#faq-building-ui">How do I build a UI for my extension?</a> |
<li><a href="#faq-dev-09">How much data can I store in localStorage?</a></li> |
@@ -48,14 +48,14 @@ try the |
<li><a href="#faq-management">Why does the management API not fire events when my extension is installed/uninstalled?</a></li> |
<li><a href="#faq-firstrun">How can an extension determine whether it is running for the first time?</a></li> |
</ul> |
- <h4>Features and bugs</h4> |
+ <h4 id="features">Features and bugs</h4> |
<ul> |
<li><a href="#faq-fea-01">I think I've found a bug! How do I make sure it gets fixed?</a></li> |
<li><a href="#faq-fea-02">I have a feature request! How can I report it?</a></li> |
</ul> |
</div> |
-<h2>General</h2> |
+<h2 id="general2">General</h2> |
<h3 id="faq-gen-01">What are Google Chrome Extensions?</h3> |
<p> |
@@ -149,7 +149,7 @@ cros,beta,#.#.###.#,#.#.###.#,mm/dd/yy,mm/dd/yy,#####,#####,#####</pre> |
</p> |
-<h2>Capabilities</h2> |
+<h2 id="capabilities2">Capabilities</h2> |
<h3 id="faq-dev-02">Can extensions make cross-domain Ajax requests?</h3> |
<p> |
@@ -283,7 +283,7 @@ cros,beta,#.#.###.#,#.#.###.#,mm/dd/yy,mm/dd/yy,#####,#####,#####</pre> |
</p> |
-<h2>Development</h2> |
+<h2 id="development2">Development</h2> |
<h3 id="faq-building-ui">How do I build a UI for my extension?</h3> |
@@ -357,7 +357,7 @@ cros,beta,#.#.###.#,#.#.###.#,mm/dd/yy,mm/dd/yy,#####,#####,#####</pre> |
event. See <a href="#faq-lifecycle-events">this FAQ entry</a>. |
</p> |
-<h2>Features and bugs</h2> |
+<h2 id="features2">Features and bugs</h2> |
<h3 id="faq-fea-01">I think I've found a bug! How do I make sure it gets |