Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(453)

Side by Side Diff: chrome/common/extensions/docs/api_other.html

Issue 333027: Fix a bug in the WebKit code sample (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/common/extensions/docs/static/api_other.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 <dd> 245 <dd>
246 Because Google Chrome is built upon WebKit, 246 Because Google Chrome is built upon WebKit,
247 your extensions can use WebKit APIs. 247 your extensions can use WebKit APIs.
248 Especially useful are the experimental CSS features 248 Especially useful are the experimental CSS features
249 such as filters, animations, and transformations. 249 such as filters, animations, and transformations.
250 Here's an example of using WebKit styles 250 Here's an example of using WebKit styles
251 to make the UI spin: 251 to make the UI spin:
252 <pre>&lt;style&gt; 252 <pre>&lt;style&gt;
253 div:hover { 253 div:hover {
254 -webkit-transform: rotate(360deg); 254 -webkit-transform: rotate(360deg);
255 -webkit-transition: all sl ease-out; 255 -webkit-transition: all 1s ease-out;
256 } 256 }
257 &lt;/style&gt; 257 &lt;/style&gt;
258 </pre> 258 </pre>
259 <p class="comment">[PENDING: link to complete list of webkit apis]</p> 259 <p class="comment">[PENDING: link to complete list of webkit apis]</p>
260 </dd> 260 </dd>
261 <dt><strong> V8 APIs</strong>, such as<strong> JSON </strong></dt> 261 <dt><strong> V8 APIs</strong>, such as<strong> JSON </strong></dt>
262 <dd> Because JSON is in V8, you don't need to include a JSON library to use JSON functions. <span class="comment">[PENDING: what other APIs are in v8? link to c omplete list]</span></dd> 262 <dd> Because JSON is in V8, you don't need to include a JSON library to use JSON functions. <span class="comment">[PENDING: what other APIs are in v8? link to c omplete list]</span></dd>
263 <dt> <strong>HTML5</strong> <strong>APIs</strong>, such as <strong>localStorage< /strong></dt> 263 <dt> <strong>HTML5</strong> <strong>APIs</strong>, such as <strong>localStorage< /strong></dt>
264 <dd> HTML5 is still being defined and implemented, 264 <dd> HTML5 is still being defined and implemented,
265 but Google Chrome already supports local storage, 265 but Google Chrome already supports local storage,
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 urchinTracker(); 451 urchinTracker();
452 } 452 }
453 catch(e) {/* urchinTracker not available. */} 453 catch(e) {/* urchinTracker not available. */}
454 </script> 454 </script>
455 <!-- end analytics --> 455 <!-- end analytics -->
456 456
457 </div> <!-- /pageFooter --> 457 </div> <!-- /pageFooter -->
458 </div> <!-- /container --> 458 </div> <!-- /container -->
459 </body></html> 459 </body></html>
460 460
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/static/api_other.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698