js
45.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- Generated from data/head.php, ../../smarty/{head.tpl} -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Javascript Interfaces Current Status - W3C</title>
<link rel="stylesheet" href="/2008/site/css/minimum" type="text/css" media="handheld, all" />
<style type="text/css" media="print, screen and (min-width: 481px)" xml:space="preserve">
@import url("/2008/site/css/advanced");</style>
<link href="/2008/site/css/minimum" rel="stylesheet" type="text/css" media="handheld, only screen and (max-device-width: 480px)" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="/2008/site/css/print" type="text/css" media="print" />
<link rel="shortcut icon" href="/2008/site/images/favicon.ico" type="image/x-icon" />
</head>
<body id="www-w3-org" class="w3c_public">
<div id="w3c_container">
<!-- Generated from data/mast.php, ../../smarty/{mast.tpl} -->
<div id="w3c_mast">
<!-- #w3c_mast / Page top header -->
<h1 class="logo"><a tabindex="2" accesskey="1" href="/"><img src="/2008/site/images/logo-w3c-mobile-lg" width="90" height="53" alt="W3C" /></a> <span class="alt-logo">W3C</span> </h1>
<div id="w3c_nav">
<!-- Search form and media selection -->
<form action="/Help/search" method="get" enctype="application/x-www-form-urlencoded">
<div class="w3c_sec_nav">
<!-- -->
</div>
<ul class="main_nav">
<li class="first-item"><a href="/standards/">Standards</a> </li>
<li><a href="/participate/">Participate</a> </li>
<li><a href="/Consortium/membership">Membership</a> </li>
<li class="last-item"><a href="/Consortium/">About W3C</a> </li>
<li class="search-item">
<div id="search-form">
<input tabindex="3" class="text" name="q" value="" title="Search" type="text" /> <button id="search-submit" name="search-submit" type="submit"><img class="submit" src="/2008/site/images/search-button" alt="Search" width="21" height="17" /></button> </div>
</li>
</ul>
</form>
</div>
<!-- /end #w3c_nav -->
</div>
<!-- /end #w3c_mast -->
<div id="w3c_main">
<!-- Generated from data/crumbs.php, ../../smarty/{crumbs.tpl} -->
<div id="w3c_logo_shadow" class="w3c_leftCol">
<img height="32" alt="" src="/2008/site/images/logo-shadow" /> </div>
<div class="w3c_leftCol"><h2 class="offscreen">Site Navigation</h2>
<br /></div>
<div class="w3c_mainCol">
<div id="w3c_crumbs">
<div id="w3c_crumbs_frame">
<ul class="bct"> <!-- .bct / Breadcrumbs -->
<li class="skip"><a tabindex="1" accesskey="2" title="Skip to content (e.g., when browsing via audio)" href="#w3c_content_body">Skip</a></li>
<li><a href="/">W3C</a> <span class="cr">»</span> </li>
<li><a href="/standards/">Standards</a> <span class="cr">»</span> </li>
<li><a href="/TR/">All Standards and Drafts</a> <span class="cr">»</span> </li>
<li class="current">Javascript Interfaces Current Status</li>
</ul>
</div>
</div>
<h1 class="title">Javascript Interfaces Current Status</h1>
<ul class="w3c_toc">
<li>
<a href="#completed">completed work</a>
— including <a href="#stds">standards</a>
<span class="bullet">• </span>
</li>
<li>
<a href="#drafts">drafts</a>
<span class="bullet">• </span>
</li>
<li>
<a href="#obsolete">obsolete specifications</a>
</li>
</ul>
<div id="w3c_content_body">
<div id="w3c_generated_status">
<p id="w3c_toggle_include" class="default_open intro tPadding">This page summarizes the relationships among specifications, whether they are finished standards or drafts. Below, each title
links to the most recent version of a document.
For related introductory information, see: <a href="http://www.w3.org/standards/webdesign/script">Scripting and Ajax</a>.</p>
<h2 id="completed">Completed Work</h2>
<p>
<a href="/TR/tr-technology-stds">W3C Recommendations</a> have
been reviewed by W3C Members, by software developers, and by other
W3C groups and interested parties, and are endorsed by the
Director as Web Standards. Learn more about the <a href="/Consortium/Process/tr#rec-advance">W3C Recommendation
Track</a>.</p>
<p>
<a href="/2005/10/Process-20051014/tr.html#q75">Group Notes</a> are <em>not</em> standards and do not
have the same level of W3C endorsement.</p>
<h3 id="stds">Standards</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr class="lastRow">
<td class="table_datecol">
<a href="../history/ElementTraversal" title="Element Traversal Specification publication history">2008-12-22</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is REC" href="http://www.w3.org/TR/2008/REC-ElementTraversal-20081222/">Element Traversal Specification</a>
</h4>
<p class="rec_support_data">
<a href="http://www.w3.org/2003/03/Translations/byTechnology?technology=ElementTraversal">translations</a>
·
<a href="http://www.w3.org/2008/12/REC-ElementTraversal-20081222-errata.html">errata</a>
</p>
<div class="expand_description">
<p>This specification defines the ElementTraversal interface, which allows script navigation of the elements of a DOM tree, excluding all other nodes in the DOM, such as text nodes.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<h3 id="notes">Group Notes</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr>
<td class="table_datecol">
<a href="../history/dap-api-reqs" title="Device APIs Requirements publication history">2009-10-15</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is NOTE" href="http://www.w3.org/TR/2009/NOTE-dap-api-reqs-20091015/">Device APIs Requirements</a>
</h4>
<div class="expand_description">
<p>These are the requirements intended to be met in the development of client-side APIs that enable the creation of Web Applications and Web Widgets that interact with devices services such as Calendar, Contacts, Camera, etc.</p>
</div>
</td>
</tr>
<tr class="lastRow">
<td>
<a href="../history/offline-webapps" title="Offline Web Applications publication history">2008-05-30</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is NOTE" href="http://www.w3.org/TR/2008/NOTE-offline-webapps-20080530/">Offline Web Applications</a>
</h4>
<div class="expand_description">
<p>
Offline Web Applications highlights the features in HTML 5 that address the challenge of building Web applications that work while offline.
</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<h2 id="drafts">Drafts</h2>
<p>Below are draft documents:
<a href="/2005/10/Process-20051014/tr.html#RecsCR">Candidate Recommendations</a>, <a href="/2005/10/Process-20051014/tr.html#last-call">Last Call Drafts</a>, <a href="/2005/10/Process-20051014/tr.html#RecsWD">other Working Drafts</a>.
Some of these may become Web Standards through the <a href="/Consortium/Process/tr#rec-advance">W3C Recommendation Track
process</a>. Others may be published as Group Notes or
become obsolete specifications.</p>
<h3 id="cr">Candidate Recommendations</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr>
<td class="table_datecol">
<a href="../history/touch-events" title="Touch Events version 1 publication history">2011-12-15</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-touch-events-20111215/">Touch Events version 1</a>
</h4>
<div class="expand_description">
<p>This specification defines low-level events representing points of contact with a touch-sensitive surface.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/widgets-apis" title="Widget Interface publication history">2011-12-13</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-widgets-apis-20111213/">Widget Interface</a>
</h4>
<div class="expand_description">
<p>This specification defines an application programming interface (API) for widgets that provides, amongst other things, functionality for accessing a widget’s metadata and persistently storing data.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/websockets" title="The WebSocket API publication history">2011-12-08</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-websockets-20111208/">The WebSocket API</a>
</h4>
<div class="expand_description">
<p>This specification defines an API that enables Web pages to use the Web Sockets protocol for two-way communication with a remote host.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/webstorage" title="Web Storage publication history">2011-12-08</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-webstorage-20111208/">Web Storage</a>
</h4>
<div class="expand_description">
<p>This specification defines an API for persistent data storage of key-value pair data in Web clients.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/mediaont-api-1.0" title="API for Media Resources 1.0 publication history">2011-11-22</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-mediaont-api-1.0-20111122/">API for Media Resources 1.0</a>
</h4>
<div class="expand_description">
<p>This specification defines a client-side API to access metadata information related to media resources on the Web.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/progress-events" title="Progress Events publication history">2011-09-22</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-progress-events-20110922/">Progress Events</a>
</h4>
<div class="expand_description">
<p>This document describes event types that can be used for monitoring the
progress of an operation. It is primarily intended for contexts such as data
transfer operations specified by XMLHTTPRequest [XHR], or
Media Access Events [MAE].</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/navigation-timing" title="Navigation Timing publication history">2011-06-02</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2011/CR-navigation-timing-20110602/">Navigation Timing</a>
</h4>
<div class="expand_description">
<p>This document provides an interface for web applications to access
timing information related to navigation and elements.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/geolocation-API" title="Geolocation API Specification publication history">2010-09-07</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2010/CR-geolocation-API-20100907/">Geolocation API Specification</a>
</h4>
<div class="expand_description">
<p>This specification defines an API that provides Web pages scripted access to geographical location information associated with the hosting device.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/XMLHttpRequest" title="XMLHttpRequest publication history">2010-08-03</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2010/CR-XMLHttpRequest-20100803/">XMLHttpRequest</a>
</h4>
<div class="expand_description">
<p>The XMLHttpRequest specification defines an API that provides scripted client functionality for transferring data between a client and a server, one of the core components of “AJAX”.</p>
</div>
</td>
</tr>
<tr class="lastRow">
<td>
<a href="../history/selectors-api" title="Selectors API Level 1 publication history">2009-12-22</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is CR" href="http://www.w3.org/TR/2009/CR-selectors-api-20091222/">Selectors API Level 1</a>
</h4>
<div class="expand_description">
<p>Selectors, which are widely used in CSS, are patterns that match
against elements in a tree structure [SELECT][CSS21]. The Selectors API
specification defines methods for retrieving <code>Element</code>
nodes from the <abbr>DOM</abbr> by
matching against a group of selectors. It is often desirable to
perform DOM operations on a specific set of elements in a document.
These methods simplify the process of acquiring specific elements,
especially compared with the more verbose techniques defined and
used in the past.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<h3 id="lcwd">Last Call Drafts</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr>
<td class="table_datecol">
<a href="../history/orientation-event" title="DeviceOrientation Event Specification publication history">2011-12-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-orientation-event-20111201/">DeviceOrientation Event Specification</a>
</h4>
<div class="expand_description">
<p>
This specification defines several new DOM event types that provide information about the physical orientation and motion of a hosting device.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/geolocation-API-v2" title="Geolocation API Specification Level 2 publication history">2011-12-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-geolocation-API-v2-20111201/">Geolocation API Specification Level 2</a>
</h4>
<div class="expand_description">
<p>This specification adds the ability to retrieve a civic address,
rather than coordinates, to the Geolocation API.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/battery-status" title="Battery Status API publication history">2011-11-29</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-battery-status-20111129/">Battery Status API</a>
</h4>
<div class="expand_description">
<p>
This specification defines a new DOM event type that provides information about the battery status of the hosting device and associated auxiliary devices.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/WebIDL" title="Web IDL publication history">2011-09-27</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-WebIDL-20110927/">Web IDL</a>
</h4>
<div class="expand_description">
<p>This document defines an interface definition language, Web IDL, that can be used to describe interfaces that are intended to be implemented in web browsers. </p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/workers" title="Web Workers publication history">2011-09-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-workers-20110901/">Web Workers</a>
</h4>
<div class="expand_description">
<p>This specification defines an API that allows Web application authors to spawn background workers running scripts in parallel to their main page. This allows for thread-like operation with message-passing as the coordination mechanism.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/performance-timeline" title="Performance Timeline publication history">2011-09-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-performance-timeline-20110901/">Performance Timeline</a>
</h4>
<div class="expand_description">
<p>
This specification defines an interface for web applications to access
timing information related to navigation and elements. It is used by
other specifications, like User Timing.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/user-timing" title="User Timing publication history">2011-09-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-user-timing-20110901/">User Timing</a>
</h4>
<div class="expand_description">
<p>
This specification defines an interface to help web developers measure
the performance of their applications by giving them access to high
precision timestamps.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/resource-timing" title="Resource Timing publication history">2011-08-11</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-resource-timing-20110811/">Resource Timing</a>
</h4>
<div class="expand_description">
<p>This specification defines an interface for web applications to access
timing information related to HTML elements.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/page-visibility" title="Page Visibility publication history">2011-07-21</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-page-visibility-20110721/">Page Visibility</a>
</h4>
<div class="expand_description">
<p>
This specification defines a means for site developers to
programmatically determine the current visibility state of the page in
order to develop power and CPU efficient web applications.
</p>
</div>
</td>
</tr>
<tr class="lastRow">
<td>
<a href="../history/contacts-api" title="Contacts API publication history">2011-06-16</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is LCWD" href="http://www.w3.org/TR/2011/WD-contacts-api-20110616/">Contacts API</a>
</h4>
<div class="expand_description">
<p>This specification defines an API that provides
access to a user’s unified address book.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<h3 id="wd">Other Working Drafts</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr>
<td class="table_datecol">
<a href="../history/audioproc" title="Audio Processing API publication history">2011-12-15</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-audioproc-20111215/">Audio Processing API</a>
</h4>
<div class="expand_description">
<p>This specification introduces and compares two client-side APIs
for processing and synthesizing real-time audio streams in the browser.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/webaudio" title="Web Audio API publication history">2011-12-15</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-webaudio-20111215/">Web Audio API</a>
</h4>
<div class="expand_description">
<p>This specification describes a high-level JavaScript API for
processing and synthesizing audio in web applications. The primary
paradigm is of an audio routing graph, where a number of AudioNode
objects are connected together to define the overall audio rendering.
The actual processing will primarily take place in the underlying
implementation (typically optimized Assembly / C / C++ code), but
direct JavaScript processing and synthesis is also supported.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/streamproc" title="MediaStream Processing API publication history">2011-12-15</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-streamproc-20111215/">MediaStream Processing API</a>
</h4>
<div class="expand_description">
<p>This proposal makes HTML Streams the foundation for integrated
Web media processing by creating a mixing and effects processing
API for HTML Streams.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/IndexedDB" title="Indexed Database API publication history">2011-12-06</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-IndexedDB-20111206/">Indexed Database API</a>
</h4>
<div class="expand_description">
<p>This document defines APIs for a database of records holding simple values and hierarchical objects.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/vibration" title="Vibration API publication history">2011-11-17</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-vibration-20111117/">Vibration API</a>
</h4>
<div class="expand_description">
<p>An API to control the device's vibrator.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/webrtc" title="WebRTC 1.0: Real-time Communication Between Browsers publication history">2011-10-27</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-webrtc-20111027/">WebRTC 1.0: Real-time Communication Between Browsers</a>
</h4>
<div class="expand_description">
<p>This document defines a set of APIs that allow local media,
including audio and video, to be requested from a platform, media
to be sent over the network to another browser or device implementing
the appropriate set of real-time protocols, and media received from
another browser or device to be processed and displayed locally.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/eventsource" title="Server-Sent Events publication history">2011-10-20</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-eventsource-20111020/">Server-Sent Events</a>
</h4>
<div class="expand_description">
<p>This specification defines an API for opening an HTTP connection for receiving push notifications from a server in the form of DOM events.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/FileAPI" title="File API publication history">2011-10-20</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-FileAPI-20111020/">File API</a>
</h4>
<div class="expand_description">
<p>This specification provides an API for representing file objects in web applications, as well as programmatically selecting them and accessing their data.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/webmessaging" title="HTML5 Web Messaging publication history">2011-10-20</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-webmessaging-20111020/">HTML5 Web Messaging</a>
</h4>
<div class="expand_description">
<p>This specification defines two mechanisms for communicating between browsing contexts in HTML document.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/XMLHttpRequest2" title="XMLHttpRequest Level 2 publication history">2011-08-16</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-XMLHttpRequest2-20110816/">XMLHttpRequest Level 2</a>
</h4>
<div class="expand_description">
<p>The XMLHttpRequest Level 2 specification enhances the XMLHttpRequest object with new features, such as cross-origin requests, progress events, and the handling of byte streams for both sending and receiving. </p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/app-privacy-bp" title="Web Application Privacy Best Practices publication history">2011-08-04</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-app-privacy-bp-20110804/">Web Application Privacy Best Practices</a>
</h4>
<div class="expand_description">
<p>
This document describes privacy best practices for web applications, including those that might use device APIs.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/netinfo-api" title="The Network Information API publication history">2011-06-07</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-netinfo-api-20110607/">The Network Information API</a>
</h4>
<div class="expand_description">
<p>
The Network Information API provides an interface for Web Applications to access the underlying network information (connection info) of the device.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/animation-timing" title="Timing control for script-based animations publication history">2011-06-02</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-animation-timing-20110602/">Timing control for script-based animations</a>
</h4>
<div class="expand_description">
<p>
This document defines an API web page authors can use to write
script-based animations where the user agent is in control of limiting
the update rate of the animation.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/rdf-interfaces" title="RDF Interfaces 1.0 publication history">2011-05-10</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/">RDF Interfaces 1.0</a>
</h4>
<div class="expand_description">
<p>This is a sample short description for this specification;
over time we will replace this description with a real one.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/file-writer-api" title="File API: Writer publication history">2011-04-19</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-file-writer-api-20110419/">File API: Writer</a>
</h4>
<div class="expand_description">
<p>This specification defines an API for writing to files from web applications.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/rdfa-api" title="RDFa API publication history">2011-04-19</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-rdfa-api-20110419/">RDFa API</a>
</h4>
<div class="expand_description">
<p>
RDFa [RDFA-CORE] enables authors to publish structured information
that is both human- and machine-readable. Concepts that have
traditionally been difficult for machines to detect, like people,
places, events, music, movies, and recipes, are now easily marked up in
Web documents. While publishing this data is vital to the growth of
Linked Data, using the information to improve the collective utility of
the Web for humankind is the true goal. To accomplish this goal, it must
be simple for Web developers to extract and utilize structured
information from a Web document. This document details such a mechanism;
an RDFa Application Programming Interface (RDFa API) that allows simple
extraction and usage of structured information from a Web document.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/file-system-api" title="File API: Directories and System publication history">2011-04-19</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-file-system-api-20110419/">File API: Directories and System</a>
</h4>
<div class="expand_description">
<p>Defines an API to navigate file system hierarchies and sandboxed sections of a user's local filesystem.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/html-media-capture" title="HTML Media Capture publication history">2011-04-14</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-html-media-capture-20110414/">HTML Media Capture</a>
</h4>
<div class="expand_description">
<p>This specification defines HTML form enhancements that provide access
to the audio, image and video capture capabilities of the device.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/messaging-api" title="The Messaging API publication history">2011-04-14</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-messaging-api-20110414/">The Messaging API</a>
</h4>
<div class="expand_description">
<p>
This specification defines an API that provides access to messaging
functionality in the device, including SMS, MMS and email.
</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/notifications" title="Web Notifications publication history">2011-03-01</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2011/WD-notifications-20110301/">Web Notifications</a>
</h4>
<div class="expand_description">
<p>This document defines an API for displaying simple notifications to the user.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/api-perms" title="Permissions for Device API Access publication history">2010-10-05</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2010/WD-api-perms-20101005/">Permissions for Device API Access</a>
</h4>
<div class="expand_description">
<p>This document identifies the permissions that are needed to use
specific client-side APIs which grant access to sensitive data and
operations.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/media-capture-api" title="The Media Capture API publication history">2010-09-28</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2010/WD-media-capture-api-20100928/">The Media Capture API</a>
</h4>
<div class="expand_description">
<p>The Media Capture API enables access to the audio, image and video capture capabilities of the device through Javascript.</p>
</div>
</td>
</tr>
<tr>
<td>
<a href="../history/system-info-api" title="The System Information API publication history">2010-02-02</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2010/WD-system-info-api-20100202/">The System Information API</a>
</h4>
<div class="expand_description">
<p>This specification defines an API to provide Web applications with access to various hardware properties of the system which they are running on, including battery status, current network bandwidth.</p>
</div>
</td>
</tr>
<tr class="lastRow">
<td>
<a href="../history/selectors-api2" title="Selectors API Level 2 publication history">2010-01-19</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is WD" href="http://www.w3.org/TR/2010/WD-selectors-api2-20100119/">Selectors API Level 2</a>
</h4>
<div class="expand_description">
<p>The Selectors API specification defines methods for retrieving Element nodes from the DOM by matching against a group of selectors (as used in CSS).</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<h2 id="obsolete">Obsolete Specifications</h2>
<p>These specifications have either been superseded by others,
or have been abandoned. They remain available for archival
purposes, but are not intended to be used.</p>
<h3 id="retired">
Retired
</h3>
<div class="data lMargin rMargin">
<table class="w3c_spec_summary_table">
<tbody>
<tr>
<td class="table_datecol">
<a href="../history/DataCache" title="Programmable HTTP Caching and Serving publication history">2011-03-29</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is RETIRED" href="http://www.w3.org/TR/2011/NOTE-DataCache-20110329/">Programmable HTTP Caching and Serving</a>
</h4>
<div class="expand_description">
<p> This document defines APIs for off-line serving of requests to HTTP resources using static and dynamic responses. It extends the function of application caches defined in HTML5.</p>
</div>
</td>
</tr>
<tr class="lastRow">
<td>
<a href="../history/webdatabase" title="Web SQL Database publication history">2010-11-18</a>
</td>
<td>
<h4 class="w3c_status_title">
<a title="status is RETIRED" href="http://www.w3.org/TR/2010/NOTE-webdatabase-20101118/">Web SQL Database</a>
</h4>
<div class="expand_description">
<p>This specification defines an API for storing data in databases that can be queried using a variant of SQL.</p>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Generated from data/footer.php, ../../smarty/{footer-block.tpl} -->
<div id="w3c_footer">
<div id="w3c_footer-inner">
<h2 class="offscreen">Footer Navigation</h2>
<div class="w3c_footer-nav">
<h3>Navigation</h3>
<ul class="footer_top_nav">
<li><a href="/">Home</a> </li>
<li><a href="/standards/">Standards</a> </li>
<li><a href="/participate/">Participate</a> </li>
<li><a href="/Consortium/membership">Membership</a> </li>
<li class="last-item"><a href="/Consortium/">About W3C</a> </li>
</ul>
</div>
<div class="w3c_footer-nav">
<h3>Contact W3C</h3>
<ul class="footer_bottom_nav">
<li><a href="/Consortium/contact">Contact</a> </li>
<li><a accesskey="0" href="/Help/">Help and FAQ</a> </li>
<li><a href="/Consortium/sponsor/">Sponsor / Donate</a> </li>
<li><a href="/Consortium/siteindex">Site Map</a> </li>
<li><address id="w3c_signature">
<a href="mailto:site-comments@w3.org">Feedback</a> (<a href="http://lists.w3.org/Archives/Public/site-comments/">archive</a>)
</address>
</li>
</ul>
</div>
<div class="w3c_footer-nav">
<h3>W3C Updates</h3>
<ul class="footer_follow_nav">
<li><a href="http://twitter.com/W3C" title="Follow W3C on Twitter"><img src="/2008/site/images/twitter-bird" alt="Twitter" width="78" height="83" class="social-icon" /> </a> <a href="http://identi.ca/w3c" title="See W3C on Identica"><img src="/2008/site/images/identica-logo" alt="Identica" width="91" height="83" class="social-icon" /> </a> </li>
</ul>
</div>
<p class="copyright">Copyright © 2012 W3C <sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym> </a>, <a href="http://www.ercim.eu/"><acronym title="European Research Consortium for Informatics and Mathematics">ERCIM</acronym>
</a>, <a href="http://www.keio.ac.jp/">Keio</a>) <a href="/Consortium/Legal/ipr-notice">Usage policies apply</a>.</p>
</div>
</div>
<!-- /end #footer -->
<!-- Generated from data/scripts.php, ../../smarty/{scripts.tpl} -->
<!-- At the bottom for performance reasons -->
<!-- Generated from data/scripts.php, ../../smarty/{scripts.tpl} -->
<!-- At the bottom for performance reasons -->
<div id="w3c_scripts">
<script type="text/javascript" src="/2008/site/js/main" xml:space="preserve">
<!-- --></script>
</div>
</body>
</html>