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

Side by Side Diff: documentation/externs/externs.js

Issue 147079: This CL contains the the changes needed to build... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 5 months 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 | « documentation/build_docs.py ('k') | documentation/externs/o3d-extra-externs.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2006 Google Inc.
2 // All Rights Reserved.
3
4 // Common external variables when compiling
5 // DEPRECATED: please use the files in //javascript/externs/...
6
7 // JavaScript objects
8 /**
9 * @constructor
10 * @param {*} var_args
11 * @return {!Array}
12 */
13 function Array(var_args) {}
14 /**
15 * @constructor
16 * @param {*} opt_value
17 * @return {boolean}
18 */
19 function Boolean(opt_value) {}
20 /**
21 * @constructor
22 * @return {string}
23 */
24 function Date(opt_yr_num, opt_mo_num, opt_day_num, opt_hr_num, opt_min_num,
25 opt_sec_num, opt_ms_num) {}
26 /**
27 * @constructor
28 * @param {*} opt_message
29 * @param {*} opt_file
30 * @param {*} opt_line
31 * @return {!Error}
32 */
33 function Error(opt_message, opt_file, opt_line) {}
34 /**
35 * @constructor
36 * @param {*} var_args
37 */
38 function Function(var_args) {}
39 /**
40 * @constructor
41 * @param {*} opt_value
42 * @return {number}
43 */
44 function Number(opt_value) {}
45 /**
46 * @constructor
47 * @param {*} opt_value
48 */
49 function Object(opt_value) {}
50 /**
51 * @constructor
52 * @param {*} opt_pattern
53 * @param {*} opt_flags
54 * @return {!RegExp}
55 */
56 function RegExp(opt_pattern, opt_flags) {}
57 /**
58 * @constructor
59 * @param {*} opt_str
60 * @return {string}
61 */
62 function String(opt_str) {}
63
64 // For IE, returns an object representing key-value pairs for all the global
65 // variables prefixed with str, e.g. test*
66 function RuntimeObject(opt_str) {}
67
68 /** @constructor */
69 function Arguments() {}
70
71 // JavaScript functions
72 // escape() and unescape() should only be used in browser where
73 // encode/decodeURIComponent are not present, as the latter
74 // handle fancy Unicode characters.
75 function decodeURI(x) {}
76 function decodeURIComponent(x) {}
77 function encodeURI(x) {}
78 function encodeURIComponent(x) {}
79 function escape(x) {} // Caution: Read comments above regarding
80 function unescape(x) {} // use of escape and unescape.
81 function isFinite(x) {}
82 function isNaN(x) {}
83 function parseFloat(x) {}
84 // base is required. If you really want to parse octal or hex based on the
85 // leader, then pass undefind as the base.
86 function parseInt(x, base) {}
87 function eval(x) {}
88
89 // JavaScript builtins
90 var arguments;
91 var Infinity;
92 var Math;
93 var NaN;
94 var undefined;
95
96 var builtins = {};
97 builtins.arguments; // deprecated
98 builtins.arity; // deprecated
99 builtins.caller;
100 builtins.constructor;
101 builtins.length;
102 builtins.name;
103 builtins.prototype;
104
105 // Window properties
106 // Only common properties are here, others such as open() and setTimeout()
107 // should be used with an explicit window object
108
109 /**
110 * @constructor
111 * @extends {EventTarget}
112 */
113 function Window() {}
114
115 var window;
116 var top;
117 var navigator;
118 var document;
119 var screen;
120 var self;
121 function alert(x) {}
122 function confirm(x) {}
123 function prompt(x, opt_value) {}
124
125 // Magic functions for Firefox's LiveConnect.
126 // We'll probably never use these in practice. But redefining them
127 // will fire up the JVM, so we want to reserve the symbol names.
128 var JavaArray;
129 var JavaClass;
130 var JavaMember;
131 var JavaObject;
132 var JavaPackage;
133 var Packages;
134 var java;
135 var netscape;
136 var sun;
137
138 // Browser objects
139 /** @constructor */ function ActiveXObject(name, opt_location) {}
140 /** @constructor */ function CSSStyleDeclaration() {}
141 /** @constructor */ function StyleSheet() {}
142 /** @constructor */ function DOMParser() {}
143 // Image can't be used as a function
144 /**
145 * @constructor
146 * @extends {EventTarget}
147 */
148 function Image(opt_width, opt_height) {}
149 /** @constructor */ function XMLHttpRequest() {}
150 /** @constructor */ function XMLSerializer() {}
151 /**
152 * @noalias
153 * @constructor
154 */
155 function XPathResult() {}
156 /** @constructor */ function XSLTProcessor() {}
157 /** @constructor */ function Range() {}
158 /** @constructor */ function NodeFilter() {}
159 /** @constructor */ function Option(opt_text, opt_value, opt_defaultSelected,
160 opt_selected) {}
161 var opera;
162
163 // Browser types for type checking
164 // see http://www.w3.org/TR/DOM-Level-2-HTML/ecma-script-binding.html
165
166 // TODO(nicksantos): Rewrite all the DOM interfaces as interfaces, instead
167 // of kluding them as an inheritance hierarchy.
168
169 /**
170 * @constructor
171 * @extends {Node}
172 */
173 function Document() {}
174
175 /**
176 * @constructor
177 * @extends {Node}
178 */
179 function DocumentFragment() {}
180
181 /**
182 * @constructor
183 * @extends {Node}
184 */
185 function DocumentType() {}
186
187 /**
188 * @constructor
189 * @extends {EventTarget}
190 */
191 function Node() {}
192
193 /** @constructor */ function NodeList() {}
194
195 /**
196 * @constructor
197 * @extends {Node}
198 */
199 function Element() {}
200
201 /**
202 * @constructor
203 * @extends {Node}
204 */
205 function CharacterData() {}
206
207 /**
208 * @constructor
209 * @extends {CharacterData}
210 */
211 function Text() {}
212
213 /** @constructor */ function Event() {}
214 /** @constructor */ function EventTarget() {}
215
216 /**
217 * @constructor
218 * @extends {HTMLElement}
219 */
220 function HTMLAnchorElement() {}
221
222 /**
223 * @constructor
224 * @extends {HTMLElement}
225 */
226 function HTMLAppletElement() {}
227
228 /**
229 * @constructor
230 * @extends {HTMLElement}
231 */
232 function HTMLAreaElement() {}
233
234 /**
235 * @constructor
236 * @extends {HTMLElement}
237 */
238 function HTMLBaseElement() {}
239
240 /**
241 * @constructor
242 * @extends {HTMLElement}
243 */
244 function HTMLBaseFontElement() {}
245
246 /**
247 * @constructor
248 * @extends {HTMLElement}
249 */
250 function HTMLBlockquoteElement() {}
251
252 /**
253 * @constructor
254 * @extends {HTMLElement}
255 */
256 function HTMLBodyElement() {}
257
258 /**
259 * @constructor
260 * @extends {HTMLElement}
261 */
262 function HTMLBRElement() {}
263
264 /**
265 * @constructor
266 * @extends {HTMLElement}
267 */
268 function HTMLButtonElement() {}
269
270 /**
271 * @constructor
272 */
273 function HTMLCollection() {}
274
275 /**
276 * @constructor
277 * @extends {HTMLElement}
278 */
279 function HTMLDirectoryElement() {}
280
281 /**
282 * @constructor
283 * @extends {HTMLElement}
284 */
285 function HTMLDivElement() {}
286
287 /**
288 * @constructor
289 * @extends {HTMLElement}
290 */
291 function HTMLDListElement() {}
292
293 /**
294 * @constructor
295 * @extends {Document}
296 */
297 function HTMLDocument() {}
298
299 /**
300 * @constructor
301 * @extends {Element}
302 */
303 function HTMLElement() {}
304
305 /**
306 * @constructor
307 * @extends {HTMLElement}
308 */
309 function HTMLFieldSetElement() {}
310
311 /**
312 * @constructor
313 * @extends {HTMLElement}
314 */
315 function HTMLFontElement() {}
316
317 /**
318 * @constructor
319 * @extends {HTMLElement}
320 */
321 function HTMLFormElement() {}
322
323 /**
324 * @constructor
325 * @extends {HTMLElement}
326 */
327 function HTMLFrameElement() {}
328
329 /**
330 * @constructor
331 * @extends {HTMLElement}
332 */
333 function HTMLFrameSetElement() {}
334
335 /**
336 * @constructor
337 * @extends {HTMLElement}
338 */
339 function HTMLHeadElement() {}
340
341 /**
342 * @constructor
343 * @extends {HTMLElement}
344 */
345 function HTMLHeadingElement() {}
346
347 /**
348 * @constructor
349 * @extends {HTMLElement}
350 */
351 function HTMLHRElement() {}
352
353 /**
354 * @constructor
355 * @extends {HTMLElement}
356 */
357 function HTMLHtmlElement() {}
358
359 /**
360 * @constructor
361 * @extends {HTMLElement}
362 */
363 function HTMLIFrameElement() {}
364
365 /**
366 * @constructor
367 * @extends {HTMLElement}
368 */
369 function HTMLImageElement() {}
370
371 /**
372 * @constructor
373 * @extends {HTMLElement}
374 */
375 function HTMLInputElement() {}
376
377 /**
378 * @constructor
379 * @extends {HTMLElement}
380 */
381 function HTMLIsIndexElement() {}
382
383 /**
384 * @constructor
385 * @extends {HTMLElement}
386 */
387 function HTMLLabelElement() {}
388
389 /**
390 * @constructor
391 * @extends {HTMLElement}
392 */
393 function HTMLLayerElement() {}
394
395 /**
396 * @constructor
397 * @extends {HTMLElement}
398 */
399 function HTMLLegendElement() {}
400
401 /**
402 * @constructor
403 * @extends {HTMLElement}
404 */
405 function HTMLLIElement() {}
406
407 /**
408 * @constructor
409 * @extends {HTMLElement}
410 */
411 function HTMLLinkElement() {}
412
413 /**
414 * @constructor
415 * @extends {HTMLElement}
416 */
417 function HTMLMapElement() {}
418
419 /**
420 * @constructor
421 * @extends {HTMLElement}
422 */
423 function HTMLMenuElement() {}
424
425 /**
426 * @constructor
427 * @extends {HTMLElement}
428 */
429 function HTMLMetaElement() {}
430
431 /**
432 * @constructor
433 * @extends {HTMLElement}
434 */
435 function HTMLModElement() {}
436
437 /**
438 * @constructor
439 * @extends {HTMLElement}
440 */
441 function HTMLObjectElement() {}
442
443 /**
444 * @constructor
445 * @extends {HTMLElement}
446 */
447 function HTMLOListElement() {}
448
449 /**
450 * @constructor
451 * @extends {HTMLElement}
452 */
453 function HTMLOptGroupElement() {}
454
455 /**
456 * @constructor
457 * @extends {HTMLElement}
458 */
459 function HTMLOptionElement() {}
460
461 /**
462 * @constructor
463 */
464 function HTMLOptionsCollection() {}
465
466 /**
467 * @constructor
468 * @extends {HTMLElement}
469 */
470 function HTMLParagraphElement() {}
471
472 /**
473 * @constructor
474 * @extends {HTMLElement}
475 */
476 function HTMLParamElement() {}
477
478 /**
479 * @constructor
480 * @extends {HTMLElement}
481 */
482 function HTMLPreElement() {}
483
484 /**
485 * @constructor
486 * @extends {HTMLElement}
487 */
488 function HTMLQuoteElement() {}
489
490 /**
491 * @constructor
492 * @extends {HTMLElement}
493 */
494 function HTMLScriptElement() {}
495
496 /**
497 * @constructor
498 * @extends {HTMLElement}
499 */
500 function HTMLSelectElement() {}
501
502 /**
503 * @constructor
504 * @extends {HTMLElement}
505 */
506 function HTMLSpanElement() {}
507
508 /**
509 * @constructor
510 * @extends {HTMLElement}
511 */
512 function HTMLStyleElement() {}
513
514 /**
515 * @constructor
516 * @extends {HTMLElement}
517 */
518 function HTMLTableCaptionElement() {}
519
520 /**
521 * @constructor
522 * @extends {HTMLElement}
523 */
524 function HTMLTableCellElement() {}
525
526 /**
527 * @constructor
528 * @extends {HTMLElement}
529 */
530 function HTMLTableColElement() {}
531
532 /**
533 * @constructor
534 * @extends {HTMLElement}
535 */
536 function HTMLTableElement() {}
537
538 /**
539 * @constructor
540 * @extends {HTMLElement}
541 */
542 function HTMLTableRowElement() {}
543
544 /**
545 * @constructor
546 * @extends {HTMLElement}
547 */
548 function HTMLTableSectionElement() {}
549
550 /**
551 * @constructor
552 * @extends {HTMLElement}
553 */
554 function HTMLTextAreaElement() {}
555
556 /**
557 * @constructor
558 * @extends {HTMLElement}
559 */
560 function HTMLTitleElement() {}
561
562 /**
563 * @constructor
564 * @extends {HTMLElement}
565 */
566 function HTMLUListElement() {}
567
568 // Gecko Selection interface
569 /** @constructor */ function Selection() {}
570
571 // IE Range interface
572 /** @constructor */ function TextRange() {}
573
574 // IE Control Range interface
575 /** @constructor */ function controlRange() {}
576
577 // Safari and Firefox canvas rendering context
578 /** @constructor */ function CanvasRenderingContext2D() {}
579
580 // Browser object methods and properties
581
582 /**
583 * The postMessage method (as defined by HTML5 spec and implemented in FF3).
584 * @param {string} message
585 * @param {string} targetOrigin
586 */
587 Window.prototype.postMessage = function(message, targetOrigin) {};
588
589 /**
590 * The postMessage method (as implemented in Opera).
591 * @param {string} message
592 */
593 Document.prototype.postMessage = function(message) {};
594
595 // Below is a generic list of methods and properties defined on various
596 // browser/DOM objects. Ideally these would be defined on the appropriate
597 // prototypes (as is done above). As long as the list below is around,
598 // please keep it alphabetically sorted.
599 var methods = {};
600 methods.$1;
601 methods.$2;
602 methods.$3;
603 methods.$4;
604 methods.$5;
605 methods.$6;
606 methods.$7;
607 methods.$8;
608 methods.$9;
609 methods.ANY_TYPE;
610 methods.ANY_UNORDERED_NODE_TYPE;
611 methods.ATTRIBUTE_NODE;
612 methods.AT_TARGET;
613 methods.BOOLEAN_TYPE;
614 methods.BUBBLING_PHASE;
615 methods.CAPTURING_PHASE;
616 methods.CDATA_SECTION_NODE;
617 methods.CHARSET_RULE;
618 methods.COMMENT_NODE;
619 methods.CSS_ATTR;
620 methods.CSS_CM;
621 methods.CSS_COUNTER;
622 methods.CSS_CUSTOM;
623 methods.CSS_DEG;
624 methods.CSS_DIMENSION;
625 methods.CSS_EMS;
626 methods.CSS_EXS;
627 methods.CSS_GRAD;
628 methods.CSS_HZ;
629 methods.CSS_IDENT;
630 methods.CSS_IN;
631 methods.CSS_INHERIT;
632 methods.CSS_KHZ;
633 methods.CSS_MM;
634 methods.CSS_MS;
635 methods.CSS_NUMBER;
636 methods.CSS_PC;
637 methods.CSS_PERCENTAGE;
638 methods.CSS_PRIMITIVE_VALUE;
639 methods.CSS_PT;
640 methods.CSS_PX;
641 methods.CSS_RAD;
642 methods.CSS_RECT;
643 methods.CSS_RGBCOLOR;
644 methods.CSS_S;
645 methods.CSS_STRING;
646 methods.CSS_UNKNOWN;
647 methods.CSS_URI;
648 methods.CSS_VALUE_LIST;
649 methods.DOCUMENT_FRAGMENT_NODE;
650 methods.DOCUMENT_NODE;
651 methods.DOCUMENT_TYPE_NODE;
652 methods.DOMSTRING_SIZE_ERR;
653 methods.E;
654 methods.ELEMENT_NODE;
655 methods.END_TO_END;
656 methods.END_TO_START;
657 methods.ENTITY_NODE;
658 methods.ENTITY_REFERENCE_NODE;
659 methods.FILTER_ACCEPT;
660 methods.FILTER_REJECT;
661 methods.FILTER_SKIP;
662 methods.FIRST_ORDERED_NODE_TYPE;
663 methods.FONT_FACE_RULE;
664 methods.HIERARCHY_REQUEST_ERR;
665 methods.HORIZONTAL_AXIS;
666 methods.IMPORT_RULE;
667 methods.INDEX_SIZE_ERR;
668 methods.INFINITY;
669 methods.INUSE_ATTRIBUTE_ERR;
670 methods.INVALID_ACCESS_ERR;
671 methods.INVALID_CHARACTER_ERR;
672 methods.INVALID_MODIFICATION_ERR;
673 methods.INVALID_STATE_ERR;
674 methods.LOG10E;
675 methods.LOG2E;
676 methods.MAX_VALUE;
677 methods.MEDIA_RULE;
678 methods.MIN_VALUE;
679 methods.MODIFICATION;
680 methods.NAMESPACE_ERR;
681 methods.NEGATIVE_INFINITY;
682 methods.NOTATION_NODE;
683 methods.NOT_FOUND_ERR;
684 methods.NOT_SUPPORTED_ERR;
685 methods.NO_DATA_ALLOWED_ERR;
686 methods.NO_MODIFICATION_ALLOWED_ERR;
687 methods.NUMBER_TYPE;
688 methods.NaN;
689 methods.ORDERED_NODE_ITERATOR_TYPE;
690 methods.ORDERED_NODE_SNAPSHOT_TYPE;
691 methods.PAGE_RULE;
692 methods.PI;
693 methods.POSITIVE_INFINITY;
694 methods.PROCESSING_INSTRUCTION_NODE;
695 methods.PercentLoaded; // flash?
696 methods.REMOVAL;
697 methods.SHOW_ALL;
698 methods.SHOW_ATTRIBUTE;
699 methods.SHOW_CDATA_SECTION;
700 methods.SHOW_COMMENT;
701 methods.SHOW_DOCUMENT;
702 methods.SHOW_DOCUMENT_FRAGMENT;
703 methods.SHOW_DOCUMENT_TYPE;
704 methods.SHOW_ELEMENT;
705 methods.SHOW_ENTITY;
706 methods.SHOW_ENTITY_REFERENCE;
707 methods.SHOW_NOTATION;
708 methods.SHOW_PROCESSING_INSTRUCTION;
709 methods.SHOW_TEXT;
710 methods.START_TO_END;
711 methods.START_TO_START;
712 methods.STRING_TYPE;
713 methods.STYLE_RULE;
714 methods.SYNTAX_ERR;
715 methods.TEXT_NODE;
716 methods.TGotoLabel;
717 methods.TPlay;
718 methods.UNKNOWN_RULE;
719 methods.UNORDERED_NODE_ITERATOR_TYPE;
720 methods.UNORDERED_NODE_SNAPSHOT_TYPE;
721 methods.UNSPECIFIED_EVENT_TYPE_ERR;
722 methods.UTC;
723 methods.VERTICAL_AXIS;
724 methods.WRONG_DOCUMENT_ERR;
725 methods.aLink;
726 methods.abbr;
727 methods.abort;
728 methods.abs;
729 methods.accept;
730 methods.acceptCharset;
731 methods.acceptNode;
732 methods.accessKey;
733 methods.acos;
734 methods.action;
735 methods.activeElement;
736 methods.actualEncoding;
737 methods.add;
738 methods.addColorStop;
739 methods.addElement;
740 methods.addEventListener;
741 methods.addRange;
742 methods.addRule;
743 methods.adoptNode;
744 methods.alert;
745 methods.align;
746 methods.alinkColor;
747 methods.all;
748 methods.alt;
749 methods.altGraphKey;
750 methods.altKey;
751 methods.anchorNode;
752 methods.anchorOffset;
753 methods.anchors;
754 methods.angle;
755 methods.appCodeName;
756 methods.appName;
757 methods.appVersion;
758 methods.appendChild = function(newChild) {};
759 methods.appendData;
760 methods.appendMedium;
761 methods.applets;
762 methods.apply;
763 methods.arc;
764 methods.arcTo;
765 methods.archive;
766 methods.areas;
767 methods.arguments;
768 methods.asin;
769 methods.assign;
770 methods.async;
771 methods.atan2;
772 methods.atan;
773 methods.atob;
774 methods.attachEvent;
775 methods.attrChange;
776 methods.attrName;
777 methods.attributes;
778 methods.availHeight;
779 methods.availWidth;
780 methods.axis;
781 methods.back;
782 methods.baseNode;
783 methods.baseOffset;
784 methods.beginPath;
785 methods.bezierCurveTo;
786 methods.bgColor;
787 methods.blendTrans;
788 methods.blue;
789 methods.blur;
790 methods.body;
791 methods.boundingWidth;
792 methods.btoa;
793 methods.bubbles;
794 methods.button;
795 methods.call;
796 methods.callee;
797 methods.caller;
798 methods.cancelBubble;
799 methods.cancelable;
800 methods.canHaveChildren;
801 methods.caption;
802 methods.captureEvents;
803 methods.ceil;
804 methods.cellIndex;
805 methods.cellPadding;
806 methods.cellSpacing;
807 methods.cells;
808 methods.ch;
809 methods.chOff;
810 methods.charAt = function(index) {};
811 methods.charCode;
812 methods.charCodeAt;
813 methods.characterSet;
814 methods.charset;
815 methods.checked;
816 methods.childNodes;
817 methods.children;
818 methods.childNodes;
819 methods.cite;
820 methods.className;
821 methods.clearData;
822 methods.clearInterval = function(intervalRev) {};
823 methods.clearParameters;
824 methods.clearRect;
825 methods.clearShadow;
826 methods.clearTimeout = function(timeoutRef) {};
827 methods.click;
828 methods.clientHeight;
829 methods.clientLeft;
830 methods.clientTop;
831 methods.clientWidth;
832 methods.clientX;
833 methods.clientY;
834 methods.clipboardData;
835 methods.cloneContents;
836 methods.cloneNode = function(deepClone) {};
837 methods.cloneRange;
838 methods.close;
839 methods.closed;
840 methods.closePath;
841 methods.closed;
842 methods.code;
843 methods.codeBase;
844 methods.codeType;
845 methods.colSpan;
846 methods.collapse;
847 methods.collapseToEnd;
848 methods.collapseToStart;
849 methods.collapsed;
850 methods.color;
851 methods.color2;
852 methods.colorDepth;
853 methods.cols;
854 methods.commonAncestorContainer;
855 methods.compact;
856 methods.compareBoundaryPoints;
857 methods.compareEndPoints;
858 methods.compareDocumentPosition = function(el) {};
859 methods.compatMode;
860 methods.comparePoint;
861 methods.complete;
862 methods.componentFromPoint;
863 methods.concat;
864 methods.console;
865 methods.constructor;
866 methods.contains;
867 methods.containsNode;
868 methods.contentDocument;
869 methods.contentEditable;
870 methods.contentWindow;
871 methods.cookie;
872 methods.cookieEnabled;
873 methods.coordorigin;
874 methods.coords;
875 methods.coordsize;
876 methods.cos;
877 methods.createAttribute;
878 methods.createAttributeNS;
879 methods.createCDATASection;
880 methods.createCSSStyleSheet;
881 methods.createCaption;
882 methods.createComment;
883 methods.createControlRange;
884 methods.createContextualFragment;
885 methods.createDocument;
886 methods.createDocumentFragment;
887 methods.createDocumentType;
888 methods.createElement;
889 methods.createElementNS;
890 methods.createEntityReference;
891 methods.createEvent;
892 methods.createEventObject;
893 methods.createHTMLDocument;
894 methods.createLinearGradient;
895 methods.createNode;
896 methods.createNodeIterator;
897 methods.createNSResolver;
898 methods.createPattern;
899 methods.createPopup;
900 methods.createProcessingInstruction;
901 methods.createProcessor = function() {}; // XSLT
902 methods.createRadialGradient;
903 methods.createRange;
904 methods.createStyleSheet;
905 methods.createTFoot;
906 methods.createTHead;
907 methods.createTextNode;
908 methods.createTextRange = function() {};
909 methods.createTreeWalker;
910 methods.cssRules;
911 methods.cssText;
912 methods.cssValueType;
913 methods.ctrlKey;
914 methods.currentNode;
915 methods.currentStyle;
916 methods.currentTarget;
917 methods.data;
918 methods.dataTransfer;
919 methods.dateTime;
920 methods.declare;
921 methods.defaultCharset;
922 methods.defaultChecked;
923 methods.defaultSelected;
924 methods.defaultValue;
925 methods.defaultView;
926 methods.defer;
927 methods.deleteCaption;
928 methods.deleteCell;
929 methods.deleteContents;
930 methods.deleteData;
931 methods.deleteMedium;
932 methods.deleteRow;
933 methods.deleteRule;
934 methods.deleteTFoot;
935 methods.deleteTHead;
936 methods.description;
937 methods.designMode;
938 methods.detach;
939 methods.detachEvent;
940 methods.detail;
941 methods.dir;
942 methods.direction;
943 methods.disabled;
944 methods.dispatchEvent;
945 methods.doctype;
946 methods.document;
947 methods.documentElement;
948 methods.documentMode;
949 methods.domain;
950 methods.drawImage;
951 methods.drawImageFromRect;
952 methods.dropEffect;
953 methods.dump;
954 methods.duplicate = function() {};
955 methods.effectAllowed;
956 methods.elementFromPoint;
957 methods.elements;
958 methods.embeds;
959 methods.empty;
960 methods.enabledPlugin;
961 methods.encoding;
962 methods.enctype;
963 methods.endContainer;
964 methods.endOffset;
965 methods.entities;
966 methods.evaluate = function(
967 xpathExpression, contextNode, namespaceResolver, resultType, result) {};
968 methods.event;
969 methods.eventPhase;
970 methods.exec;
971 methods.execCommand;
972 methods.execScript;
973 methods.expand;
974 methods.expandEntityReferences;
975 methods.explicitOriginalTarget;
976 methods.exp = function(x) {};
977 methods.expn;
978 methods.extend;
979 methods.extentNode;
980 methods.extentOffset;
981 methods.extractContents;
982 methods.eval;
983 methods.every;
984 methods.face;
985 methods.fgColor;
986 methods.fileName;
987 methods.filename;
988 methods.fill = function() {};
989 methods.filled;
990 methods.fillcolor;
991 methods.fillRect;
992 methods.fillStyle;
993 methods.filter;
994 methods.filters;
995 methods.findText; // IE text ranges
996 methods.fireEvent;
997 methods.firstChild;
998 methods.floor;
999 methods.focus;
1000 methods.focusNode;
1001 methods.focusOffset;
1002 methods.forEach;
1003 methods.form;
1004 methods.forms;
1005 methods.forward;
1006 methods.frame;
1007 methods.frames;
1008 methods.frameBorder;
1009 methods.frameElement;
1010 methods.fromCharCode = function(var_args) {};
1011 methods.fromElement;
1012 methods.getAllResponseHeaders;
1013 methods.getAttribute;
1014 methods.getAttributeNS;
1015 methods.getAttributeNode;
1016 methods.getAttributeNodeNS;
1017 methods.getBookmark;
1018 methods.getBoundingClientRect = function() {};
1019 methods.getBoxObjectFor = function(node) {};
1020 methods.getComputedStyle;
1021 methods.getContext;
1022 methods.getCounterValue;
1023 methods.getData;
1024 methods.getDate;
1025 methods.getDay;
1026 methods.getElementById;
1027 methods.getElementsByName;
1028 methods.getElementsByClassName;
1029 methods.getElementsByTagName;
1030 methods.getElementsByTagNameNS;
1031 methods.getFloatValue;
1032 methods.getFullYear;
1033 methods.getHours;
1034 methods.getImageData = function(sx, sy, sw, sh) {};
1035 methods.getMatchedCSSRules;
1036 methods.getMilliseconds;
1037 methods.getMinutes;
1038 methods.getMonth;
1039 methods.getNamedItem;
1040 methods.getNamedItemNS;
1041 methods.getOverrideStyle;
1042 methods.getParameter;
1043 methods.getPropertyCSSValue;
1044 methods.getPropertyPriority;
1045 methods.getPropertyShorthand;
1046 methods.getPropertyValue;
1047 methods.getRGBColorValue;
1048 methods.getRangeAt;
1049 methods.getRectValue;
1050 methods.getResponseHeader;
1051 methods.getSeconds;
1052 methods.getSelection;
1053 methods.getStringValue;
1054 methods.getTime;
1055 methods.getTimezoneOffset;
1056 methods.getUTCDate;
1057 methods.getUTCDay;
1058 methods.getUTCFullYear;
1059 methods.getUTCHours;
1060 methods.getUTCMilliseconds;
1061 methods.getUTCMinutes;
1062 methods.getUTCMonth;
1063 methods.getUTCSeconds;
1064 methods.GetVariable; // ActiveXObject
1065 methods.global;
1066 methods.globalAlpha;
1067 methods.globalCompositeOperation;
1068 methods.go;
1069 methods.green;
1070 methods.handleEvent;
1071 methods.hasAttribute;
1072 methods.hasAttributeNS;
1073 methods.hasAttributes = function() {};
1074 methods.hasChildNodes = function() {};
1075 methods.hasFeature;
1076 methods.hasFocus;
1077 methods.hasOwnProperty;
1078 methods.hash;
1079 methods.head;
1080 methods.headers;
1081 methods.history;
1082 methods.host;
1083 methods.hostname;
1084 methods.href;
1085 methods.hreflang;
1086 methods.hspace;
1087 methods.htmlFor;
1088 methods.htmlText;
1089 methods.httpEquiv;
1090 methods.id;
1091 methods.identifier;
1092 methods.ignoreCase;
1093 methods.images;
1094 methods.implementation;
1095 methods.imports;
1096 methods.importNode;
1097 methods.importStylesheet;
1098 methods.indeterminate;
1099 methods.index;
1100 methods.indexOf;
1101 methods.initEvent;
1102 methods.initKeyboardEvent;
1103 methods.initMouseEvent;
1104 methods.initMutationEvent;
1105 methods.initUIEvent;
1106 methods.innerHTML;
1107 methods.innerHeight;
1108 methods.innerText;
1109 methods.innerWidth;
1110 methods.inputEncoding;
1111 methods.input; // XSLT
1112 methods.inRange;
1113 methods.insertAdjacentText = function(where, text) {};
1114 methods.insertBefore = function(newNode, childNode) {};
1115 methods.insertCell;
1116 methods.insertData;
1117 methods.insertNode;
1118 methods.insertRow;
1119 methods.insertRule;
1120 methods.internalSubset;
1121 methods.intersectsNode;
1122 methods.invalidIteratorState;
1123 methods.isCollapsed;
1124 methods.isContentEditable;
1125 methods.isEqual = function(textRange) {};
1126 methods.isPointInPath = function(x, y) {};
1127 methods.isMap;
1128 methods.isOpen;
1129 methods.isPointInPath = function(x, y) {};
1130 methods.isPropertyImplicit;
1131 methods.isPrototypeOf;
1132 methods.isSupported = function(feature, version) {};
1133 methods.item;
1134 methods.iterateNext = function() {};
1135 methods.javaEnabled;
1136 methods.join;
1137 methods.keyCode;
1138 methods.keyIdentifier;
1139 methods.keyLocation;
1140 methods.KhtmlOpacity;
1141 methods.label;
1142 methods.lang;
1143 methods.language;
1144 methods.lastChild;
1145 methods.lastIndex;
1146 methods.lastIndexOf;
1147 methods.lastMatch;
1148 methods.lastModified;
1149 methods.lastParen;
1150 methods.layerX;
1151 methods.layerY;
1152 methods.leftContext;
1153 methods.length;
1154 methods.line;
1155 methods.lineCap;
1156 methods.lineJoin;
1157 methods.lineNumber;
1158 methods.lineTo;
1159 methods.lineWidth;
1160 methods.linkColor;
1161 methods.links;
1162 methods.localName;
1163 methods.load; // XSLT
1164 methods.loadXML;
1165 methods.localeCompare;
1166 methods.location;
1167 methods.log;
1168 methods.longDesc;
1169 methods.map;
1170 methods.marginHeight;
1171 methods.marginWidth;
1172 methods.match;
1173 methods.max;
1174 methods.maxLength;
1175 methods.media;
1176 methods.mediaText;
1177 methods.mergeAttributes;
1178 methods.message;
1179 methods.metaKey;
1180 methods.method;
1181 methods.mimeTypes;
1182 methods.min;
1183 methods.miterLimit;
1184 methods.move = function(unit, opt_count) {};
1185 methods.moveBy;
1186 methods.moveEnd;
1187 methods.moveStart;
1188 methods.moveTo;
1189 methods.moveToElementText = function(node) {};
1190 methods.moveToPoint;
1191 methods.multiline;
1192 methods.multiple;
1193 methods.name;
1194 methods.namedItem;
1195 methods.namespaces;
1196 methods.namespaceURI;
1197 methods.naturalHeight;
1198 methods.naturalWidth;
1199 methods.navigationMode;
1200 methods.newValue;
1201 methods.nextNode;
1202 methods.nextSibling;
1203 methods.nodeType;
1204 methods.noHref;
1205 methods.noResize;
1206 methods.noShade;
1207 methods.now; // Date.now()
1208 methods.noWrap;
1209 methods.nodeName;
1210 methods.nodeType;
1211 methods.nodeValue;
1212 methods.normalize = function() {};
1213 methods.notationName;
1214 methods.notations;
1215 methods.object;
1216 methods.offsetHeight;
1217 methods.offsetLeft;
1218 methods.offsetParent;
1219 methods.offsetTop;
1220 methods.offsetWidth;
1221 methods.offsetX;
1222 methods.offsetY;
1223 methods.onabort;
1224 methods.onbeforeunload;
1225 methods.onblur;
1226 methods.onchange;
1227 methods.onclick;
1228 methods.oncontextmenu;
1229 methods.ondblclick;
1230 methods.ondrag;
1231 methods.ondragend;
1232 methods.ondragenter; // IE
1233 methods.ondragleave; // IE
1234 methods.ondragover; // IE
1235 methods.ondragstart; // IE
1236 methods.ondrop; // IE
1237 methods.onerror;
1238 methods.onfocus;
1239 methods.onkeydown;
1240 methods.onkeypress;
1241 methods.onkeyup;
1242 methods.onLine;
1243 methods.onload;
1244 methods.onmousedown;
1245 methods.onmousemove;
1246 methods.onmouseout;
1247 methods.onmouseover;
1248 methods.onmouseup;
1249 methods.onmousewheel;
1250 methods.onpropertychange;
1251 methods.onreadystatechange;
1252 methods.onresize;
1253 methods.onscroll;
1254 methods.onselect;
1255 methods.onselectend;
1256 methods.onselectstart;
1257 methods.onsubmit;
1258 methods.onunload;
1259 methods.opacity;
1260 methods.open;
1261 methods.openDialog;
1262 methods.opener;
1263 methods.opera;
1264 methods.options;
1265 methods.originalTarget;
1266 methods.outerHTML;
1267 methods.outerHeight;
1268 methods.outerText;
1269 methods.outerWidth;
1270 methods.output; // XSLT
1271 methods.overflowX;
1272 methods.overflowY;
1273 methods.overrideMimeType;
1274 methods.ownerDocument;
1275 methods.ownerElement;
1276 methods.ownerNode;
1277 methods.ownerRule;
1278 methods.owningElement;
1279 methods.pageX;
1280 methods.pageXOffset;
1281 methods.pageY;
1282 methods.pageYOffset;
1283 methods.parentElement = function() {};
1284 methods.parent;
1285 methods.parentNode;
1286 methods.parentRule;
1287 methods.parentStyleSheet;
1288 methods.parentWindow;
1289 methods.parse;
1290 methods.parseError;
1291 methods.parseFromString;
1292 methods.parseJSON;
1293 methods.pasteHTML;
1294 methods.pathname;
1295 methods.peek;
1296 methods.pixelBottom;
1297 methods.pixelDepth;
1298 methods.pixelHeight;
1299 methods.pixelLeft;
1300 methods.pixelRight;
1301 methods.pixelTop;
1302 methods.pixelWidth;
1303 methods.platform;
1304 methods.play;
1305 methods.plugins;
1306 methods.pointerBeforeReferenceNode;
1307 methods.pop;
1308 methods.port;
1309 methods.pow;
1310 methods.preferredStylesheetSet;
1311 methods.prefix;
1312 methods.prevValue;
1313 methods.preventDefault;
1314 methods.previousNode;
1315 methods.previousSibling;
1316 methods.primitiveType;
1317 methods.print;
1318 methods.product;
1319 methods.productSub;
1320 methods.profile;
1321 methods.prompt;
1322 methods.propertyIsEnumerable;
1323 methods.propertyName;
1324 methods.protocol;
1325 methods.publicId;
1326 methods.push;
1327 methods.putImageData = function(image, dx, dy) {};
1328 methods.quadraticCurveTo;
1329 methods.queryCommandEnabled;
1330 methods.queryCommandIndeterm;
1331 methods.queryCommandState;
1332 methods.queryCommandSupported;
1333 methods.queryCommandValue;
1334 methods.querySelector = function(selector) {};
1335 methods.querySelectorAll = function(selector) {};
1336 methods.quote = function() {};
1337 methods.rangeCount;
1338 methods.random;
1339 methods.rangeCount;
1340 methods.readOnly;
1341 methods.readyState;
1342 methods.rect;
1343 methods.red;
1344 methods.reduce = function(callback, opt_initialValue) {};
1345 methods.reduceRight = function(callback, opt_initialValue) {};
1346 methods.referenceNode;
1347 methods.referrer;
1348 methods.refresh;
1349 methods.rel;
1350 methods.relatedNode;
1351 methods.relatedTarget;
1352 methods.releaseCapture;
1353 methods.releaseEvents;
1354 methods.reload;
1355 methods.remove;
1356 methods.removeAllRanges;
1357 methods.removeAttribute;
1358 methods.removeAttributeNS;
1359 methods.removeAttributeNode;
1360 methods.removeChild = function(oldChild) {};
1361 methods.removeEventListener;
1362 methods.removeExpression = function(propertyName) {};
1363 methods.removeNamedItem;
1364 methods.removeNamedItemNS;
1365 methods.removeNode;
1366 methods.removeParameter;
1367 methods.removeProperty;
1368 methods.repeat;
1369 methods.replace;
1370 methods.replaceChild = function(newNode, childNode) {};
1371 methods.replaceData;
1372 methods.replaceNode = function(newNode) {};
1373 methods.reset;
1374 methods.resizeBy = function(x, y) {};
1375 methods.resizeTo = function(w, h) {};
1376 methods.resolveExternals; // XSLT
1377 methods.responseText;
1378 methods.responseXML;
1379 methods.restore;
1380 methods.result;
1381 methods.returnValue;
1382 methods.rev;
1383 methods.reverse;
1384 methods.rightContext;
1385 methods.rotate;
1386 methods.rotation;
1387 methods.round;
1388 methods.rowIndex;
1389 methods.rowSpan;
1390 methods.rows;
1391 methods.rules;
1392 methods.runtimeStyle;
1393 methods.save;
1394 methods.scale;
1395 methods.scheme;
1396 methods.scope;
1397 methods.screen;
1398 methods.screenLeft;
1399 methods.screenTop;
1400 methods.screenX;
1401 methods.screenY;
1402 methods.scripts;
1403 methods.scroll = function(x, y) {};
1404 methods.scrollBy;
1405 methods.scrollByLines;
1406 methods.scrollByPages;
1407 methods.scrollHeight;
1408 methods.scrollIntoView;
1409 methods.scrollLeft;
1410 methods.scrollTo = function(x, y) {};
1411 methods.scrollTop;
1412 methods.scrollWidth;
1413 methods.scrollX;
1414 methods.scrollY;
1415 methods.scrolling;
1416 methods.search;
1417 methods.sectionRowIndex;
1418 methods.select;
1419 methods.selectNode;
1420 methods.selectNodeContents;
1421 methods.selectNodes = function(patternString) {};
1422 methods.selectSingleNode = function(patternString) {};
1423 methods.selected;
1424 methods.selectedIndex;
1425 methods.selectedStylesheetSet;
1426 methods.selection;
1427 methods.selectionEnd;
1428 methods.selectionStart;
1429 methods.selectorText;
1430 methods.send;
1431 methods.separator;
1432 methods.serializeToString;
1433 methods.setActive = function() {};
1434 methods.setAlpha;
1435 methods.setAttribute;
1436 methods.setAttributeNS;
1437 methods.setAttributeNode;
1438 methods.setAttributeNodeNS;
1439 methods.setBaseAndExtent;
1440 methods.setCapture;
1441 methods.setCompositeOperation;
1442 methods.setData;
1443 methods.setDate;
1444 methods.setDragImage;
1445 methods.setEnd;
1446 methods.setEndAfter;
1447 methods.setEndBefore;
1448 methods.setEndPoint = function(type, range) {};
1449 methods.setExpression = function(propertyName, expression) {};
1450 methods.setFillColor;
1451 methods.setFloatValue;
1452 methods.setFullYear;
1453 methods.setHours;
1454 methods.setInterval = function(fn, interval) {};
1455 methods.setLineCap;
1456 methods.setLineJoin;
1457 methods.setLineWidth;
1458 methods.setMilliseconds;
1459 methods.setMinutes;
1460 methods.setMiterLimit;
1461 methods.setMonth;
1462 methods.setNamedItem;
1463 methods.setNamedItemNS;
1464 methods.setParameter;
1465 methods.setPosition;
1466 methods.setProperty;
1467 methods.setRequestHeader;
1468 methods.setSUTCSeconds;
1469 methods.setSeconds;
1470 methods.setSelectionRange;
1471 methods.setShadow;
1472 methods.setStart;
1473 methods.setStartAfter;
1474 methods.setStartBefore;
1475 methods.setStringValue;
1476 methods.setStrokeColor;
1477 methods.setTime;
1478 methods.setTimeout = function(fn, time) {};
1479 methods.setTransform = function(m11, m12, m21, m22, dx, dy) {};
1480 methods.setUTCDate;
1481 methods.setUTCFullYear;
1482 methods.setUTCHours;
1483 methods.setUTCMilliseconds;
1484 methods.setUTCMinutes;
1485 methods.setUTCMonth;
1486 methods.setUTCSeconds;
1487 methods.shadowBlur;
1488 methods.shadowColor;
1489 methods.shadowOffsetX;
1490 methods.shadowOffsetY;
1491 methods.shape;
1492 methods.sheet;
1493 methods.shift;
1494 methods.shiftKey;
1495 methods.showModalDialog = function(url, opt_arguments, opt_features) {};
1496 methods.sin;
1497 methods.singleNodeValue;
1498 methods.slice;
1499 methods.snapshotItem = function(index) {};
1500 methods.snapshotLength;
1501 methods.some;
1502 methods.sort;
1503 methods.source;
1504 methods.sourceIndex;
1505 methods.sourceURL;
1506 methods.span;
1507 methods.specified;
1508 methods.splice;
1509 methods.split;
1510 methods.splitText;
1511 methods.sqrt;
1512 methods.src;
1513 methods.srcElement;
1514 methods.stack;
1515 methods.standby;
1516 methods.start;
1517 methods.startContainer;
1518 methods.startOffset;
1519 methods.status;
1520 methods.statusText;
1521 methods.stop;
1522 methods.stopPropagation;
1523 methods.stroke;
1524 methods.strokecolor;
1525 methods.stroked;
1526 methods.strokeRect;
1527 methods.strokeStyle;
1528 methods.strokeweight;
1529 methods.style;
1530 methods.styleSheet;
1531 methods.stylesheet; // XSLT
1532 methods.styleSheets;
1533 methods.submit;
1534 methods.substr = function(start, opt_length) {};
1535 methods.substring = function(start, opt_end) {};
1536 methods.substringData;
1537 methods.suffixes;
1538 methods.summary;
1539 methods.surroundContents;
1540 methods.systemId;
1541 methods.tBodies;
1542 methods.tFoot;
1543 methods.tHead;
1544 methods.tabIndex;
1545 methods.tagName;
1546 methods.tags;
1547 methods.tan;
1548 methods.target;
1549 methods.test;
1550 methods.text;
1551 methods.textContent;
1552 methods.timeStamp;
1553 methods.title;
1554 methods.toDateString;
1555 methods.toElement;
1556 methods.toExponential;
1557 methods.toFixed;
1558 methods.toJSONString;
1559 methods.toLocaleDateString;
1560 methods.toLocaleLowerCase;
1561 methods.toLocaleString;
1562 methods.toLocaleTimeString;
1563 methods.toLocaleUpperCase;
1564 methods.toLowerCase;
1565 methods.toPrecision;
1566 methods.toSource;
1567 methods.toString;
1568 methods.toSource;
1569 methods.toTimeString;
1570 methods.toUTCString;
1571 methods.toUpperCase;
1572 methods.transform = function(m11, m12, m21, m22, dx, dy) {};
1573 methods.setTransform = function(m11, m12, m21, m22, dx, dy) {};
1574 methods.transformToDocument;
1575 methods.transformToFragment;
1576 methods.translate;
1577 methods.type;
1578 methods.types;
1579 methods.uneval;
1580 methods.unshift;
1581 methods.unselectable;
1582 methods.useMap;
1583 methods.userAgent;
1584 methods.vAlign;
1585 methods.value;
1586 methods.valueOf;
1587 methods.valueType;
1588 methods.vendor;
1589 methods.version;
1590 methods.view;
1591 methods.visible;
1592 methods.vlinkColor;
1593 methods.vspace;
1594 methods.watch;
1595 methods.whatToShow;
1596 methods.wheelDelta;
1597 methods.wheelDeltaX;
1598 methods.wheelDeltaY;
1599 methods.which;
1600 methods.write;
1601 methods.writeln;
1602 methods.x;
1603 methods.xml;
1604 methods.y;
1605
1606 // CSS style properties
1607 methods.azimuth;
1608 methods.background;
1609 methods.backgroundAttachment;
1610 methods.backgroundColor;
1611 methods.backgroundImage;
1612 methods.backgroundPosition;
1613 methods.backgroundPositionX;
1614 methods.backgroundPositionY;
1615 methods.backgroundRepeat;
1616 methods.border;
1617 methods.borderCollapse;
1618 methods.borderColor;
1619 methods.borderSpacing;
1620 methods.borderStyle;
1621 methods.borderTop;
1622 methods.borderRight;
1623 methods.borderBottom;
1624 methods.borderLeft;
1625 methods.borderTopColor;
1626 methods.borderRightColor;
1627 methods.borderBottomColor;
1628 methods.borderLeftColor;
1629 methods.borderTopStyle;
1630 methods.borderRightStyle;
1631 methods.borderBottomStyle;
1632 methods.borderLeftStyle;
1633 methods.borderTopWidth;
1634 methods.borderRightWidth;
1635 methods.borderBottomWidth;
1636 methods.borderLeftWidth;
1637 methods.borderWidth;
1638 methods.bottom;
1639 methods.captionSide;
1640 methods.clear;
1641 methods.clip;
1642 methods.color;
1643 methods.content;
1644 methods.counterIncrement;
1645 methods.counterReset;
1646 methods.cssFloat;
1647 methods.cue;
1648 methods.cueAfter;
1649 methods.cueBefore;
1650 methods.cursor;
1651 methods.direction;
1652 methods.display;
1653 methods.elevation;
1654 methods.emptyCells;
1655 methods.font;
1656 methods.fontFamily;
1657 methods.fontSize;
1658 methods.fontSizeAdjust;
1659 methods.fontStretch;
1660 methods.fontStyle;
1661 methods.fontVariant;
1662 methods.fontWeight;
1663 methods.height;
1664 methods.hideFocus;
1665 methods.left;
1666 methods.letterSpacing;
1667 methods.lineHeight;
1668 methods.listStyle;
1669 methods.listStyleImage;
1670 methods.listStylePosition;
1671 methods.listStyleType;
1672 methods.margin;
1673 methods.marginBottom;
1674 methods.marginLeft;
1675 methods.marginRight;
1676 methods.marginTop;
1677 methods.markerOffset;
1678 methods.marks;
1679 methods.maxHeight;
1680 methods.maxWidth;
1681 methods.minHeight;
1682 methods.minWidth;
1683 methods.orphans;
1684 methods.outline;
1685 methods.outlineColor;
1686 methods.outlineStyle;
1687 methods.outlineWidth;
1688 methods.overflow;
1689 methods.padding;
1690 methods.paddingTop;
1691 methods.paddingRight;
1692 methods.paddingBottom;
1693 methods.paddingLeft;
1694 methods.page;
1695 methods.pageBreakAfter;
1696 methods.pageBreakBefore;
1697 methods.pageBreakInside;
1698 methods.pause;
1699 methods.pauseAfter;
1700 methods.pauseBefore;
1701 methods.pitch;
1702 methods.pitchRange;
1703 methods.position;
1704 methods.quotes;
1705 methods.richness;
1706 methods.right;
1707 methods.size;
1708 methods.speak;
1709 methods.speakHeader;
1710 methods.speakNumeral;
1711 methods.speakPunctuation;
1712 methods.speechRate;
1713 methods.stress;
1714 methods.styleFloat;
1715 methods.tableLayout;
1716 methods.textAlign;
1717 methods.textDecoration;
1718 methods.textIndent;
1719 methods.textShadow;
1720 methods.textTransform;
1721 methods.top;
1722 methods.unicodeBidi;
1723 methods.verticalAlign;
1724 methods.visibility;
1725 methods.voiceFamily;
1726 methods.volume;
1727 methods.whiteSpace;
1728 methods.widows;
1729 methods.width;
1730 methods.wordSpacing;
1731 methods.wordWrap;
1732 methods.zIndex;
1733 methods.zoom;
1734
1735 // Gecko-only CSS style names. Copied from:
1736 // http://lxr.mozilla.org/mozilla1.8.0/source/dom/public/idl/css/nsIDOMCSS2Prope rties.idl
1737 methods.MozAppearance;
1738 methods.MozBackgroundClip;
1739 methods.MozBackgroundInlinePolicy;
1740 methods.MozBackgroundOrigin;
1741 methods.MozBinding;
1742 methods.MozBorderBottomColors;
1743 methods.MozBorderLeftColors;
1744 methods.MozBorderRightColors;
1745 methods.MozBorderTopColors;
1746 methods.MozBorderRadius;
1747 methods.MozBorderRadiusTopleft;
1748 methods.MozBorderRadiusTopright;
1749 methods.MozBorderRadiusBottomleft;
1750 methods.MozBorderRadiusBottomright;
1751 methods.MozBoxAlign;
1752 methods.MozBoxDirection;
1753 methods.MozBoxFlex;
1754 methods.MozBoxOrient;
1755 methods.MozBoxOrdinalGroup;
1756 methods.MozBoxPack;
1757 methods.MozBoxSizing;
1758 methods.MozColumnCount;
1759 methods.MozColumnWidth;
1760 methods.MozColumnGap;
1761 methods.MozFloatEdge;
1762 methods.MozForceBrokenImageIcon;
1763 methods.MozImageRegion;
1764 methods.MozMarginEnd;
1765 methods.MozMarginStart;
1766 methods.MozOpacity;
1767 methods.MozOutline;
1768 methods.MozOutlineColor;
1769 methods.MozOutlineRadius;
1770 methods.MozOutlineRadiusTopleft;
1771 methods.MozOutlineRadiusTopright;
1772 methods.MozOutlineRadiusBottomleft;
1773 methods.MozOutlineRadiusBottomright;
1774 methods.MozOutlineStyle;
1775 methods.MozOutlineWidth;
1776 methods.MozOutlineOffset;
1777 methods.MozPaddingEnd;
1778 methods.MozPaddingStart;
1779 methods.MozUserFocus;
1780 methods.MozUserInput;
1781 methods.MozUserModify;
1782 methods.MozUserSelect;
1783
1784 // Webkit-only CSS style names. Copied from:
1785 // https://svn.corp.google.com/v/chrome/trunk/third_party/WebKit/WebCore/css/CSS PropertyNames.in?view=markup
1786 methods.WebkitAppearance;
1787 methods.WebkitBackgroundClip;
1788 methods.WebkitBackgroundComposite;
1789 methods.WebkitBackgroundOrigin;
1790 methods.WebkitBackgroundSize;
1791 methods.WebkitBinding;
1792 methods.WebkitBorderBottomLeftRadius;
1793 methods.WebkitBorderBottomRightRadius;
1794 methods.WebkitBorderFit;
1795 methods.WebkitBorderHorizontalSpacing;
1796 methods.WebkitBorderImage;
1797 methods.WebkitBorderRadius;
1798 methods.WebkitBorderTopLeftRadius;
1799 methods.WebkitBorderTopRightRadius;
1800 methods.WebkitBorderVerticalSpacing;
1801 methods.WebkitBoxAlign;
1802 methods.WebkitBoxDirection;
1803 methods.WebkitBoxFlex;
1804 methods.WebkitBoxFlexGroup;
1805 methods.WebkitBoxLines;
1806 methods.WebkitBoxOrdinalGroup;
1807 methods.WebkitBoxOrient;
1808 methods.WebkitBoxPack;
1809 methods.WebkitBoxShadow;
1810 methods.WebkitBoxSizing;
1811 methods.WebkitColumnBreakAfter;
1812 methods.WebkitColumnBreakBefore;
1813 methods.WebkitColumnBreakInside;
1814 methods.WebkitColumnCount;
1815 methods.WebkitColumnGap;
1816 methods.WebkitColumnRule;
1817 methods.WebkitColumnRuleColor;
1818 methods.WebkitColumnRuleStyle;
1819 methods.WebkitColumnRuleWidth;
1820 methods.WebkitColumnWidth;
1821 methods.WebkitColumns;
1822 methods.WebkitDashboardRegion;
1823 methods.WebkitFontSizeDelta;
1824 methods.WebkitHighlight;
1825 methods.WebkitLineBreak;
1826 methods.WebkitLineClamp;
1827 methods.WebkitMarginBottomCollapse;
1828 methods.WebkitMarginCollapse;
1829 methods.WebkitMarginStart;
1830 methods.WebkitMarginTopCollapse;
1831 methods.WebkitMarquee;
1832 methods.WebkitMarqueeDirection;
1833 methods.WebkitMarqueeIncrement;
1834 methods.WebkitMarqueeRepetition;
1835 methods.WebkitMarqueeSpeed;
1836 methods.WebkitMarqueeStyle;
1837 methods.WebkitMatchNearestMailBlockquoteColor;
1838 methods.WebkitNbspMode;
1839 methods.WebkitPaddingStart;
1840 methods.WebkitRtlOrdering;
1841 methods.WebkitTextDecorationsInEffect;
1842 methods.WebkitTextFillColor;
1843 methods.WebkitTextSecurity;
1844 methods.WebkitTextSizeAdjust;
1845 methods.WebkitTextStroke;
1846 methods.WebkitTextStrokeColor;
1847 methods.WebkitTextStrokeWidth;
1848 methods.WebkitTransform;
1849 methods.WebkitTransformOrigin;
1850 methods.WebkitTransformOriginX;
1851 methods.WebkitTransformOriginY;
1852 methods.WebkitTransition;
1853 methods.WebkitTransitionDuration;
1854 methods.WebkitTransitionProperty;
1855 methods.WebkitTransitionRepeatCount;
1856 methods.WebkitTransitionTimingFunction;
1857 methods.WebkitUserDrag;
1858 methods.WebkitUserModify;
1859 methods.WebkitUserSelect;
OLDNEW
« no previous file with comments | « documentation/build_docs.py ('k') | documentation/externs/o3d-extra-externs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698