| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 #native('frog_dom.js'); | 3 #native('frog_dom.js'); |
| 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 5 // for details. All rights reserved. Use of this source code is governed by a | 5 // for details. All rights reserved. Use of this source code is governed by a |
| 6 // BSD-style license that can be found in the LICENSE file. | 6 // BSD-style license that can be found in the LICENSE file. |
| 7 | 7 |
| 8 // DO NOT EDIT | 8 // DO NOT EDIT |
| 9 // Auto-generated Dart DOM library. | 9 // Auto-generated Dart DOM library. |
| 10 | 10 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 class CSSPageRule extends CSSRule native "*CSSPageRule" { | 129 class CSSPageRule extends CSSRule native "*CSSPageRule" { |
| 130 | 130 |
| 131 String selectorText; | 131 String selectorText; |
| 132 | 132 |
| 133 CSSStyleDeclaration style; | 133 CSSStyleDeclaration style; |
| 134 } | 134 } |
| 135 | 135 |
| 136 class CSSPrimitiveValue extends CSSValue native "*CSSPrimitiveValue" { | 136 class CSSPrimitiveValue extends CSSValue native "*CSSPrimitiveValue" { |
| 137 | 137 |
| 138 static final int CSS_ATTR = 22; |
| 139 |
| 140 static final int CSS_CM = 6; |
| 141 |
| 142 static final int CSS_COUNTER = 23; |
| 143 |
| 144 static final int CSS_DEG = 11; |
| 145 |
| 146 static final int CSS_DIMENSION = 18; |
| 147 |
| 148 static final int CSS_EMS = 3; |
| 149 |
| 150 static final int CSS_EXS = 4; |
| 151 |
| 152 static final int CSS_GRAD = 13; |
| 153 |
| 154 static final int CSS_HZ = 16; |
| 155 |
| 156 static final int CSS_IDENT = 21; |
| 157 |
| 158 static final int CSS_IN = 8; |
| 159 |
| 160 static final int CSS_KHZ = 17; |
| 161 |
| 162 static final int CSS_MM = 7; |
| 163 |
| 164 static final int CSS_MS = 14; |
| 165 |
| 166 static final int CSS_NUMBER = 1; |
| 167 |
| 168 static final int CSS_PC = 10; |
| 169 |
| 170 static final int CSS_PERCENTAGE = 2; |
| 171 |
| 172 static final int CSS_PT = 9; |
| 173 |
| 174 static final int CSS_PX = 5; |
| 175 |
| 176 static final int CSS_RAD = 12; |
| 177 |
| 178 static final int CSS_RECT = 24; |
| 179 |
| 180 static final int CSS_RGBCOLOR = 25; |
| 181 |
| 182 static final int CSS_S = 15; |
| 183 |
| 184 static final int CSS_STRING = 19; |
| 185 |
| 186 static final int CSS_UNKNOWN = 0; |
| 187 |
| 188 static final int CSS_URI = 20; |
| 189 |
| 138 int primitiveType; | 190 int primitiveType; |
| 139 | 191 |
| 140 Counter getCounterValue() native; | 192 Counter getCounterValue() native; |
| 141 | 193 |
| 142 num getFloatValue(int unitType) native; | 194 num getFloatValue(int unitType) native; |
| 143 | 195 |
| 144 RGBColor getRGBColorValue() native; | 196 RGBColor getRGBColorValue() native; |
| 145 | 197 |
| 146 Rect getRectValue() native; | 198 Rect getRectValue() native; |
| 147 | 199 |
| 148 String getStringValue() native; | 200 String getStringValue() native; |
| 149 | 201 |
| 150 void setFloatValue(int unitType, num floatValue) native; | 202 void setFloatValue(int unitType, num floatValue) native; |
| 151 | 203 |
| 152 void setStringValue(int stringType, String stringValue) native; | 204 void setStringValue(int stringType, String stringValue) native; |
| 153 } | 205 } |
| 154 | 206 |
| 155 class CSSRule native "*CSSRule" { | 207 class CSSRule native "*CSSRule" { |
| 156 | 208 |
| 209 static final int CHARSET_RULE = 2; |
| 210 |
| 211 static final int FONT_FACE_RULE = 5; |
| 212 |
| 213 static final int IMPORT_RULE = 3; |
| 214 |
| 215 static final int MEDIA_RULE = 4; |
| 216 |
| 217 static final int PAGE_RULE = 6; |
| 218 |
| 219 static final int STYLE_RULE = 1; |
| 220 |
| 221 static final int UNKNOWN_RULE = 0; |
| 222 |
| 223 static final int WEBKIT_KEYFRAMES_RULE = 8; |
| 224 |
| 225 static final int WEBKIT_KEYFRAME_RULE = 9; |
| 226 |
| 227 static final int WEBKIT_REGION_STYLE_RULE = 10; |
| 228 |
| 157 String cssText; | 229 String cssText; |
| 158 | 230 |
| 159 CSSRule parentRule; | 231 CSSRule parentRule; |
| 160 | 232 |
| 161 CSSStyleSheet parentStyleSheet; | 233 CSSStyleSheet parentStyleSheet; |
| 162 | 234 |
| 163 int type; | 235 int type; |
| 164 | 236 |
| 165 var dartObjectLocalStorage; | 237 var dartObjectLocalStorage; |
| 166 | 238 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 int insertRule(String rule, int index) native; | 301 int insertRule(String rule, int index) native; |
| 230 | 302 |
| 231 void removeRule(int index) native; | 303 void removeRule(int index) native; |
| 232 } | 304 } |
| 233 | 305 |
| 234 class CSSUnknownRule extends CSSRule native "*CSSUnknownRule" { | 306 class CSSUnknownRule extends CSSRule native "*CSSUnknownRule" { |
| 235 } | 307 } |
| 236 | 308 |
| 237 class CSSValue native "*CSSValue" { | 309 class CSSValue native "*CSSValue" { |
| 238 | 310 |
| 311 static final int CSS_CUSTOM = 3; |
| 312 |
| 313 static final int CSS_INHERIT = 0; |
| 314 |
| 315 static final int CSS_PRIMITIVE_VALUE = 1; |
| 316 |
| 317 static final int CSS_VALUE_LIST = 2; |
| 318 |
| 239 String cssText; | 319 String cssText; |
| 240 | 320 |
| 241 int cssValueType; | 321 int cssValueType; |
| 242 | 322 |
| 243 var dartObjectLocalStorage; | 323 var dartObjectLocalStorage; |
| 244 | 324 |
| 245 String get typeName() native; | 325 String get typeName() native; |
| 246 } | 326 } |
| 247 | 327 |
| 248 class CSSValueList extends CSSValue native "*CSSValueList" { | 328 class CSSValueList extends CSSValue native "*CSSValueList" { |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 596 | 676 |
| 597 class CustomEvent extends Event native "*CustomEvent" { | 677 class CustomEvent extends Event native "*CustomEvent" { |
| 598 | 678 |
| 599 Object detail; | 679 Object detail; |
| 600 | 680 |
| 601 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob
ject detailArg) native; | 681 void initCustomEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Ob
ject detailArg) native; |
| 602 } | 682 } |
| 603 | 683 |
| 604 class DOMApplicationCache native "*DOMApplicationCache" { | 684 class DOMApplicationCache native "*DOMApplicationCache" { |
| 605 | 685 |
| 686 static final int CHECKING = 2; |
| 687 |
| 688 static final int DOWNLOADING = 3; |
| 689 |
| 690 static final int IDLE = 1; |
| 691 |
| 692 static final int OBSOLETE = 5; |
| 693 |
| 694 static final int UNCACHED = 0; |
| 695 |
| 696 static final int UPDATEREADY = 4; |
| 697 |
| 606 int status; | 698 int status; |
| 607 | 699 |
| 608 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 700 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 609 | 701 |
| 610 bool dispatchEvent(Event evt) native; | 702 bool dispatchEvent(Event evt) native; |
| 611 | 703 |
| 612 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 704 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 613 | 705 |
| 614 void swapCache() native; | 706 void swapCache() native; |
| 615 | 707 |
| 616 void update() native; | 708 void update() native; |
| 617 | 709 |
| 618 var dartObjectLocalStorage; | 710 var dartObjectLocalStorage; |
| 619 | 711 |
| 620 String get typeName() native; | 712 String get typeName() native; |
| 621 } | 713 } |
| 622 | 714 |
| 623 class DOMException native "*DOMException" { | 715 class DOMException native "*DOMException" { |
| 624 | 716 |
| 717 static final int ABORT_ERR = 20; |
| 718 |
| 719 static final int DATA_CLONE_ERR = 25; |
| 720 |
| 721 static final int DOMSTRING_SIZE_ERR = 2; |
| 722 |
| 723 static final int HIERARCHY_REQUEST_ERR = 3; |
| 724 |
| 725 static final int INDEX_SIZE_ERR = 1; |
| 726 |
| 727 static final int INUSE_ATTRIBUTE_ERR = 10; |
| 728 |
| 729 static final int INVALID_ACCESS_ERR = 15; |
| 730 |
| 731 static final int INVALID_CHARACTER_ERR = 5; |
| 732 |
| 733 static final int INVALID_MODIFICATION_ERR = 13; |
| 734 |
| 735 static final int INVALID_NODE_TYPE_ERR = 24; |
| 736 |
| 737 static final int INVALID_STATE_ERR = 11; |
| 738 |
| 739 static final int NAMESPACE_ERR = 14; |
| 740 |
| 741 static final int NETWORK_ERR = 19; |
| 742 |
| 743 static final int NOT_FOUND_ERR = 8; |
| 744 |
| 745 static final int NOT_SUPPORTED_ERR = 9; |
| 746 |
| 747 static final int NO_DATA_ALLOWED_ERR = 6; |
| 748 |
| 749 static final int NO_MODIFICATION_ALLOWED_ERR = 7; |
| 750 |
| 751 static final int QUOTA_EXCEEDED_ERR = 22; |
| 752 |
| 753 static final int SECURITY_ERR = 18; |
| 754 |
| 755 static final int SYNTAX_ERR = 12; |
| 756 |
| 757 static final int TIMEOUT_ERR = 23; |
| 758 |
| 759 static final int TYPE_MISMATCH_ERR = 17; |
| 760 |
| 761 static final int URL_MISMATCH_ERR = 21; |
| 762 |
| 763 static final int VALIDATION_ERR = 16; |
| 764 |
| 765 static final int WRONG_DOCUMENT_ERR = 4; |
| 766 |
| 625 int code; | 767 int code; |
| 626 | 768 |
| 627 String message; | 769 String message; |
| 628 | 770 |
| 629 String name; | 771 String name; |
| 630 | 772 |
| 631 String toString() native; | 773 String toString() native; |
| 632 | 774 |
| 633 var dartObjectLocalStorage; | 775 var dartObjectLocalStorage; |
| 634 | 776 |
| (...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1619 | 1761 |
| 1620 int lineno; | 1762 int lineno; |
| 1621 | 1763 |
| 1622 String message; | 1764 String message; |
| 1623 | 1765 |
| 1624 void initErrorEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Str
ing messageArg, String filenameArg, int linenoArg) native; | 1766 void initErrorEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Str
ing messageArg, String filenameArg, int linenoArg) native; |
| 1625 } | 1767 } |
| 1626 | 1768 |
| 1627 class Event native "*Event" { | 1769 class Event native "*Event" { |
| 1628 | 1770 |
| 1771 static final int AT_TARGET = 2; |
| 1772 |
| 1773 static final int BLUR = 8192; |
| 1774 |
| 1775 static final int BUBBLING_PHASE = 3; |
| 1776 |
| 1777 static final int CAPTURING_PHASE = 1; |
| 1778 |
| 1779 static final int CHANGE = 32768; |
| 1780 |
| 1781 static final int CLICK = 64; |
| 1782 |
| 1783 static final int DBLCLICK = 128; |
| 1784 |
| 1785 static final int DRAGDROP = 2048; |
| 1786 |
| 1787 static final int FOCUS = 4096; |
| 1788 |
| 1789 static final int KEYDOWN = 256; |
| 1790 |
| 1791 static final int KEYPRESS = 1024; |
| 1792 |
| 1793 static final int KEYUP = 512; |
| 1794 |
| 1795 static final int MOUSEDOWN = 1; |
| 1796 |
| 1797 static final int MOUSEDRAG = 32; |
| 1798 |
| 1799 static final int MOUSEMOVE = 16; |
| 1800 |
| 1801 static final int MOUSEOUT = 8; |
| 1802 |
| 1803 static final int MOUSEOVER = 4; |
| 1804 |
| 1805 static final int MOUSEUP = 2; |
| 1806 |
| 1807 static final int SELECT = 16384; |
| 1808 |
| 1629 bool bubbles; | 1809 bool bubbles; |
| 1630 | 1810 |
| 1631 bool cancelBubble; | 1811 bool cancelBubble; |
| 1632 | 1812 |
| 1633 bool cancelable; | 1813 bool cancelable; |
| 1634 | 1814 |
| 1635 Clipboard clipboardData; | 1815 Clipboard clipboardData; |
| 1636 | 1816 |
| 1637 EventTarget currentTarget; | 1817 EventTarget currentTarget; |
| 1638 | 1818 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 1658 | 1838 |
| 1659 void stopPropagation() native; | 1839 void stopPropagation() native; |
| 1660 | 1840 |
| 1661 var dartObjectLocalStorage; | 1841 var dartObjectLocalStorage; |
| 1662 | 1842 |
| 1663 String get typeName() native; | 1843 String get typeName() native; |
| 1664 } | 1844 } |
| 1665 | 1845 |
| 1666 class EventException native "*EventException" { | 1846 class EventException native "*EventException" { |
| 1667 | 1847 |
| 1848 static final int DISPATCH_REQUEST_ERR = 1; |
| 1849 |
| 1850 static final int UNSPECIFIED_EVENT_TYPE_ERR = 0; |
| 1851 |
| 1668 int code; | 1852 int code; |
| 1669 | 1853 |
| 1670 String message; | 1854 String message; |
| 1671 | 1855 |
| 1672 String name; | 1856 String name; |
| 1673 | 1857 |
| 1674 String toString() native; | 1858 String toString() native; |
| 1675 | 1859 |
| 1676 var dartObjectLocalStorage; | 1860 var dartObjectLocalStorage; |
| 1677 | 1861 |
| 1678 String get typeName() native; | 1862 String get typeName() native; |
| 1679 } | 1863 } |
| 1680 | 1864 |
| 1681 class EventSource native "*EventSource" { | 1865 class EventSource native "*EventSource" { |
| 1682 | 1866 |
| 1867 static final int CLOSED = 2; |
| 1868 |
| 1869 static final int CONNECTING = 0; |
| 1870 |
| 1871 static final int OPEN = 1; |
| 1872 |
| 1683 String URL; | 1873 String URL; |
| 1684 | 1874 |
| 1685 int readyState; | 1875 int readyState; |
| 1686 | 1876 |
| 1687 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 1877 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 1688 | 1878 |
| 1689 void close() native; | 1879 void close() native; |
| 1690 | 1880 |
| 1691 bool dispatchEvent(Event evt) native; | 1881 bool dispatchEvent(Event evt) native; |
| 1692 | 1882 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1739 | 1929 |
| 1740 class FileEntrySync extends EntrySync native "*FileEntrySync" { | 1930 class FileEntrySync extends EntrySync native "*FileEntrySync" { |
| 1741 | 1931 |
| 1742 FileWriterSync createWriter() native; | 1932 FileWriterSync createWriter() native; |
| 1743 | 1933 |
| 1744 File file() native; | 1934 File file() native; |
| 1745 } | 1935 } |
| 1746 | 1936 |
| 1747 class FileError native "*FileError" { | 1937 class FileError native "*FileError" { |
| 1748 | 1938 |
| 1939 static final int ABORT_ERR = 3; |
| 1940 |
| 1941 static final int ENCODING_ERR = 5; |
| 1942 |
| 1943 static final int INVALID_MODIFICATION_ERR = 9; |
| 1944 |
| 1945 static final int INVALID_STATE_ERR = 7; |
| 1946 |
| 1947 static final int NOT_FOUND_ERR = 1; |
| 1948 |
| 1949 static final int NOT_READABLE_ERR = 4; |
| 1950 |
| 1951 static final int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 1952 |
| 1953 static final int PATH_EXISTS_ERR = 12; |
| 1954 |
| 1955 static final int QUOTA_EXCEEDED_ERR = 10; |
| 1956 |
| 1957 static final int SECURITY_ERR = 2; |
| 1958 |
| 1959 static final int SYNTAX_ERR = 8; |
| 1960 |
| 1961 static final int TYPE_MISMATCH_ERR = 11; |
| 1962 |
| 1749 int code; | 1963 int code; |
| 1750 | 1964 |
| 1751 var dartObjectLocalStorage; | 1965 var dartObjectLocalStorage; |
| 1752 | 1966 |
| 1753 String get typeName() native; | 1967 String get typeName() native; |
| 1754 } | 1968 } |
| 1755 | 1969 |
| 1756 class FileException native "*FileException" { | 1970 class FileException native "*FileException" { |
| 1757 | 1971 |
| 1972 static final int ABORT_ERR = 3; |
| 1973 |
| 1974 static final int ENCODING_ERR = 5; |
| 1975 |
| 1976 static final int INVALID_MODIFICATION_ERR = 9; |
| 1977 |
| 1978 static final int INVALID_STATE_ERR = 7; |
| 1979 |
| 1980 static final int NOT_FOUND_ERR = 1; |
| 1981 |
| 1982 static final int NOT_READABLE_ERR = 4; |
| 1983 |
| 1984 static final int NO_MODIFICATION_ALLOWED_ERR = 6; |
| 1985 |
| 1986 static final int PATH_EXISTS_ERR = 12; |
| 1987 |
| 1988 static final int QUOTA_EXCEEDED_ERR = 10; |
| 1989 |
| 1990 static final int SECURITY_ERR = 2; |
| 1991 |
| 1992 static final int SYNTAX_ERR = 8; |
| 1993 |
| 1994 static final int TYPE_MISMATCH_ERR = 11; |
| 1995 |
| 1758 int code; | 1996 int code; |
| 1759 | 1997 |
| 1760 String message; | 1998 String message; |
| 1761 | 1999 |
| 1762 String name; | 2000 String name; |
| 1763 | 2001 |
| 1764 String toString() native; | 2002 String toString() native; |
| 1765 | 2003 |
| 1766 var dartObjectLocalStorage; | 2004 var dartObjectLocalStorage; |
| 1767 | 2005 |
| 1768 String get typeName() native; | 2006 String get typeName() native; |
| 1769 } | 2007 } |
| 1770 | 2008 |
| 1771 class FileList native "*FileList" { | 2009 class FileList native "*FileList" { |
| 1772 | 2010 |
| 1773 int length; | 2011 int length; |
| 1774 | 2012 |
| 1775 File item(int index) native; | 2013 File item(int index) native; |
| 1776 | 2014 |
| 1777 var dartObjectLocalStorage; | 2015 var dartObjectLocalStorage; |
| 1778 | 2016 |
| 1779 String get typeName() native; | 2017 String get typeName() native; |
| 1780 } | 2018 } |
| 1781 | 2019 |
| 1782 class FileReader native "*FileReader" { | 2020 class FileReader native "*FileReader" { |
| 1783 FileReader() native; | 2021 FileReader() native; |
| 1784 | 2022 |
| 1785 | 2023 |
| 2024 static final int DONE = 2; |
| 2025 |
| 2026 static final int EMPTY = 0; |
| 2027 |
| 2028 static final int LOADING = 1; |
| 2029 |
| 1786 FileError error; | 2030 FileError error; |
| 1787 | 2031 |
| 1788 int readyState; | 2032 int readyState; |
| 1789 | 2033 |
| 1790 Object result; | 2034 Object result; |
| 1791 | 2035 |
| 1792 void abort() native; | 2036 void abort() native; |
| 1793 | 2037 |
| 1794 void readAsArrayBuffer(Blob blob) native; | 2038 void readAsArrayBuffer(Blob blob) native; |
| 1795 | 2039 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 1823 | 2067 |
| 1824 bool handleEvent(DOMFileSystem fileSystem) native; | 2068 bool handleEvent(DOMFileSystem fileSystem) native; |
| 1825 | 2069 |
| 1826 var dartObjectLocalStorage; | 2070 var dartObjectLocalStorage; |
| 1827 | 2071 |
| 1828 String get typeName() native; | 2072 String get typeName() native; |
| 1829 } | 2073 } |
| 1830 | 2074 |
| 1831 class FileWriter native "*FileWriter" { | 2075 class FileWriter native "*FileWriter" { |
| 1832 | 2076 |
| 2077 static final int DONE = 2; |
| 2078 |
| 2079 static final int INIT = 0; |
| 2080 |
| 2081 static final int WRITING = 1; |
| 2082 |
| 1833 FileError error; | 2083 FileError error; |
| 1834 | 2084 |
| 1835 int length; | 2085 int length; |
| 1836 | 2086 |
| 1837 int position; | 2087 int position; |
| 1838 | 2088 |
| 1839 int readyState; | 2089 int readyState; |
| 1840 | 2090 |
| 1841 void abort() native; | 2091 void abort() native; |
| 1842 | 2092 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 1872 | 2122 |
| 1873 void write(Blob data) native; | 2123 void write(Blob data) native; |
| 1874 | 2124 |
| 1875 var dartObjectLocalStorage; | 2125 var dartObjectLocalStorage; |
| 1876 | 2126 |
| 1877 String get typeName() native; | 2127 String get typeName() native; |
| 1878 } | 2128 } |
| 1879 | 2129 |
| 1880 class Float32Array extends ArrayBufferView native "*Float32Array" { | 2130 class Float32Array extends ArrayBufferView native "*Float32Array" { |
| 1881 | 2131 |
| 2132 static final int BYTES_PER_ELEMENT = 4; |
| 2133 |
| 1882 int length; | 2134 int length; |
| 1883 | 2135 |
| 1884 Float32Array subarray(int start, [int end = null]) native; | 2136 Float32Array subarray(int start, [int end = null]) native; |
| 1885 } | 2137 } |
| 1886 | 2138 |
| 1887 class Float64Array extends ArrayBufferView native "*Float64Array" { | 2139 class Float64Array extends ArrayBufferView native "*Float64Array" { |
| 1888 | 2140 |
| 2141 static final int BYTES_PER_ELEMENT = 8; |
| 2142 |
| 1889 int length; | 2143 int length; |
| 1890 | 2144 |
| 1891 Float64Array subarray(int start, [int end = null]) native; | 2145 Float64Array subarray(int start, [int end = null]) native; |
| 1892 } | 2146 } |
| 1893 | 2147 |
| 1894 class Geolocation native "*Geolocation" { | 2148 class Geolocation native "*Geolocation" { |
| 1895 | 2149 |
| 1896 void clearWatch(int watchId) native; | 2150 void clearWatch(int watchId) native; |
| 1897 | 2151 |
| 1898 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba
ck errorCallback = null]) native; | 2152 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba
ck errorCallback = null]) native; |
| (...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2712 | 2966 |
| 2713 String width; | 2967 String width; |
| 2714 | 2968 |
| 2715 void start() native; | 2969 void start() native; |
| 2716 | 2970 |
| 2717 void stop() native; | 2971 void stop() native; |
| 2718 } | 2972 } |
| 2719 | 2973 |
| 2720 class HTMLMediaElement extends HTMLElement native "*HTMLMediaElement" { | 2974 class HTMLMediaElement extends HTMLElement native "*HTMLMediaElement" { |
| 2721 | 2975 |
| 2976 static final int HAVE_CURRENT_DATA = 2; |
| 2977 |
| 2978 static final int HAVE_ENOUGH_DATA = 4; |
| 2979 |
| 2980 static final int HAVE_FUTURE_DATA = 3; |
| 2981 |
| 2982 static final int HAVE_METADATA = 1; |
| 2983 |
| 2984 static final int HAVE_NOTHING = 0; |
| 2985 |
| 2986 static final int NETWORK_EMPTY = 0; |
| 2987 |
| 2988 static final int NETWORK_IDLE = 1; |
| 2989 |
| 2990 static final int NETWORK_LOADING = 2; |
| 2991 |
| 2992 static final int NETWORK_NO_SOURCE = 3; |
| 2993 |
| 2722 bool autoplay; | 2994 bool autoplay; |
| 2723 | 2995 |
| 2724 TimeRanges buffered; | 2996 TimeRanges buffered; |
| 2725 | 2997 |
| 2726 bool controls; | 2998 bool controls; |
| 2727 | 2999 |
| 2728 String currentSrc; | 3000 String currentSrc; |
| 2729 | 3001 |
| 2730 num currentTime; | 3002 num currentTime; |
| 2731 | 3003 |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3364 | 3636 |
| 3365 class IDBAny native "*IDBAny" { | 3637 class IDBAny native "*IDBAny" { |
| 3366 | 3638 |
| 3367 var dartObjectLocalStorage; | 3639 var dartObjectLocalStorage; |
| 3368 | 3640 |
| 3369 String get typeName() native; | 3641 String get typeName() native; |
| 3370 } | 3642 } |
| 3371 | 3643 |
| 3372 class IDBCursor native "*IDBCursor" { | 3644 class IDBCursor native "*IDBCursor" { |
| 3373 | 3645 |
| 3646 static final int NEXT = 0; |
| 3647 |
| 3648 static final int NEXT_NO_DUPLICATE = 1; |
| 3649 |
| 3650 static final int PREV = 2; |
| 3651 |
| 3652 static final int PREV_NO_DUPLICATE = 3; |
| 3653 |
| 3374 int direction; | 3654 int direction; |
| 3375 | 3655 |
| 3376 IDBKey key; | 3656 IDBKey key; |
| 3377 | 3657 |
| 3378 IDBKey primaryKey; | 3658 IDBKey primaryKey; |
| 3379 | 3659 |
| 3380 IDBAny source; | 3660 IDBAny source; |
| 3381 | 3661 |
| 3382 void continueFunction([IDBKey key = null]) native; | 3662 void continueFunction([IDBKey key = null]) native; |
| 3383 | 3663 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3428 | 3708 |
| 3429 String message; | 3709 String message; |
| 3430 | 3710 |
| 3431 var dartObjectLocalStorage; | 3711 var dartObjectLocalStorage; |
| 3432 | 3712 |
| 3433 String get typeName() native; | 3713 String get typeName() native; |
| 3434 } | 3714 } |
| 3435 | 3715 |
| 3436 class IDBDatabaseException native "*IDBDatabaseException" { | 3716 class IDBDatabaseException native "*IDBDatabaseException" { |
| 3437 | 3717 |
| 3718 static final int ABORT_ERR = 13; |
| 3719 |
| 3720 static final int CONSTRAINT_ERR = 4; |
| 3721 |
| 3722 static final int DATA_ERR = 5; |
| 3723 |
| 3724 static final int DEADLOCK_ERR = 11; |
| 3725 |
| 3726 static final int NON_TRANSIENT_ERR = 2; |
| 3727 |
| 3728 static final int NOT_ALLOWED_ERR = 6; |
| 3729 |
| 3730 static final int NOT_FOUND_ERR = 3; |
| 3731 |
| 3732 static final int NO_ERR = 0; |
| 3733 |
| 3734 static final int READ_ONLY_ERR = 12; |
| 3735 |
| 3736 static final int RECOVERABLE_ERR = 8; |
| 3737 |
| 3738 static final int SERIAL_ERR = 7; |
| 3739 |
| 3740 static final int TIMEOUT_ERR = 10; |
| 3741 |
| 3742 static final int TRANSIENT_ERR = 9; |
| 3743 |
| 3744 static final int UNKNOWN_ERR = 1; |
| 3745 |
| 3438 int code; | 3746 int code; |
| 3439 | 3747 |
| 3440 String message; | 3748 String message; |
| 3441 | 3749 |
| 3442 String name; | 3750 String name; |
| 3443 | 3751 |
| 3444 String toString() native; | 3752 String toString() native; |
| 3445 | 3753 |
| 3446 var dartObjectLocalStorage; | 3754 var dartObjectLocalStorage; |
| 3447 | 3755 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3542 | 3850 |
| 3543 IDBRequest put(String value, [IDBKey key = null]) native; | 3851 IDBRequest put(String value, [IDBKey key = null]) native; |
| 3544 | 3852 |
| 3545 var dartObjectLocalStorage; | 3853 var dartObjectLocalStorage; |
| 3546 | 3854 |
| 3547 String get typeName() native; | 3855 String get typeName() native; |
| 3548 } | 3856 } |
| 3549 | 3857 |
| 3550 class IDBRequest native "*IDBRequest" { | 3858 class IDBRequest native "*IDBRequest" { |
| 3551 | 3859 |
| 3860 static final int DONE = 2; |
| 3861 |
| 3862 static final int LOADING = 1; |
| 3863 |
| 3552 int errorCode; | 3864 int errorCode; |
| 3553 | 3865 |
| 3554 int readyState; | 3866 int readyState; |
| 3555 | 3867 |
| 3556 IDBAny result; | 3868 IDBAny result; |
| 3557 | 3869 |
| 3558 IDBAny source; | 3870 IDBAny source; |
| 3559 | 3871 |
| 3560 IDBTransaction transaction; | 3872 IDBTransaction transaction; |
| 3561 | 3873 |
| 3562 String webkitErrorMessage; | 3874 String webkitErrorMessage; |
| 3563 | 3875 |
| 3564 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 3876 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 3565 | 3877 |
| 3566 bool dispatchEvent(Event evt) native; | 3878 bool dispatchEvent(Event evt) native; |
| 3567 | 3879 |
| 3568 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 3880 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 3569 | 3881 |
| 3570 var dartObjectLocalStorage; | 3882 var dartObjectLocalStorage; |
| 3571 | 3883 |
| 3572 String get typeName() native; | 3884 String get typeName() native; |
| 3573 } | 3885 } |
| 3574 | 3886 |
| 3575 class IDBTransaction native "*IDBTransaction" { | 3887 class IDBTransaction native "*IDBTransaction" { |
| 3576 | 3888 |
| 3889 static final int READ_ONLY = 0; |
| 3890 |
| 3891 static final int READ_WRITE = 1; |
| 3892 |
| 3893 static final int VERSION_CHANGE = 2; |
| 3894 |
| 3577 IDBDatabase db; | 3895 IDBDatabase db; |
| 3578 | 3896 |
| 3579 int mode; | 3897 int mode; |
| 3580 | 3898 |
| 3581 void abort() native; | 3899 void abort() native; |
| 3582 | 3900 |
| 3583 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 3901 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 3584 | 3902 |
| 3585 bool dispatchEvent(Event evt) native; | 3903 bool dispatchEvent(Event evt) native; |
| 3586 | 3904 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3685 | 4003 |
| 3686 void showContextMenu(MouseEvent event, Object items) native; | 4004 void showContextMenu(MouseEvent event, Object items) native; |
| 3687 | 4005 |
| 3688 var dartObjectLocalStorage; | 4006 var dartObjectLocalStorage; |
| 3689 | 4007 |
| 3690 String get typeName() native; | 4008 String get typeName() native; |
| 3691 } | 4009 } |
| 3692 | 4010 |
| 3693 class Int16Array extends ArrayBufferView native "*Int16Array" { | 4011 class Int16Array extends ArrayBufferView native "*Int16Array" { |
| 3694 | 4012 |
| 4013 static final int BYTES_PER_ELEMENT = 2; |
| 4014 |
| 3695 int length; | 4015 int length; |
| 3696 | 4016 |
| 3697 Int16Array subarray(int start, [int end = null]) native; | 4017 Int16Array subarray(int start, [int end = null]) native; |
| 3698 } | 4018 } |
| 3699 | 4019 |
| 3700 class Int32Array extends ArrayBufferView native "*Int32Array" { | 4020 class Int32Array extends ArrayBufferView native "*Int32Array" { |
| 3701 | 4021 |
| 4022 static final int BYTES_PER_ELEMENT = 4; |
| 4023 |
| 3702 int length; | 4024 int length; |
| 3703 | 4025 |
| 3704 Int32Array subarray(int start, [int end = null]) native; | 4026 Int32Array subarray(int start, [int end = null]) native; |
| 3705 } | 4027 } |
| 3706 | 4028 |
| 3707 class Int8Array extends ArrayBufferView native "*Int8Array" { | 4029 class Int8Array extends ArrayBufferView native "*Int8Array" { |
| 3708 | 4030 |
| 4031 static final int BYTES_PER_ELEMENT = 1; |
| 4032 |
| 3709 int length; | 4033 int length; |
| 3710 | 4034 |
| 3711 Int8Array subarray(int start, [int end = null]) native; | 4035 Int8Array subarray(int start, [int end = null]) native; |
| 3712 } | 4036 } |
| 3713 | 4037 |
| 3714 class JavaScriptCallFrame native "*JavaScriptCallFrame" { | 4038 class JavaScriptCallFrame native "*JavaScriptCallFrame" { |
| 3715 | 4039 |
| 4040 static final int CATCH_SCOPE = 4; |
| 4041 |
| 4042 static final int CLOSURE_SCOPE = 3; |
| 4043 |
| 4044 static final int GLOBAL_SCOPE = 0; |
| 4045 |
| 4046 static final int LOCAL_SCOPE = 1; |
| 4047 |
| 4048 static final int WITH_SCOPE = 2; |
| 4049 |
| 3716 JavaScriptCallFrame caller; | 4050 JavaScriptCallFrame caller; |
| 3717 | 4051 |
| 3718 int column; | 4052 int column; |
| 3719 | 4053 |
| 3720 String functionName; | 4054 String functionName; |
| 3721 | 4055 |
| 3722 int line; | 4056 int line; |
| 3723 | 4057 |
| 3724 List scopeChain; | 4058 List scopeChain; |
| 3725 | 4059 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3785 | 4119 |
| 3786 String toString() native; | 4120 String toString() native; |
| 3787 | 4121 |
| 3788 var dartObjectLocalStorage; | 4122 var dartObjectLocalStorage; |
| 3789 | 4123 |
| 3790 String get typeName() native; | 4124 String get typeName() native; |
| 3791 } | 4125 } |
| 3792 | 4126 |
| 3793 class MediaError native "*MediaError" { | 4127 class MediaError native "*MediaError" { |
| 3794 | 4128 |
| 4129 static final int MEDIA_ERR_ABORTED = 1; |
| 4130 |
| 4131 static final int MEDIA_ERR_DECODE = 3; |
| 4132 |
| 4133 static final int MEDIA_ERR_NETWORK = 2; |
| 4134 |
| 4135 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; |
| 4136 |
| 3795 int code; | 4137 int code; |
| 3796 | 4138 |
| 3797 var dartObjectLocalStorage; | 4139 var dartObjectLocalStorage; |
| 3798 | 4140 |
| 3799 String get typeName() native; | 4141 String get typeName() native; |
| 3800 } | 4142 } |
| 3801 | 4143 |
| 3802 class MediaList native "*MediaList" { | 4144 class MediaList native "*MediaList" { |
| 3803 | 4145 |
| 3804 int length; | 4146 int length; |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3963 | 4305 |
| 3964 class MutationCallback native "*MutationCallback" { | 4306 class MutationCallback native "*MutationCallback" { |
| 3965 | 4307 |
| 3966 var dartObjectLocalStorage; | 4308 var dartObjectLocalStorage; |
| 3967 | 4309 |
| 3968 String get typeName() native; | 4310 String get typeName() native; |
| 3969 } | 4311 } |
| 3970 | 4312 |
| 3971 class MutationEvent extends Event native "*MutationEvent" { | 4313 class MutationEvent extends Event native "*MutationEvent" { |
| 3972 | 4314 |
| 4315 static final int ADDITION = 2; |
| 4316 |
| 4317 static final int MODIFICATION = 1; |
| 4318 |
| 4319 static final int REMOVAL = 3; |
| 4320 |
| 3973 int attrChange; | 4321 int attrChange; |
| 3974 | 4322 |
| 3975 String attrName; | 4323 String attrName; |
| 3976 | 4324 |
| 3977 String newValue; | 4325 String newValue; |
| 3978 | 4326 |
| 3979 String prevValue; | 4327 String prevValue; |
| 3980 | 4328 |
| 3981 Node relatedNode; | 4329 Node relatedNode; |
| 3982 | 4330 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4067 | 4415 |
| 4068 bool javaEnabled() native; | 4416 bool javaEnabled() native; |
| 4069 | 4417 |
| 4070 var dartObjectLocalStorage; | 4418 var dartObjectLocalStorage; |
| 4071 | 4419 |
| 4072 String get typeName() native; | 4420 String get typeName() native; |
| 4073 } | 4421 } |
| 4074 | 4422 |
| 4075 class NavigatorUserMediaError native "*NavigatorUserMediaError" { | 4423 class NavigatorUserMediaError native "*NavigatorUserMediaError" { |
| 4076 | 4424 |
| 4425 static final int PERMISSION_DENIED = 1; |
| 4426 |
| 4077 int code; | 4427 int code; |
| 4078 | 4428 |
| 4079 var dartObjectLocalStorage; | 4429 var dartObjectLocalStorage; |
| 4080 | 4430 |
| 4081 String get typeName() native; | 4431 String get typeName() native; |
| 4082 } | 4432 } |
| 4083 | 4433 |
| 4084 class NavigatorUserMediaErrorCallback native "*NavigatorUserMediaErrorCallback"
{ | 4434 class NavigatorUserMediaErrorCallback native "*NavigatorUserMediaErrorCallback"
{ |
| 4085 | 4435 |
| 4086 bool handleEvent(NavigatorUserMediaError error) native; | 4436 bool handleEvent(NavigatorUserMediaError error) native; |
| 4087 | 4437 |
| 4088 var dartObjectLocalStorage; | 4438 var dartObjectLocalStorage; |
| 4089 | 4439 |
| 4090 String get typeName() native; | 4440 String get typeName() native; |
| 4091 } | 4441 } |
| 4092 | 4442 |
| 4093 class NavigatorUserMediaSuccessCallback native "*NavigatorUserMediaSuccessCallba
ck" { | 4443 class NavigatorUserMediaSuccessCallback native "*NavigatorUserMediaSuccessCallba
ck" { |
| 4094 | 4444 |
| 4095 var dartObjectLocalStorage; | 4445 var dartObjectLocalStorage; |
| 4096 | 4446 |
| 4097 String get typeName() native; | 4447 String get typeName() native; |
| 4098 } | 4448 } |
| 4099 | 4449 |
| 4100 class Node native "*Node" { | 4450 class Node native "*Node" { |
| 4101 | 4451 |
| 4452 static final int ATTRIBUTE_NODE = 2; |
| 4453 |
| 4454 static final int CDATA_SECTION_NODE = 4; |
| 4455 |
| 4456 static final int COMMENT_NODE = 8; |
| 4457 |
| 4458 static final int DOCUMENT_FRAGMENT_NODE = 11; |
| 4459 |
| 4460 static final int DOCUMENT_NODE = 9; |
| 4461 |
| 4462 static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10; |
| 4463 |
| 4464 static final int DOCUMENT_POSITION_CONTAINS = 0x08; |
| 4465 |
| 4466 static final int DOCUMENT_POSITION_DISCONNECTED = 0x01; |
| 4467 |
| 4468 static final int DOCUMENT_POSITION_FOLLOWING = 0x04; |
| 4469 |
| 4470 static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20; |
| 4471 |
| 4472 static final int DOCUMENT_POSITION_PRECEDING = 0x02; |
| 4473 |
| 4474 static final int DOCUMENT_TYPE_NODE = 10; |
| 4475 |
| 4476 static final int ELEMENT_NODE = 1; |
| 4477 |
| 4478 static final int ENTITY_NODE = 6; |
| 4479 |
| 4480 static final int ENTITY_REFERENCE_NODE = 5; |
| 4481 |
| 4482 static final int NOTATION_NODE = 12; |
| 4483 |
| 4484 static final int PROCESSING_INSTRUCTION_NODE = 7; |
| 4485 |
| 4486 static final int TEXT_NODE = 3; |
| 4487 |
| 4102 NamedNodeMap attributes; | 4488 NamedNodeMap attributes; |
| 4103 | 4489 |
| 4104 String baseURI; | 4490 String baseURI; |
| 4105 | 4491 |
| 4106 NodeList childNodes; | 4492 NodeList childNodes; |
| 4107 | 4493 |
| 4108 Node firstChild; | 4494 Node firstChild; |
| 4109 | 4495 |
| 4110 Node lastChild; | 4496 Node lastChild; |
| 4111 | 4497 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4171 | 4557 |
| 4172 Node replaceChild(Node newChild, Node oldChild) native; | 4558 Node replaceChild(Node newChild, Node oldChild) native; |
| 4173 | 4559 |
| 4174 var dartObjectLocalStorage; | 4560 var dartObjectLocalStorage; |
| 4175 | 4561 |
| 4176 String get typeName() native; | 4562 String get typeName() native; |
| 4177 } | 4563 } |
| 4178 | 4564 |
| 4179 class NodeFilter native "*NodeFilter" { | 4565 class NodeFilter native "*NodeFilter" { |
| 4180 | 4566 |
| 4567 static final int FILTER_ACCEPT = 1; |
| 4568 |
| 4569 static final int FILTER_REJECT = 2; |
| 4570 |
| 4571 static final int FILTER_SKIP = 3; |
| 4572 |
| 4573 static final int SHOW_ALL = 0xFFFFFFFF; |
| 4574 |
| 4575 static final int SHOW_ATTRIBUTE = 0x00000002; |
| 4576 |
| 4577 static final int SHOW_CDATA_SECTION = 0x00000008; |
| 4578 |
| 4579 static final int SHOW_COMMENT = 0x00000080; |
| 4580 |
| 4581 static final int SHOW_DOCUMENT = 0x00000100; |
| 4582 |
| 4583 static final int SHOW_DOCUMENT_FRAGMENT = 0x00000400; |
| 4584 |
| 4585 static final int SHOW_DOCUMENT_TYPE = 0x00000200; |
| 4586 |
| 4587 static final int SHOW_ELEMENT = 0x00000001; |
| 4588 |
| 4589 static final int SHOW_ENTITY = 0x00000020; |
| 4590 |
| 4591 static final int SHOW_ENTITY_REFERENCE = 0x00000010; |
| 4592 |
| 4593 static final int SHOW_NOTATION = 0x00000800; |
| 4594 |
| 4595 static final int SHOW_PROCESSING_INSTRUCTION = 0x00000040; |
| 4596 |
| 4597 static final int SHOW_TEXT = 0x00000004; |
| 4598 |
| 4181 int acceptNode(Node n) native; | 4599 int acceptNode(Node n) native; |
| 4182 | 4600 |
| 4183 var dartObjectLocalStorage; | 4601 var dartObjectLocalStorage; |
| 4184 | 4602 |
| 4185 String get typeName() native; | 4603 String get typeName() native; |
| 4186 } | 4604 } |
| 4187 | 4605 |
| 4188 class NodeIterator native "*NodeIterator" { | 4606 class NodeIterator native "*NodeIterator" { |
| 4189 | 4607 |
| 4190 bool expandEntityReferences; | 4608 bool expandEntityReferences; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4272 | 4690 |
| 4273 void requestPermission(VoidCallback callback) native; | 4691 void requestPermission(VoidCallback callback) native; |
| 4274 | 4692 |
| 4275 var dartObjectLocalStorage; | 4693 var dartObjectLocalStorage; |
| 4276 | 4694 |
| 4277 String get typeName() native; | 4695 String get typeName() native; |
| 4278 } | 4696 } |
| 4279 | 4697 |
| 4280 class OESStandardDerivatives native "*OESStandardDerivatives" { | 4698 class OESStandardDerivatives native "*OESStandardDerivatives" { |
| 4281 | 4699 |
| 4700 static final int FRAGMENT_SHADER_DERIVATIVE_HINT_OES = 0x8B8B; |
| 4701 |
| 4282 var dartObjectLocalStorage; | 4702 var dartObjectLocalStorage; |
| 4283 | 4703 |
| 4284 String get typeName() native; | 4704 String get typeName() native; |
| 4285 } | 4705 } |
| 4286 | 4706 |
| 4287 class OESTextureFloat native "*OESTextureFloat" { | 4707 class OESTextureFloat native "*OESTextureFloat" { |
| 4288 | 4708 |
| 4289 var dartObjectLocalStorage; | 4709 var dartObjectLocalStorage; |
| 4290 | 4710 |
| 4291 String get typeName() native; | 4711 String get typeName() native; |
| 4292 } | 4712 } |
| 4293 | 4713 |
| 4294 class OESVertexArrayObject native "*OESVertexArrayObject" { | 4714 class OESVertexArrayObject native "*OESVertexArrayObject" { |
| 4295 | 4715 |
| 4716 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
| 4717 |
| 4296 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; | 4718 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; |
| 4297 | 4719 |
| 4298 WebGLVertexArrayObjectOES createVertexArrayOES() native; | 4720 WebGLVertexArrayObjectOES createVertexArrayOES() native; |
| 4299 | 4721 |
| 4300 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; | 4722 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; |
| 4301 | 4723 |
| 4302 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; | 4724 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject) native; |
| 4303 | 4725 |
| 4304 var dartObjectLocalStorage; | 4726 var dartObjectLocalStorage; |
| 4305 | 4727 |
| 4306 String get typeName() native; | 4728 String get typeName() native; |
| 4307 } | 4729 } |
| 4308 | 4730 |
| 4309 class OperationNotAllowedException native "*OperationNotAllowedException" { | 4731 class OperationNotAllowedException native "*OperationNotAllowedException" { |
| 4310 | 4732 |
| 4733 static final int NOT_ALLOWED_ERR = 1; |
| 4734 |
| 4311 int code; | 4735 int code; |
| 4312 | 4736 |
| 4313 String message; | 4737 String message; |
| 4314 | 4738 |
| 4315 String name; | 4739 String name; |
| 4316 | 4740 |
| 4317 String toString() native; | 4741 String toString() native; |
| 4318 | 4742 |
| 4319 var dartObjectLocalStorage; | 4743 var dartObjectLocalStorage; |
| 4320 | 4744 |
| 4321 String get typeName() native; | 4745 String get typeName() native; |
| 4322 } | 4746 } |
| 4323 | 4747 |
| 4324 class OverflowEvent extends Event native "*OverflowEvent" { | 4748 class OverflowEvent extends Event native "*OverflowEvent" { |
| 4325 | 4749 |
| 4750 static final int BOTH = 2; |
| 4751 |
| 4752 static final int HORIZONTAL = 0; |
| 4753 |
| 4754 static final int VERTICAL = 1; |
| 4755 |
| 4326 bool horizontalOverflow; | 4756 bool horizontalOverflow; |
| 4327 | 4757 |
| 4328 int orient; | 4758 int orient; |
| 4329 | 4759 |
| 4330 bool verticalOverflow; | 4760 bool verticalOverflow; |
| 4331 | 4761 |
| 4332 void initOverflowEvent(int orient, bool horizontalOverflow, bool verticalOverf
low) native; | 4762 void initOverflowEvent(int orient, bool horizontalOverflow, bool verticalOverf
low) native; |
| 4333 } | 4763 } |
| 4334 | 4764 |
| 4335 class PageTransitionEvent extends Event native "*PageTransitionEvent" { | 4765 class PageTransitionEvent extends Event native "*PageTransitionEvent" { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 4347 | 4777 |
| 4348 PerformanceTiming timing; | 4778 PerformanceTiming timing; |
| 4349 | 4779 |
| 4350 var dartObjectLocalStorage; | 4780 var dartObjectLocalStorage; |
| 4351 | 4781 |
| 4352 String get typeName() native; | 4782 String get typeName() native; |
| 4353 } | 4783 } |
| 4354 | 4784 |
| 4355 class PerformanceNavigation native "*PerformanceNavigation" { | 4785 class PerformanceNavigation native "*PerformanceNavigation" { |
| 4356 | 4786 |
| 4787 static final int TYPE_BACK_FORWARD = 2; |
| 4788 |
| 4789 static final int TYPE_NAVIGATE = 0; |
| 4790 |
| 4791 static final int TYPE_RELOAD = 1; |
| 4792 |
| 4793 static final int TYPE_RESERVED = 255; |
| 4794 |
| 4357 int redirectCount; | 4795 int redirectCount; |
| 4358 | 4796 |
| 4359 int type; | 4797 int type; |
| 4360 | 4798 |
| 4361 var dartObjectLocalStorage; | 4799 var dartObjectLocalStorage; |
| 4362 | 4800 |
| 4363 String get typeName() native; | 4801 String get typeName() native; |
| 4364 } | 4802 } |
| 4365 | 4803 |
| 4366 class PerformanceTiming native "*PerformanceTiming" { | 4804 class PerformanceTiming native "*PerformanceTiming" { |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4423 | 4861 |
| 4424 bool handleEvent(Geoposition position) native; | 4862 bool handleEvent(Geoposition position) native; |
| 4425 | 4863 |
| 4426 var dartObjectLocalStorage; | 4864 var dartObjectLocalStorage; |
| 4427 | 4865 |
| 4428 String get typeName() native; | 4866 String get typeName() native; |
| 4429 } | 4867 } |
| 4430 | 4868 |
| 4431 class PositionError native "*PositionError" { | 4869 class PositionError native "*PositionError" { |
| 4432 | 4870 |
| 4871 static final int PERMISSION_DENIED = 1; |
| 4872 |
| 4873 static final int POSITION_UNAVAILABLE = 2; |
| 4874 |
| 4875 static final int TIMEOUT = 3; |
| 4876 |
| 4433 int code; | 4877 int code; |
| 4434 | 4878 |
| 4435 String message; | 4879 String message; |
| 4436 | 4880 |
| 4437 var dartObjectLocalStorage; | 4881 var dartObjectLocalStorage; |
| 4438 | 4882 |
| 4439 String get typeName() native; | 4883 String get typeName() native; |
| 4440 } | 4884 } |
| 4441 | 4885 |
| 4442 class PositionErrorCallback native "*PositionErrorCallback" { | 4886 class PositionErrorCallback native "*PositionErrorCallback" { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4476 | 4920 |
| 4477 CSSPrimitiveValue red; | 4921 CSSPrimitiveValue red; |
| 4478 | 4922 |
| 4479 var dartObjectLocalStorage; | 4923 var dartObjectLocalStorage; |
| 4480 | 4924 |
| 4481 String get typeName() native; | 4925 String get typeName() native; |
| 4482 } | 4926 } |
| 4483 | 4927 |
| 4484 class Range native "*Range" { | 4928 class Range native "*Range" { |
| 4485 | 4929 |
| 4930 static final int END_TO_END = 2; |
| 4931 |
| 4932 static final int END_TO_START = 3; |
| 4933 |
| 4934 static final int NODE_AFTER = 1; |
| 4935 |
| 4936 static final int NODE_BEFORE = 0; |
| 4937 |
| 4938 static final int NODE_BEFORE_AND_AFTER = 2; |
| 4939 |
| 4940 static final int NODE_INSIDE = 3; |
| 4941 |
| 4942 static final int START_TO_END = 1; |
| 4943 |
| 4944 static final int START_TO_START = 0; |
| 4945 |
| 4486 bool collapsed; | 4946 bool collapsed; |
| 4487 | 4947 |
| 4488 Node commonAncestorContainer; | 4948 Node commonAncestorContainer; |
| 4489 | 4949 |
| 4490 Node endContainer; | 4950 Node endContainer; |
| 4491 | 4951 |
| 4492 int endOffset; | 4952 int endOffset; |
| 4493 | 4953 |
| 4494 Node startContainer; | 4954 Node startContainer; |
| 4495 | 4955 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4545 | 5005 |
| 4546 String toString() native; | 5006 String toString() native; |
| 4547 | 5007 |
| 4548 var dartObjectLocalStorage; | 5008 var dartObjectLocalStorage; |
| 4549 | 5009 |
| 4550 String get typeName() native; | 5010 String get typeName() native; |
| 4551 } | 5011 } |
| 4552 | 5012 |
| 4553 class RangeException native "*RangeException" { | 5013 class RangeException native "*RangeException" { |
| 4554 | 5014 |
| 5015 static final int BAD_BOUNDARYPOINTS_ERR = 1; |
| 5016 |
| 5017 static final int INVALID_NODE_TYPE_ERR = 2; |
| 5018 |
| 4555 int code; | 5019 int code; |
| 4556 | 5020 |
| 4557 String message; | 5021 String message; |
| 4558 | 5022 |
| 4559 String name; | 5023 String name; |
| 4560 | 5024 |
| 4561 String toString() native; | 5025 String toString() native; |
| 4562 | 5026 |
| 4563 var dartObjectLocalStorage; | 5027 var dartObjectLocalStorage; |
| 4564 | 5028 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 4575 | 5039 |
| 4576 CSSPrimitiveValue top; | 5040 CSSPrimitiveValue top; |
| 4577 | 5041 |
| 4578 var dartObjectLocalStorage; | 5042 var dartObjectLocalStorage; |
| 4579 | 5043 |
| 4580 String get typeName() native; | 5044 String get typeName() native; |
| 4581 } | 5045 } |
| 4582 | 5046 |
| 4583 class SQLError native "*SQLError" { | 5047 class SQLError native "*SQLError" { |
| 4584 | 5048 |
| 5049 static final int CONSTRAINT_ERR = 6; |
| 5050 |
| 5051 static final int DATABASE_ERR = 1; |
| 5052 |
| 5053 static final int QUOTA_ERR = 4; |
| 5054 |
| 5055 static final int SYNTAX_ERR = 5; |
| 5056 |
| 5057 static final int TIMEOUT_ERR = 7; |
| 5058 |
| 5059 static final int TOO_LARGE_ERR = 3; |
| 5060 |
| 5061 static final int UNKNOWN_ERR = 0; |
| 5062 |
| 5063 static final int VERSION_ERR = 2; |
| 5064 |
| 4585 int code; | 5065 int code; |
| 4586 | 5066 |
| 4587 String message; | 5067 String message; |
| 4588 | 5068 |
| 4589 var dartObjectLocalStorage; | 5069 var dartObjectLocalStorage; |
| 4590 | 5070 |
| 4591 String get typeName() native; | 5071 String get typeName() native; |
| 4592 } | 5072 } |
| 4593 | 5073 |
| 4594 class SQLException native "*SQLException" { | 5074 class SQLException native "*SQLException" { |
| 4595 | 5075 |
| 5076 static final int CONSTRAINT_ERR = 6; |
| 5077 |
| 5078 static final int DATABASE_ERR = 1; |
| 5079 |
| 5080 static final int QUOTA_ERR = 4; |
| 5081 |
| 5082 static final int SYNTAX_ERR = 5; |
| 5083 |
| 5084 static final int TIMEOUT_ERR = 7; |
| 5085 |
| 5086 static final int TOO_LARGE_ERR = 3; |
| 5087 |
| 5088 static final int UNKNOWN_ERR = 0; |
| 5089 |
| 5090 static final int VERSION_ERR = 2; |
| 5091 |
| 4596 int code; | 5092 int code; |
| 4597 | 5093 |
| 4598 String message; | 5094 String message; |
| 4599 | 5095 |
| 4600 var dartObjectLocalStorage; | 5096 var dartObjectLocalStorage; |
| 4601 | 5097 |
| 4602 String get typeName() native; | 5098 String get typeName() native; |
| 4603 } | 5099 } |
| 4604 | 5100 |
| 4605 class SQLResultSet native "*SQLResultSet" { | 5101 class SQLResultSet native "*SQLResultSet" { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4752 // From SVGURIReference | 5248 // From SVGURIReference |
| 4753 | 5249 |
| 4754 SVGAnimatedString href; | 5250 SVGAnimatedString href; |
| 4755 } | 5251 } |
| 4756 | 5252 |
| 4757 class SVGAltGlyphItemElement extends SVGElement native "*SVGAltGlyphItemElement"
{ | 5253 class SVGAltGlyphItemElement extends SVGElement native "*SVGAltGlyphItemElement"
{ |
| 4758 } | 5254 } |
| 4759 | 5255 |
| 4760 class SVGAngle native "*SVGAngle" { | 5256 class SVGAngle native "*SVGAngle" { |
| 4761 | 5257 |
| 5258 static final int SVG_ANGLETYPE_DEG = 2; |
| 5259 |
| 5260 static final int SVG_ANGLETYPE_GRAD = 4; |
| 5261 |
| 5262 static final int SVG_ANGLETYPE_RAD = 3; |
| 5263 |
| 5264 static final int SVG_ANGLETYPE_UNKNOWN = 0; |
| 5265 |
| 5266 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| 5267 |
| 4762 int unitType; | 5268 int unitType; |
| 4763 | 5269 |
| 4764 num value; | 5270 num value; |
| 4765 | 5271 |
| 4766 String valueAsString; | 5272 String valueAsString; |
| 4767 | 5273 |
| 4768 num valueInSpecifiedUnits; | 5274 num valueInSpecifiedUnits; |
| 4769 | 5275 |
| 4770 void convertToSpecifiedUnits(int unitType) native; | 5276 void convertToSpecifiedUnits(int unitType) native; |
| 4771 | 5277 |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5056 | 5562 |
| 5057 SVGMatrix getCTM() native; | 5563 SVGMatrix getCTM() native; |
| 5058 | 5564 |
| 5059 SVGMatrix getScreenCTM() native; | 5565 SVGMatrix getScreenCTM() native; |
| 5060 | 5566 |
| 5061 SVGMatrix getTransformToElement(SVGElement element) native; | 5567 SVGMatrix getTransformToElement(SVGElement element) native; |
| 5062 } | 5568 } |
| 5063 | 5569 |
| 5064 class SVGColor extends CSSValue native "*SVGColor" { | 5570 class SVGColor extends CSSValue native "*SVGColor" { |
| 5065 | 5571 |
| 5572 static final int SVG_COLORTYPE_CURRENTCOLOR = 3; |
| 5573 |
| 5574 static final int SVG_COLORTYPE_RGBCOLOR = 1; |
| 5575 |
| 5576 static final int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 5577 |
| 5578 static final int SVG_COLORTYPE_UNKNOWN = 0; |
| 5579 |
| 5066 int colorType; | 5580 int colorType; |
| 5067 | 5581 |
| 5068 RGBColor rgbColor; | 5582 RGBColor rgbColor; |
| 5069 | 5583 |
| 5070 void setColor(int colorType, String rgbColor, String iccColor) native; | 5584 void setColor(int colorType, String rgbColor, String iccColor) native; |
| 5071 | 5585 |
| 5072 void setRGBColor(String rgbColor) native; | 5586 void setRGBColor(String rgbColor) native; |
| 5073 | 5587 |
| 5074 void setRGBColorICCColor(String rgbColor, String iccColor) native; | 5588 void setRGBColorICCColor(String rgbColor, String iccColor) native; |
| 5075 } | 5589 } |
| 5076 | 5590 |
| 5077 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone
ntTransferFunctionElement" { | 5591 class SVGComponentTransferFunctionElement extends SVGElement native "*SVGCompone
ntTransferFunctionElement" { |
| 5078 | 5592 |
| 5593 static final int SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE = 3; |
| 5594 |
| 5595 static final int SVG_FECOMPONENTTRANSFER_TYPE_GAMMA = 5; |
| 5596 |
| 5597 static final int SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY = 1; |
| 5598 |
| 5599 static final int SVG_FECOMPONENTTRANSFER_TYPE_LINEAR = 4; |
| 5600 |
| 5601 static final int SVG_FECOMPONENTTRANSFER_TYPE_TABLE = 2; |
| 5602 |
| 5603 static final int SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN = 0; |
| 5604 |
| 5079 SVGAnimatedNumber amplitude; | 5605 SVGAnimatedNumber amplitude; |
| 5080 | 5606 |
| 5081 SVGAnimatedNumber exponent; | 5607 SVGAnimatedNumber exponent; |
| 5082 | 5608 |
| 5083 SVGAnimatedNumber intercept; | 5609 SVGAnimatedNumber intercept; |
| 5084 | 5610 |
| 5085 SVGAnimatedNumber offset; | 5611 SVGAnimatedNumber offset; |
| 5086 | 5612 |
| 5087 SVGAnimatedNumber slope; | 5613 SVGAnimatedNumber slope; |
| 5088 | 5614 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5292 | 5818 |
| 5293 SVGMatrix getCTM() native; | 5819 SVGMatrix getCTM() native; |
| 5294 | 5820 |
| 5295 SVGMatrix getScreenCTM() native; | 5821 SVGMatrix getScreenCTM() native; |
| 5296 | 5822 |
| 5297 SVGMatrix getTransformToElement(SVGElement element) native; | 5823 SVGMatrix getTransformToElement(SVGElement element) native; |
| 5298 } | 5824 } |
| 5299 | 5825 |
| 5300 class SVGException native "*SVGException" { | 5826 class SVGException native "*SVGException" { |
| 5301 | 5827 |
| 5828 static final int SVG_INVALID_VALUE_ERR = 1; |
| 5829 |
| 5830 static final int SVG_MATRIX_NOT_INVERTABLE = 2; |
| 5831 |
| 5832 static final int SVG_WRONG_TYPE_ERR = 0; |
| 5833 |
| 5302 int code; | 5834 int code; |
| 5303 | 5835 |
| 5304 String message; | 5836 String message; |
| 5305 | 5837 |
| 5306 String name; | 5838 String name; |
| 5307 | 5839 |
| 5308 String toString() native; | 5840 String toString() native; |
| 5309 | 5841 |
| 5310 var dartObjectLocalStorage; | 5842 var dartObjectLocalStorage; |
| 5311 | 5843 |
| 5312 String get typeName() native; | 5844 String get typeName() native; |
| 5313 } | 5845 } |
| 5314 | 5846 |
| 5315 class SVGExternalResourcesRequired native "*SVGExternalResourcesRequired" { | 5847 class SVGExternalResourcesRequired native "*SVGExternalResourcesRequired" { |
| 5316 | 5848 |
| 5317 SVGAnimatedBoolean externalResourcesRequired; | 5849 SVGAnimatedBoolean externalResourcesRequired; |
| 5318 | 5850 |
| 5319 var dartObjectLocalStorage; | 5851 var dartObjectLocalStorage; |
| 5320 | 5852 |
| 5321 String get typeName() native; | 5853 String get typeName() native; |
| 5322 } | 5854 } |
| 5323 | 5855 |
| 5324 class SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" { | 5856 class SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" { |
| 5325 | 5857 |
| 5858 static final int SVG_FEBLEND_MODE_DARKEN = 4; |
| 5859 |
| 5860 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; |
| 5861 |
| 5862 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; |
| 5863 |
| 5864 static final int SVG_FEBLEND_MODE_NORMAL = 1; |
| 5865 |
| 5866 static final int SVG_FEBLEND_MODE_SCREEN = 3; |
| 5867 |
| 5868 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 5869 |
| 5326 SVGAnimatedString in1; | 5870 SVGAnimatedString in1; |
| 5327 | 5871 |
| 5328 SVGAnimatedString in2; | 5872 SVGAnimatedString in2; |
| 5329 | 5873 |
| 5330 SVGAnimatedEnumeration mode; | 5874 SVGAnimatedEnumeration mode; |
| 5331 | 5875 |
| 5332 // From SVGFilterPrimitiveStandardAttributes | 5876 // From SVGFilterPrimitiveStandardAttributes |
| 5333 | 5877 |
| 5334 SVGAnimatedLength height; | 5878 SVGAnimatedLength height; |
| 5335 | 5879 |
| 5336 SVGAnimatedString result; | 5880 SVGAnimatedString result; |
| 5337 | 5881 |
| 5338 SVGAnimatedLength width; | 5882 SVGAnimatedLength width; |
| 5339 | 5883 |
| 5340 SVGAnimatedLength x; | 5884 SVGAnimatedLength x; |
| 5341 | 5885 |
| 5342 SVGAnimatedLength y; | 5886 SVGAnimatedLength y; |
| 5343 | 5887 |
| 5344 // From SVGStylable | 5888 // From SVGStylable |
| 5345 | 5889 |
| 5346 SVGAnimatedString className; | 5890 SVGAnimatedString className; |
| 5347 | 5891 |
| 5348 CSSStyleDeclaration style; | 5892 CSSStyleDeclaration style; |
| 5349 | 5893 |
| 5350 CSSValue getPresentationAttribute(String name) native; | 5894 CSSValue getPresentationAttribute(String name) native; |
| 5351 } | 5895 } |
| 5352 | 5896 |
| 5353 class SVGFEColorMatrixElement extends SVGElement native "*SVGFEColorMatrixElemen
t" { | 5897 class SVGFEColorMatrixElement extends SVGElement native "*SVGFEColorMatrixElemen
t" { |
| 5354 | 5898 |
| 5899 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
| 5900 |
| 5901 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
| 5902 |
| 5903 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
| 5904 |
| 5905 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 5906 |
| 5907 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 5908 |
| 5355 SVGAnimatedString in1; | 5909 SVGAnimatedString in1; |
| 5356 | 5910 |
| 5357 SVGAnimatedEnumeration type; | 5911 SVGAnimatedEnumeration type; |
| 5358 | 5912 |
| 5359 SVGAnimatedNumberList values; | 5913 SVGAnimatedNumberList values; |
| 5360 | 5914 |
| 5361 // From SVGFilterPrimitiveStandardAttributes | 5915 // From SVGFilterPrimitiveStandardAttributes |
| 5362 | 5916 |
| 5363 SVGAnimatedLength height; | 5917 SVGAnimatedLength height; |
| 5364 | 5918 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5399 | 5953 |
| 5400 SVGAnimatedString className; | 5954 SVGAnimatedString className; |
| 5401 | 5955 |
| 5402 CSSStyleDeclaration style; | 5956 CSSStyleDeclaration style; |
| 5403 | 5957 |
| 5404 CSSValue getPresentationAttribute(String name) native; | 5958 CSSValue getPresentationAttribute(String name) native; |
| 5405 } | 5959 } |
| 5406 | 5960 |
| 5407 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { | 5961 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { |
| 5408 | 5962 |
| 5963 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| 5964 |
| 5965 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
| 5966 |
| 5967 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
| 5968 |
| 5969 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
| 5970 |
| 5971 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
| 5972 |
| 5973 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 5974 |
| 5975 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 5976 |
| 5409 SVGAnimatedString in1; | 5977 SVGAnimatedString in1; |
| 5410 | 5978 |
| 5411 SVGAnimatedString in2; | 5979 SVGAnimatedString in2; |
| 5412 | 5980 |
| 5413 SVGAnimatedNumber k1; | 5981 SVGAnimatedNumber k1; |
| 5414 | 5982 |
| 5415 SVGAnimatedNumber k2; | 5983 SVGAnimatedNumber k2; |
| 5416 | 5984 |
| 5417 SVGAnimatedNumber k3; | 5985 SVGAnimatedNumber k3; |
| 5418 | 5986 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 5436 | 6004 |
| 5437 SVGAnimatedString className; | 6005 SVGAnimatedString className; |
| 5438 | 6006 |
| 5439 CSSStyleDeclaration style; | 6007 CSSStyleDeclaration style; |
| 5440 | 6008 |
| 5441 CSSValue getPresentationAttribute(String name) native; | 6009 CSSValue getPresentationAttribute(String name) native; |
| 5442 } | 6010 } |
| 5443 | 6011 |
| 5444 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix
Element" { | 6012 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix
Element" { |
| 5445 | 6013 |
| 6014 static final int SVG_EDGEMODE_DUPLICATE = 1; |
| 6015 |
| 6016 static final int SVG_EDGEMODE_NONE = 3; |
| 6017 |
| 6018 static final int SVG_EDGEMODE_UNKNOWN = 0; |
| 6019 |
| 6020 static final int SVG_EDGEMODE_WRAP = 2; |
| 6021 |
| 5446 SVGAnimatedNumber bias; | 6022 SVGAnimatedNumber bias; |
| 5447 | 6023 |
| 5448 SVGAnimatedNumber divisor; | 6024 SVGAnimatedNumber divisor; |
| 5449 | 6025 |
| 5450 SVGAnimatedEnumeration edgeMode; | 6026 SVGAnimatedEnumeration edgeMode; |
| 5451 | 6027 |
| 5452 SVGAnimatedString in1; | 6028 SVGAnimatedString in1; |
| 5453 | 6029 |
| 5454 SVGAnimatedNumberList kernelMatrix; | 6030 SVGAnimatedNumberList kernelMatrix; |
| 5455 | 6031 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5516 | 6092 |
| 5517 SVGAnimatedString className; | 6093 SVGAnimatedString className; |
| 5518 | 6094 |
| 5519 CSSStyleDeclaration style; | 6095 CSSStyleDeclaration style; |
| 5520 | 6096 |
| 5521 CSSValue getPresentationAttribute(String name) native; | 6097 CSSValue getPresentationAttribute(String name) native; |
| 5522 } | 6098 } |
| 5523 | 6099 |
| 5524 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM
apElement" { | 6100 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM
apElement" { |
| 5525 | 6101 |
| 6102 static final int SVG_CHANNEL_A = 4; |
| 6103 |
| 6104 static final int SVG_CHANNEL_B = 3; |
| 6105 |
| 6106 static final int SVG_CHANNEL_G = 2; |
| 6107 |
| 6108 static final int SVG_CHANNEL_R = 1; |
| 6109 |
| 6110 static final int SVG_CHANNEL_UNKNOWN = 0; |
| 6111 |
| 5526 SVGAnimatedString in1; | 6112 SVGAnimatedString in1; |
| 5527 | 6113 |
| 5528 SVGAnimatedString in2; | 6114 SVGAnimatedString in2; |
| 5529 | 6115 |
| 5530 SVGAnimatedNumber scale; | 6116 SVGAnimatedNumber scale; |
| 5531 | 6117 |
| 5532 SVGAnimatedEnumeration xChannelSelector; | 6118 SVGAnimatedEnumeration xChannelSelector; |
| 5533 | 6119 |
| 5534 SVGAnimatedEnumeration yChannelSelector; | 6120 SVGAnimatedEnumeration yChannelSelector; |
| 5535 | 6121 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5724 CSSValue getPresentationAttribute(String name) native; | 6310 CSSValue getPresentationAttribute(String name) native; |
| 5725 } | 6311 } |
| 5726 | 6312 |
| 5727 class SVGFEMergeNodeElement extends SVGElement native "*SVGFEMergeNodeElement" { | 6313 class SVGFEMergeNodeElement extends SVGElement native "*SVGFEMergeNodeElement" { |
| 5728 | 6314 |
| 5729 SVGAnimatedString in1; | 6315 SVGAnimatedString in1; |
| 5730 } | 6316 } |
| 5731 | 6317 |
| 5732 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement"
{ | 6318 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement"
{ |
| 5733 | 6319 |
| 6320 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 6321 |
| 6322 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 6323 |
| 6324 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 6325 |
| 5734 SVGAnimatedString in1; | 6326 SVGAnimatedString in1; |
| 5735 | 6327 |
| 5736 SVGAnimatedEnumeration operator; | 6328 SVGAnimatedEnumeration operator; |
| 5737 | 6329 |
| 5738 SVGAnimatedNumber radiusX; | 6330 SVGAnimatedNumber radiusX; |
| 5739 | 6331 |
| 5740 SVGAnimatedNumber radiusY; | 6332 SVGAnimatedNumber radiusY; |
| 5741 | 6333 |
| 5742 void setRadius(num radiusX, num radiusY) native; | 6334 void setRadius(num radiusX, num radiusY) native; |
| 5743 | 6335 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5870 | 6462 |
| 5871 SVGAnimatedString className; | 6463 SVGAnimatedString className; |
| 5872 | 6464 |
| 5873 CSSStyleDeclaration style; | 6465 CSSStyleDeclaration style; |
| 5874 | 6466 |
| 5875 CSSValue getPresentationAttribute(String name) native; | 6467 CSSValue getPresentationAttribute(String name) native; |
| 5876 } | 6468 } |
| 5877 | 6469 |
| 5878 class SVGFETurbulenceElement extends SVGElement native "*SVGFETurbulenceElement"
{ | 6470 class SVGFETurbulenceElement extends SVGElement native "*SVGFETurbulenceElement"
{ |
| 5879 | 6471 |
| 6472 static final int SVG_STITCHTYPE_NOSTITCH = 2; |
| 6473 |
| 6474 static final int SVG_STITCHTYPE_STITCH = 1; |
| 6475 |
| 6476 static final int SVG_STITCHTYPE_UNKNOWN = 0; |
| 6477 |
| 6478 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
| 6479 |
| 6480 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 6481 |
| 6482 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 6483 |
| 5880 SVGAnimatedNumber baseFrequencyX; | 6484 SVGAnimatedNumber baseFrequencyX; |
| 5881 | 6485 |
| 5882 SVGAnimatedNumber baseFrequencyY; | 6486 SVGAnimatedNumber baseFrequencyY; |
| 5883 | 6487 |
| 5884 SVGAnimatedInteger numOctaves; | 6488 SVGAnimatedInteger numOctaves; |
| 5885 | 6489 |
| 5886 SVGAnimatedNumber seed; | 6490 SVGAnimatedNumber seed; |
| 5887 | 6491 |
| 5888 SVGAnimatedEnumeration stitchTiles; | 6492 SVGAnimatedEnumeration stitchTiles; |
| 5889 | 6493 |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6126 | 6730 |
| 6127 SVGAnimatedString className; | 6731 SVGAnimatedString className; |
| 6128 | 6732 |
| 6129 CSSStyleDeclaration style; | 6733 CSSStyleDeclaration style; |
| 6130 | 6734 |
| 6131 CSSValue getPresentationAttribute(String name) native; | 6735 CSSValue getPresentationAttribute(String name) native; |
| 6132 } | 6736 } |
| 6133 | 6737 |
| 6134 class SVGGradientElement extends SVGElement native "*SVGGradientElement" { | 6738 class SVGGradientElement extends SVGElement native "*SVGGradientElement" { |
| 6135 | 6739 |
| 6740 static final int SVG_SPREADMETHOD_PAD = 1; |
| 6741 |
| 6742 static final int SVG_SPREADMETHOD_REFLECT = 2; |
| 6743 |
| 6744 static final int SVG_SPREADMETHOD_REPEAT = 3; |
| 6745 |
| 6746 static final int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 6747 |
| 6136 SVGAnimatedTransformList gradientTransform; | 6748 SVGAnimatedTransformList gradientTransform; |
| 6137 | 6749 |
| 6138 SVGAnimatedEnumeration gradientUnits; | 6750 SVGAnimatedEnumeration gradientUnits; |
| 6139 | 6751 |
| 6140 SVGAnimatedEnumeration spreadMethod; | 6752 SVGAnimatedEnumeration spreadMethod; |
| 6141 | 6753 |
| 6142 // From SVGURIReference | 6754 // From SVGURIReference |
| 6143 | 6755 |
| 6144 SVGAnimatedString href; | 6756 SVGAnimatedString href; |
| 6145 | 6757 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6228 | 6840 |
| 6229 String xmlspace; | 6841 String xmlspace; |
| 6230 | 6842 |
| 6231 var dartObjectLocalStorage; | 6843 var dartObjectLocalStorage; |
| 6232 | 6844 |
| 6233 String get typeName() native; | 6845 String get typeName() native; |
| 6234 } | 6846 } |
| 6235 | 6847 |
| 6236 class SVGLength native "*SVGLength" { | 6848 class SVGLength native "*SVGLength" { |
| 6237 | 6849 |
| 6850 static final int SVG_LENGTHTYPE_CM = 6; |
| 6851 |
| 6852 static final int SVG_LENGTHTYPE_EMS = 3; |
| 6853 |
| 6854 static final int SVG_LENGTHTYPE_EXS = 4; |
| 6855 |
| 6856 static final int SVG_LENGTHTYPE_IN = 8; |
| 6857 |
| 6858 static final int SVG_LENGTHTYPE_MM = 7; |
| 6859 |
| 6860 static final int SVG_LENGTHTYPE_NUMBER = 1; |
| 6861 |
| 6862 static final int SVG_LENGTHTYPE_PC = 10; |
| 6863 |
| 6864 static final int SVG_LENGTHTYPE_PERCENTAGE = 2; |
| 6865 |
| 6866 static final int SVG_LENGTHTYPE_PT = 9; |
| 6867 |
| 6868 static final int SVG_LENGTHTYPE_PX = 5; |
| 6869 |
| 6870 static final int SVG_LENGTHTYPE_UNKNOWN = 0; |
| 6871 |
| 6238 int unitType; | 6872 int unitType; |
| 6239 | 6873 |
| 6240 num value; | 6874 num value; |
| 6241 | 6875 |
| 6242 String valueAsString; | 6876 String valueAsString; |
| 6243 | 6877 |
| 6244 num valueInSpecifiedUnits; | 6878 num valueInSpecifiedUnits; |
| 6245 | 6879 |
| 6246 void convertToSpecifiedUnits(int unitType) native; | 6880 void convertToSpecifiedUnits(int unitType) native; |
| 6247 | 6881 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6368 | 7002 |
| 6369 SVGAnimatedString href; | 7003 SVGAnimatedString href; |
| 6370 | 7004 |
| 6371 // From SVGExternalResourcesRequired | 7005 // From SVGExternalResourcesRequired |
| 6372 | 7006 |
| 6373 SVGAnimatedBoolean externalResourcesRequired; | 7007 SVGAnimatedBoolean externalResourcesRequired; |
| 6374 } | 7008 } |
| 6375 | 7009 |
| 6376 class SVGMarkerElement extends SVGElement native "*SVGMarkerElement" { | 7010 class SVGMarkerElement extends SVGElement native "*SVGMarkerElement" { |
| 6377 | 7011 |
| 7012 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 7013 |
| 7014 static final int SVG_MARKERUNITS_UNKNOWN = 0; |
| 7015 |
| 7016 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 7017 |
| 7018 static final int SVG_MARKER_ORIENT_ANGLE = 2; |
| 7019 |
| 7020 static final int SVG_MARKER_ORIENT_AUTO = 1; |
| 7021 |
| 7022 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 7023 |
| 6378 SVGAnimatedLength markerHeight; | 7024 SVGAnimatedLength markerHeight; |
| 6379 | 7025 |
| 6380 SVGAnimatedEnumeration markerUnits; | 7026 SVGAnimatedEnumeration markerUnits; |
| 6381 | 7027 |
| 6382 SVGAnimatedLength markerWidth; | 7028 SVGAnimatedLength markerWidth; |
| 6383 | 7029 |
| 6384 SVGAnimatedAngle orientAngle; | 7030 SVGAnimatedAngle orientAngle; |
| 6385 | 7031 |
| 6386 SVGAnimatedEnumeration orientType; | 7032 SVGAnimatedEnumeration orientType; |
| 6387 | 7033 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6535 | 7181 |
| 6536 SVGNumber replaceItem(SVGNumber item, int index) native; | 7182 SVGNumber replaceItem(SVGNumber item, int index) native; |
| 6537 | 7183 |
| 6538 var dartObjectLocalStorage; | 7184 var dartObjectLocalStorage; |
| 6539 | 7185 |
| 6540 String get typeName() native; | 7186 String get typeName() native; |
| 6541 } | 7187 } |
| 6542 | 7188 |
| 6543 class SVGPaint extends SVGColor native "*SVGPaint" { | 7189 class SVGPaint extends SVGColor native "*SVGPaint" { |
| 6544 | 7190 |
| 7191 static final int SVG_PAINTTYPE_CURRENTCOLOR = 102; |
| 7192 |
| 7193 static final int SVG_PAINTTYPE_NONE = 101; |
| 7194 |
| 7195 static final int SVG_PAINTTYPE_RGBCOLOR = 1; |
| 7196 |
| 7197 static final int SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR = 2; |
| 7198 |
| 7199 static final int SVG_PAINTTYPE_UNKNOWN = 0; |
| 7200 |
| 7201 static final int SVG_PAINTTYPE_URI = 107; |
| 7202 |
| 7203 static final int SVG_PAINTTYPE_URI_CURRENTCOLOR = 104; |
| 7204 |
| 7205 static final int SVG_PAINTTYPE_URI_NONE = 103; |
| 7206 |
| 7207 static final int SVG_PAINTTYPE_URI_RGBCOLOR = 105; |
| 7208 |
| 7209 static final int SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR = 106; |
| 7210 |
| 6545 int paintType; | 7211 int paintType; |
| 6546 | 7212 |
| 6547 String uri; | 7213 String uri; |
| 6548 | 7214 |
| 6549 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat
ive; | 7215 void setPaint(int paintType, String uri, String rgbColor, String iccColor) nat
ive; |
| 6550 | 7216 |
| 6551 void setUri(String uri) native; | 7217 void setUri(String uri) native; |
| 6552 } | 7218 } |
| 6553 | 7219 |
| 6554 class SVGPathElement extends SVGElement native "*SVGPathElement" { | 7220 class SVGPathElement extends SVGElement native "*SVGPathElement" { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6649 | 7315 |
| 6650 SVGMatrix getCTM() native; | 7316 SVGMatrix getCTM() native; |
| 6651 | 7317 |
| 6652 SVGMatrix getScreenCTM() native; | 7318 SVGMatrix getScreenCTM() native; |
| 6653 | 7319 |
| 6654 SVGMatrix getTransformToElement(SVGElement element) native; | 7320 SVGMatrix getTransformToElement(SVGElement element) native; |
| 6655 } | 7321 } |
| 6656 | 7322 |
| 6657 class SVGPathSeg native "*SVGPathSeg" { | 7323 class SVGPathSeg native "*SVGPathSeg" { |
| 6658 | 7324 |
| 7325 static final int PATHSEG_ARC_ABS = 10; |
| 7326 |
| 7327 static final int PATHSEG_ARC_REL = 11; |
| 7328 |
| 7329 static final int PATHSEG_CLOSEPATH = 1; |
| 7330 |
| 7331 static final int PATHSEG_CURVETO_CUBIC_ABS = 6; |
| 7332 |
| 7333 static final int PATHSEG_CURVETO_CUBIC_REL = 7; |
| 7334 |
| 7335 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16; |
| 7336 |
| 7337 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17; |
| 7338 |
| 7339 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8; |
| 7340 |
| 7341 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9; |
| 7342 |
| 7343 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18; |
| 7344 |
| 7345 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19; |
| 7346 |
| 7347 static final int PATHSEG_LINETO_ABS = 4; |
| 7348 |
| 7349 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12; |
| 7350 |
| 7351 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13; |
| 7352 |
| 7353 static final int PATHSEG_LINETO_REL = 5; |
| 7354 |
| 7355 static final int PATHSEG_LINETO_VERTICAL_ABS = 14; |
| 7356 |
| 7357 static final int PATHSEG_LINETO_VERTICAL_REL = 15; |
| 7358 |
| 7359 static final int PATHSEG_MOVETO_ABS = 2; |
| 7360 |
| 7361 static final int PATHSEG_MOVETO_REL = 3; |
| 7362 |
| 7363 static final int PATHSEG_UNKNOWN = 0; |
| 7364 |
| 6659 int pathSegType; | 7365 int pathSegType; |
| 6660 | 7366 |
| 6661 String pathSegTypeAsLetter; | 7367 String pathSegTypeAsLetter; |
| 6662 | 7368 |
| 6663 var dartObjectLocalStorage; | 7369 var dartObjectLocalStorage; |
| 6664 | 7370 |
| 6665 String get typeName() native; | 7371 String get typeName() native; |
| 6666 } | 7372 } |
| 6667 | 7373 |
| 6668 class SVGPathSegArcAbs extends SVGPathSeg native "*SVGPathSegArcAbs" { | 7374 class SVGPathSegArcAbs extends SVGPathSeg native "*SVGPathSegArcAbs" { |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7053 | 7759 |
| 7054 SVGMatrix getCTM() native; | 7760 SVGMatrix getCTM() native; |
| 7055 | 7761 |
| 7056 SVGMatrix getScreenCTM() native; | 7762 SVGMatrix getScreenCTM() native; |
| 7057 | 7763 |
| 7058 SVGMatrix getTransformToElement(SVGElement element) native; | 7764 SVGMatrix getTransformToElement(SVGElement element) native; |
| 7059 } | 7765 } |
| 7060 | 7766 |
| 7061 class SVGPreserveAspectRatio native "*SVGPreserveAspectRatio" { | 7767 class SVGPreserveAspectRatio native "*SVGPreserveAspectRatio" { |
| 7062 | 7768 |
| 7769 static final int SVG_MEETORSLICE_MEET = 1; |
| 7770 |
| 7771 static final int SVG_MEETORSLICE_SLICE = 2; |
| 7772 |
| 7773 static final int SVG_MEETORSLICE_UNKNOWN = 0; |
| 7774 |
| 7775 static final int SVG_PRESERVEASPECTRATIO_NONE = 1; |
| 7776 |
| 7777 static final int SVG_PRESERVEASPECTRATIO_UNKNOWN = 0; |
| 7778 |
| 7779 static final int SVG_PRESERVEASPECTRATIO_XMAXYMAX = 10; |
| 7780 |
| 7781 static final int SVG_PRESERVEASPECTRATIO_XMAXYMID = 7; |
| 7782 |
| 7783 static final int SVG_PRESERVEASPECTRATIO_XMAXYMIN = 4; |
| 7784 |
| 7785 static final int SVG_PRESERVEASPECTRATIO_XMIDYMAX = 9; |
| 7786 |
| 7787 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; |
| 7788 |
| 7789 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; |
| 7790 |
| 7791 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; |
| 7792 |
| 7793 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; |
| 7794 |
| 7795 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; |
| 7796 |
| 7063 int align; | 7797 int align; |
| 7064 | 7798 |
| 7065 int meetOrSlice; | 7799 int meetOrSlice; |
| 7066 | 7800 |
| 7067 var dartObjectLocalStorage; | 7801 var dartObjectLocalStorage; |
| 7068 | 7802 |
| 7069 String get typeName() native; | 7803 String get typeName() native; |
| 7070 } | 7804 } |
| 7071 | 7805 |
| 7072 class SVGRadialGradientElement extends SVGGradientElement native "*SVGRadialGrad
ientElement" { | 7806 class SVGRadialGradientElement extends SVGGradientElement native "*SVGRadialGrad
ientElement" { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7153 | 7887 |
| 7154 SVGMatrix getCTM() native; | 7888 SVGMatrix getCTM() native; |
| 7155 | 7889 |
| 7156 SVGMatrix getScreenCTM() native; | 7890 SVGMatrix getScreenCTM() native; |
| 7157 | 7891 |
| 7158 SVGMatrix getTransformToElement(SVGElement element) native; | 7892 SVGMatrix getTransformToElement(SVGElement element) native; |
| 7159 } | 7893 } |
| 7160 | 7894 |
| 7161 class SVGRenderingIntent native "*SVGRenderingIntent" { | 7895 class SVGRenderingIntent native "*SVGRenderingIntent" { |
| 7162 | 7896 |
| 7897 static final int RENDERING_INTENT_ABSOLUTE_COLORIMETRIC = 5; |
| 7898 |
| 7899 static final int RENDERING_INTENT_AUTO = 1; |
| 7900 |
| 7901 static final int RENDERING_INTENT_PERCEPTUAL = 2; |
| 7902 |
| 7903 static final int RENDERING_INTENT_RELATIVE_COLORIMETRIC = 3; |
| 7904 |
| 7905 static final int RENDERING_INTENT_SATURATION = 4; |
| 7906 |
| 7907 static final int RENDERING_INTENT_UNKNOWN = 0; |
| 7908 |
| 7163 var dartObjectLocalStorage; | 7909 var dartObjectLocalStorage; |
| 7164 | 7910 |
| 7165 String get typeName() native; | 7911 String get typeName() native; |
| 7166 } | 7912 } |
| 7167 | 7913 |
| 7168 class SVGSVGElement extends SVGElement native "*SVGSVGElement" { | 7914 class SVGSVGElement extends SVGElement native "*SVGSVGElement" { |
| 7169 | 7915 |
| 7170 String contentScriptType; | 7916 String contentScriptType; |
| 7171 | 7917 |
| 7172 String contentStyleType; | 7918 String contentStyleType; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7470 | 8216 |
| 7471 bool hasExtension(String extension) native; | 8217 bool hasExtension(String extension) native; |
| 7472 | 8218 |
| 7473 var dartObjectLocalStorage; | 8219 var dartObjectLocalStorage; |
| 7474 | 8220 |
| 7475 String get typeName() native; | 8221 String get typeName() native; |
| 7476 } | 8222 } |
| 7477 | 8223 |
| 7478 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" { | 8224 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" { |
| 7479 | 8225 |
| 8226 static final int LENGTHADJUST_SPACING = 1; |
| 8227 |
| 8228 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 8229 |
| 8230 static final int LENGTHADJUST_UNKNOWN = 0; |
| 8231 |
| 7480 SVGAnimatedEnumeration lengthAdjust; | 8232 SVGAnimatedEnumeration lengthAdjust; |
| 7481 | 8233 |
| 7482 SVGAnimatedLength textLength; | 8234 SVGAnimatedLength textLength; |
| 7483 | 8235 |
| 7484 int getCharNumAtPosition(SVGPoint point) native; | 8236 int getCharNumAtPosition(SVGPoint point) native; |
| 7485 | 8237 |
| 7486 num getComputedTextLength() native; | 8238 num getComputedTextLength() native; |
| 7487 | 8239 |
| 7488 SVGPoint getEndPositionOfChar(int offset) native; | 8240 SVGPoint getEndPositionOfChar(int offset) native; |
| 7489 | 8241 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7544 | 8296 |
| 7545 SVGMatrix getCTM() native; | 8297 SVGMatrix getCTM() native; |
| 7546 | 8298 |
| 7547 SVGMatrix getScreenCTM() native; | 8299 SVGMatrix getScreenCTM() native; |
| 7548 | 8300 |
| 7549 SVGMatrix getTransformToElement(SVGElement element) native; | 8301 SVGMatrix getTransformToElement(SVGElement element) native; |
| 7550 } | 8302 } |
| 7551 | 8303 |
| 7552 class SVGTextPathElement extends SVGTextContentElement native "*SVGTextPathEleme
nt" { | 8304 class SVGTextPathElement extends SVGTextContentElement native "*SVGTextPathEleme
nt" { |
| 7553 | 8305 |
| 8306 static final int TEXTPATH_METHODTYPE_ALIGN = 1; |
| 8307 |
| 8308 static final int TEXTPATH_METHODTYPE_STRETCH = 2; |
| 8309 |
| 8310 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; |
| 8311 |
| 8312 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; |
| 8313 |
| 8314 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 8315 |
| 8316 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 8317 |
| 7554 SVGAnimatedEnumeration method; | 8318 SVGAnimatedEnumeration method; |
| 7555 | 8319 |
| 7556 SVGAnimatedEnumeration spacing; | 8320 SVGAnimatedEnumeration spacing; |
| 7557 | 8321 |
| 7558 SVGAnimatedLength startOffset; | 8322 SVGAnimatedLength startOffset; |
| 7559 | 8323 |
| 7560 // From SVGURIReference | 8324 // From SVGURIReference |
| 7561 | 8325 |
| 7562 SVGAnimatedString href; | 8326 SVGAnimatedString href; |
| 7563 } | 8327 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 7587 | 8351 |
| 7588 SVGAnimatedString className; | 8352 SVGAnimatedString className; |
| 7589 | 8353 |
| 7590 CSSStyleDeclaration style; | 8354 CSSStyleDeclaration style; |
| 7591 | 8355 |
| 7592 CSSValue getPresentationAttribute(String name) native; | 8356 CSSValue getPresentationAttribute(String name) native; |
| 7593 } | 8357 } |
| 7594 | 8358 |
| 7595 class SVGTransform native "*SVGTransform" { | 8359 class SVGTransform native "*SVGTransform" { |
| 7596 | 8360 |
| 8361 static final int SVG_TRANSFORM_MATRIX = 1; |
| 8362 |
| 8363 static final int SVG_TRANSFORM_ROTATE = 4; |
| 8364 |
| 8365 static final int SVG_TRANSFORM_SCALE = 3; |
| 8366 |
| 8367 static final int SVG_TRANSFORM_SKEWX = 5; |
| 8368 |
| 8369 static final int SVG_TRANSFORM_SKEWY = 6; |
| 8370 |
| 8371 static final int SVG_TRANSFORM_TRANSLATE = 2; |
| 8372 |
| 8373 static final int SVG_TRANSFORM_UNKNOWN = 0; |
| 8374 |
| 7597 num angle; | 8375 num angle; |
| 7598 | 8376 |
| 7599 SVGMatrix matrix; | 8377 SVGMatrix matrix; |
| 7600 | 8378 |
| 7601 int type; | 8379 int type; |
| 7602 | 8380 |
| 7603 void setMatrix(SVGMatrix matrix) native; | 8381 void setMatrix(SVGMatrix matrix) native; |
| 7604 | 8382 |
| 7605 void setRotate(num angle, num cx, num cy) native; | 8383 void setRotate(num angle, num cx, num cy) native; |
| 7606 | 8384 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7653 | 8431 |
| 7654 SVGAnimatedString href; | 8432 SVGAnimatedString href; |
| 7655 | 8433 |
| 7656 var dartObjectLocalStorage; | 8434 var dartObjectLocalStorage; |
| 7657 | 8435 |
| 7658 String get typeName() native; | 8436 String get typeName() native; |
| 7659 } | 8437 } |
| 7660 | 8438 |
| 7661 class SVGUnitTypes native "*SVGUnitTypes" { | 8439 class SVGUnitTypes native "*SVGUnitTypes" { |
| 7662 | 8440 |
| 8441 static final int SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2; |
| 8442 |
| 8443 static final int SVG_UNIT_TYPE_UNKNOWN = 0; |
| 8444 |
| 8445 static final int SVG_UNIT_TYPE_USERSPACEONUSE = 1; |
| 8446 |
| 7663 var dartObjectLocalStorage; | 8447 var dartObjectLocalStorage; |
| 7664 | 8448 |
| 7665 String get typeName() native; | 8449 String get typeName() native; |
| 7666 } | 8450 } |
| 7667 | 8451 |
| 7668 class SVGUseElement extends SVGElement native "*SVGUseElement" { | 8452 class SVGUseElement extends SVGElement native "*SVGUseElement" { |
| 7669 | 8453 |
| 7670 SVGElementInstance animatedInstanceRoot; | 8454 SVGElementInstance animatedInstanceRoot; |
| 7671 | 8455 |
| 7672 SVGAnimatedLength height; | 8456 SVGAnimatedLength height; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7768 | 8552 |
| 7769 // From SVGFitToViewBox | 8553 // From SVGFitToViewBox |
| 7770 | 8554 |
| 7771 SVGAnimatedPreserveAspectRatio preserveAspectRatio; | 8555 SVGAnimatedPreserveAspectRatio preserveAspectRatio; |
| 7772 | 8556 |
| 7773 SVGAnimatedRect viewBox; | 8557 SVGAnimatedRect viewBox; |
| 7774 } | 8558 } |
| 7775 | 8559 |
| 7776 class SVGZoomAndPan native "*SVGZoomAndPan" { | 8560 class SVGZoomAndPan native "*SVGZoomAndPan" { |
| 7777 | 8561 |
| 8562 static final int SVG_ZOOMANDPAN_DISABLE = 1; |
| 8563 |
| 8564 static final int SVG_ZOOMANDPAN_MAGNIFY = 2; |
| 8565 |
| 8566 static final int SVG_ZOOMANDPAN_UNKNOWN = 0; |
| 8567 |
| 7778 int zoomAndPan; | 8568 int zoomAndPan; |
| 7779 | 8569 |
| 7780 var dartObjectLocalStorage; | 8570 var dartObjectLocalStorage; |
| 7781 | 8571 |
| 7782 String get typeName() native; | 8572 String get typeName() native; |
| 7783 } | 8573 } |
| 7784 | 8574 |
| 7785 class SVGZoomEvent extends UIEvent native "*SVGZoomEvent" { | 8575 class SVGZoomEvent extends UIEvent native "*SVGZoomEvent" { |
| 7786 | 8576 |
| 7787 num newScale; | 8577 num newScale; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7922 | 8712 |
| 7923 Storage storageArea; | 8713 Storage storageArea; |
| 7924 | 8714 |
| 7925 String url; | 8715 String url; |
| 7926 | 8716 |
| 7927 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto
rageAreaArg) native; | 8717 void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, S
tring keyArg, String oldValueArg, String newValueArg, String urlArg, Storage sto
rageAreaArg) native; |
| 7928 } | 8718 } |
| 7929 | 8719 |
| 7930 class StorageInfo native "*StorageInfo" { | 8720 class StorageInfo native "*StorageInfo" { |
| 7931 | 8721 |
| 8722 static final int PERSISTENT = 1; |
| 8723 |
| 8724 static final int TEMPORARY = 0; |
| 8725 |
| 7932 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck = null, StorageInfoErrorCallback errorCallback = null]) native; | 8726 void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallba
ck = null, StorageInfoErrorCallback errorCallback = null]) native; |
| 7933 | 8727 |
| 7934 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native
; | 8728 void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallb
ack quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native
; |
| 7935 | 8729 |
| 7936 var dartObjectLocalStorage; | 8730 var dartObjectLocalStorage; |
| 7937 | 8731 |
| 7938 String get typeName() native; | 8732 String get typeName() native; |
| 7939 } | 8733 } |
| 7940 | 8734 |
| 7941 class StorageInfoErrorCallback native "*StorageInfoErrorCallback" { | 8735 class StorageInfoErrorCallback native "*StorageInfoErrorCallback" { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8039 | 8833 |
| 8040 num width; | 8834 num width; |
| 8041 | 8835 |
| 8042 var dartObjectLocalStorage; | 8836 var dartObjectLocalStorage; |
| 8043 | 8837 |
| 8044 String get typeName() native; | 8838 String get typeName() native; |
| 8045 } | 8839 } |
| 8046 | 8840 |
| 8047 class TextTrack native "*TextTrack" { | 8841 class TextTrack native "*TextTrack" { |
| 8048 | 8842 |
| 8843 static final int Disabled = 0; |
| 8844 |
| 8845 static final int Error = 3; |
| 8846 |
| 8847 static final int Hidden = 1; |
| 8848 |
| 8849 static final int Loaded = 2; |
| 8850 |
| 8851 static final int Loading = 1; |
| 8852 |
| 8853 static final int None = 0; |
| 8854 |
| 8855 static final int Showing = 2; |
| 8856 |
| 8049 TextTrackCueList activeCues; | 8857 TextTrackCueList activeCues; |
| 8050 | 8858 |
| 8051 TextTrackCueList cues; | 8859 TextTrackCueList cues; |
| 8052 | 8860 |
| 8053 String kind; | 8861 String kind; |
| 8054 | 8862 |
| 8055 String label; | 8863 String label; |
| 8056 | 8864 |
| 8057 String language; | 8865 String language; |
| 8058 | 8866 |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8240 | 9048 |
| 8241 DOMWindow view; | 9049 DOMWindow view; |
| 8242 | 9050 |
| 8243 int which; | 9051 int which; |
| 8244 | 9052 |
| 8245 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view,
int detail) native; | 9053 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view,
int detail) native; |
| 8246 } | 9054 } |
| 8247 | 9055 |
| 8248 class Uint16Array extends ArrayBufferView native "*Uint16Array" { | 9056 class Uint16Array extends ArrayBufferView native "*Uint16Array" { |
| 8249 | 9057 |
| 9058 static final int BYTES_PER_ELEMENT = 2; |
| 9059 |
| 8250 int length; | 9060 int length; |
| 8251 | 9061 |
| 8252 Uint16Array subarray(int start, [int end = null]) native; | 9062 Uint16Array subarray(int start, [int end = null]) native; |
| 8253 } | 9063 } |
| 8254 | 9064 |
| 8255 class Uint32Array extends ArrayBufferView native "*Uint32Array" { | 9065 class Uint32Array extends ArrayBufferView native "*Uint32Array" { |
| 8256 | 9066 |
| 9067 static final int BYTES_PER_ELEMENT = 4; |
| 9068 |
| 8257 int length; | 9069 int length; |
| 8258 | 9070 |
| 8259 Uint32Array subarray(int start, [int end = null]) native; | 9071 Uint32Array subarray(int start, [int end = null]) native; |
| 8260 } | 9072 } |
| 8261 | 9073 |
| 8262 class Uint8Array extends ArrayBufferView native "*Uint8Array" { | 9074 class Uint8Array extends ArrayBufferView native "*Uint8Array" { |
| 8263 | 9075 |
| 9076 static final int BYTES_PER_ELEMENT = 1; |
| 9077 |
| 8264 int length; | 9078 int length; |
| 8265 | 9079 |
| 8266 Uint8Array subarray(int start, [int end = null]) native; | 9080 Uint8Array subarray(int start, [int end = null]) native; |
| 8267 } | 9081 } |
| 8268 | 9082 |
| 8269 class ValidityState native "*ValidityState" { | 9083 class ValidityState native "*ValidityState" { |
| 8270 | 9084 |
| 8271 bool customError; | 9085 bool customError; |
| 8272 | 9086 |
| 8273 bool patternMismatch; | 9087 bool patternMismatch; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8339 String get typeName() native; | 9153 String get typeName() native; |
| 8340 } | 9154 } |
| 8341 | 9155 |
| 8342 class WebGLContextEvent extends Event native "*WebGLContextEvent" { | 9156 class WebGLContextEvent extends Event native "*WebGLContextEvent" { |
| 8343 | 9157 |
| 8344 String statusMessage; | 9158 String statusMessage; |
| 8345 } | 9159 } |
| 8346 | 9160 |
| 8347 class WebGLDebugRendererInfo native "*WebGLDebugRendererInfo" { | 9161 class WebGLDebugRendererInfo native "*WebGLDebugRendererInfo" { |
| 8348 | 9162 |
| 9163 static final int UNMASKED_RENDERER_WEBGL = 0x9246; |
| 9164 |
| 9165 static final int UNMASKED_VENDOR_WEBGL = 0x9245; |
| 9166 |
| 8349 var dartObjectLocalStorage; | 9167 var dartObjectLocalStorage; |
| 8350 | 9168 |
| 8351 String get typeName() native; | 9169 String get typeName() native; |
| 8352 } | 9170 } |
| 8353 | 9171 |
| 8354 class WebGLDebugShaders native "*WebGLDebugShaders" { | 9172 class WebGLDebugShaders native "*WebGLDebugShaders" { |
| 8355 | 9173 |
| 8356 String getTranslatedShaderSource(WebGLShader shader) native; | 9174 String getTranslatedShaderSource(WebGLShader shader) native; |
| 8357 | 9175 |
| 8358 var dartObjectLocalStorage; | 9176 var dartObjectLocalStorage; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 8376 | 9194 |
| 8377 class WebGLRenderbuffer native "*WebGLRenderbuffer" { | 9195 class WebGLRenderbuffer native "*WebGLRenderbuffer" { |
| 8378 | 9196 |
| 8379 var dartObjectLocalStorage; | 9197 var dartObjectLocalStorage; |
| 8380 | 9198 |
| 8381 String get typeName() native; | 9199 String get typeName() native; |
| 8382 } | 9200 } |
| 8383 | 9201 |
| 8384 class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
ngContext" { | 9202 class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
ngContext" { |
| 8385 | 9203 |
| 9204 static final int ACTIVE_ATTRIBUTES = 0x8B89; |
| 9205 |
| 9206 static final int ACTIVE_TEXTURE = 0x84E0; |
| 9207 |
| 9208 static final int ACTIVE_UNIFORMS = 0x8B86; |
| 9209 |
| 9210 static final int ALIASED_LINE_WIDTH_RANGE = 0x846E; |
| 9211 |
| 9212 static final int ALIASED_POINT_SIZE_RANGE = 0x846D; |
| 9213 |
| 9214 static final int ALPHA = 0x1906; |
| 9215 |
| 9216 static final int ALPHA_BITS = 0x0D55; |
| 9217 |
| 9218 static final int ALWAYS = 0x0207; |
| 9219 |
| 9220 static final int ARRAY_BUFFER = 0x8892; |
| 9221 |
| 9222 static final int ARRAY_BUFFER_BINDING = 0x8894; |
| 9223 |
| 9224 static final int ATTACHED_SHADERS = 0x8B85; |
| 9225 |
| 9226 static final int BACK = 0x0405; |
| 9227 |
| 9228 static final int BLEND = 0x0BE2; |
| 9229 |
| 9230 static final int BLEND_COLOR = 0x8005; |
| 9231 |
| 9232 static final int BLEND_DST_ALPHA = 0x80CA; |
| 9233 |
| 9234 static final int BLEND_DST_RGB = 0x80C8; |
| 9235 |
| 9236 static final int BLEND_EQUATION = 0x8009; |
| 9237 |
| 9238 static final int BLEND_EQUATION_ALPHA = 0x883D; |
| 9239 |
| 9240 static final int BLEND_EQUATION_RGB = 0x8009; |
| 9241 |
| 9242 static final int BLEND_SRC_ALPHA = 0x80CB; |
| 9243 |
| 9244 static final int BLEND_SRC_RGB = 0x80C9; |
| 9245 |
| 9246 static final int BLUE_BITS = 0x0D54; |
| 9247 |
| 9248 static final int BOOL = 0x8B56; |
| 9249 |
| 9250 static final int BOOL_VEC2 = 0x8B57; |
| 9251 |
| 9252 static final int BOOL_VEC3 = 0x8B58; |
| 9253 |
| 9254 static final int BOOL_VEC4 = 0x8B59; |
| 9255 |
| 9256 static final int BROWSER_DEFAULT_WEBGL = 0x9244; |
| 9257 |
| 9258 static final int BUFFER_SIZE = 0x8764; |
| 9259 |
| 9260 static final int BUFFER_USAGE = 0x8765; |
| 9261 |
| 9262 static final int BYTE = 0x1400; |
| 9263 |
| 9264 static final int CCW = 0x0901; |
| 9265 |
| 9266 static final int CLAMP_TO_EDGE = 0x812F; |
| 9267 |
| 9268 static final int COLOR_ATTACHMENT0 = 0x8CE0; |
| 9269 |
| 9270 static final int COLOR_BUFFER_BIT = 0x00004000; |
| 9271 |
| 9272 static final int COLOR_CLEAR_VALUE = 0x0C22; |
| 9273 |
| 9274 static final int COLOR_WRITEMASK = 0x0C23; |
| 9275 |
| 9276 static final int COMPILE_STATUS = 0x8B81; |
| 9277 |
| 9278 static final int COMPRESSED_TEXTURE_FORMATS = 0x86A3; |
| 9279 |
| 9280 static final int CONSTANT_ALPHA = 0x8003; |
| 9281 |
| 9282 static final int CONSTANT_COLOR = 0x8001; |
| 9283 |
| 9284 static final int CONTEXT_LOST_WEBGL = 0x9242; |
| 9285 |
| 9286 static final int CULL_FACE = 0x0B44; |
| 9287 |
| 9288 static final int CULL_FACE_MODE = 0x0B45; |
| 9289 |
| 9290 static final int CURRENT_PROGRAM = 0x8B8D; |
| 9291 |
| 9292 static final int CURRENT_VERTEX_ATTRIB = 0x8626; |
| 9293 |
| 9294 static final int CW = 0x0900; |
| 9295 |
| 9296 static final int DECR = 0x1E03; |
| 9297 |
| 9298 static final int DECR_WRAP = 0x8508; |
| 9299 |
| 9300 static final int DELETE_STATUS = 0x8B80; |
| 9301 |
| 9302 static final int DEPTH_ATTACHMENT = 0x8D00; |
| 9303 |
| 9304 static final int DEPTH_BITS = 0x0D56; |
| 9305 |
| 9306 static final int DEPTH_BUFFER_BIT = 0x00000100; |
| 9307 |
| 9308 static final int DEPTH_CLEAR_VALUE = 0x0B73; |
| 9309 |
| 9310 static final int DEPTH_COMPONENT = 0x1902; |
| 9311 |
| 9312 static final int DEPTH_COMPONENT16 = 0x81A5; |
| 9313 |
| 9314 static final int DEPTH_FUNC = 0x0B74; |
| 9315 |
| 9316 static final int DEPTH_RANGE = 0x0B70; |
| 9317 |
| 9318 static final int DEPTH_STENCIL = 0x84F9; |
| 9319 |
| 9320 static final int DEPTH_STENCIL_ATTACHMENT = 0x821A; |
| 9321 |
| 9322 static final int DEPTH_TEST = 0x0B71; |
| 9323 |
| 9324 static final int DEPTH_WRITEMASK = 0x0B72; |
| 9325 |
| 9326 static final int DITHER = 0x0BD0; |
| 9327 |
| 9328 static final int DONT_CARE = 0x1100; |
| 9329 |
| 9330 static final int DST_ALPHA = 0x0304; |
| 9331 |
| 9332 static final int DST_COLOR = 0x0306; |
| 9333 |
| 9334 static final int DYNAMIC_DRAW = 0x88E8; |
| 9335 |
| 9336 static final int ELEMENT_ARRAY_BUFFER = 0x8893; |
| 9337 |
| 9338 static final int ELEMENT_ARRAY_BUFFER_BINDING = 0x8895; |
| 9339 |
| 9340 static final int EQUAL = 0x0202; |
| 9341 |
| 9342 static final int FASTEST = 0x1101; |
| 9343 |
| 9344 static final int FLOAT = 0x1406; |
| 9345 |
| 9346 static final int FLOAT_MAT2 = 0x8B5A; |
| 9347 |
| 9348 static final int FLOAT_MAT3 = 0x8B5B; |
| 9349 |
| 9350 static final int FLOAT_MAT4 = 0x8B5C; |
| 9351 |
| 9352 static final int FLOAT_VEC2 = 0x8B50; |
| 9353 |
| 9354 static final int FLOAT_VEC3 = 0x8B51; |
| 9355 |
| 9356 static final int FLOAT_VEC4 = 0x8B52; |
| 9357 |
| 9358 static final int FRAGMENT_SHADER = 0x8B30; |
| 9359 |
| 9360 static final int FRAMEBUFFER = 0x8D40; |
| 9361 |
| 9362 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_NAME = 0x8CD1; |
| 9363 |
| 9364 static final int FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE = 0x8CD0; |
| 9365 |
| 9366 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE = 0x8CD3; |
| 9367 |
| 9368 static final int FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL = 0x8CD2; |
| 9369 |
| 9370 static final int FRAMEBUFFER_BINDING = 0x8CA6; |
| 9371 |
| 9372 static final int FRAMEBUFFER_COMPLETE = 0x8CD5; |
| 9373 |
| 9374 static final int FRAMEBUFFER_INCOMPLETE_ATTACHMENT = 0x8CD6; |
| 9375 |
| 9376 static final int FRAMEBUFFER_INCOMPLETE_DIMENSIONS = 0x8CD9; |
| 9377 |
| 9378 static final int FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT = 0x8CD7; |
| 9379 |
| 9380 static final int FRAMEBUFFER_UNSUPPORTED = 0x8CDD; |
| 9381 |
| 9382 static final int FRONT = 0x0404; |
| 9383 |
| 9384 static final int FRONT_AND_BACK = 0x0408; |
| 9385 |
| 9386 static final int FRONT_FACE = 0x0B46; |
| 9387 |
| 9388 static final int FUNC_ADD = 0x8006; |
| 9389 |
| 9390 static final int FUNC_REVERSE_SUBTRACT = 0x800B; |
| 9391 |
| 9392 static final int FUNC_SUBTRACT = 0x800A; |
| 9393 |
| 9394 static final int GENERATE_MIPMAP_HINT = 0x8192; |
| 9395 |
| 9396 static final int GEQUAL = 0x0206; |
| 9397 |
| 9398 static final int GREATER = 0x0204; |
| 9399 |
| 9400 static final int GREEN_BITS = 0x0D53; |
| 9401 |
| 9402 static final int HIGH_FLOAT = 0x8DF2; |
| 9403 |
| 9404 static final int HIGH_INT = 0x8DF5; |
| 9405 |
| 9406 static final int INCR = 0x1E02; |
| 9407 |
| 9408 static final int INCR_WRAP = 0x8507; |
| 9409 |
| 9410 static final int INT = 0x1404; |
| 9411 |
| 9412 static final int INT_VEC2 = 0x8B53; |
| 9413 |
| 9414 static final int INT_VEC3 = 0x8B54; |
| 9415 |
| 9416 static final int INT_VEC4 = 0x8B55; |
| 9417 |
| 9418 static final int INVALID_ENUM = 0x0500; |
| 9419 |
| 9420 static final int INVALID_FRAMEBUFFER_OPERATION = 0x0506; |
| 9421 |
| 9422 static final int INVALID_OPERATION = 0x0502; |
| 9423 |
| 9424 static final int INVALID_VALUE = 0x0501; |
| 9425 |
| 9426 static final int INVERT = 0x150A; |
| 9427 |
| 9428 static final int KEEP = 0x1E00; |
| 9429 |
| 9430 static final int LEQUAL = 0x0203; |
| 9431 |
| 9432 static final int LESS = 0x0201; |
| 9433 |
| 9434 static final int LINEAR = 0x2601; |
| 9435 |
| 9436 static final int LINEAR_MIPMAP_LINEAR = 0x2703; |
| 9437 |
| 9438 static final int LINEAR_MIPMAP_NEAREST = 0x2701; |
| 9439 |
| 9440 static final int LINES = 0x0001; |
| 9441 |
| 9442 static final int LINE_LOOP = 0x0002; |
| 9443 |
| 9444 static final int LINE_STRIP = 0x0003; |
| 9445 |
| 9446 static final int LINE_WIDTH = 0x0B21; |
| 9447 |
| 9448 static final int LINK_STATUS = 0x8B82; |
| 9449 |
| 9450 static final int LOW_FLOAT = 0x8DF0; |
| 9451 |
| 9452 static final int LOW_INT = 0x8DF3; |
| 9453 |
| 9454 static final int LUMINANCE = 0x1909; |
| 9455 |
| 9456 static final int LUMINANCE_ALPHA = 0x190A; |
| 9457 |
| 9458 static final int MAX_COMBINED_TEXTURE_IMAGE_UNITS = 0x8B4D; |
| 9459 |
| 9460 static final int MAX_CUBE_MAP_TEXTURE_SIZE = 0x851C; |
| 9461 |
| 9462 static final int MAX_FRAGMENT_UNIFORM_VECTORS = 0x8DFD; |
| 9463 |
| 9464 static final int MAX_RENDERBUFFER_SIZE = 0x84E8; |
| 9465 |
| 9466 static final int MAX_TEXTURE_IMAGE_UNITS = 0x8872; |
| 9467 |
| 9468 static final int MAX_TEXTURE_SIZE = 0x0D33; |
| 9469 |
| 9470 static final int MAX_VARYING_VECTORS = 0x8DFC; |
| 9471 |
| 9472 static final int MAX_VERTEX_ATTRIBS = 0x8869; |
| 9473 |
| 9474 static final int MAX_VERTEX_TEXTURE_IMAGE_UNITS = 0x8B4C; |
| 9475 |
| 9476 static final int MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB; |
| 9477 |
| 9478 static final int MAX_VIEWPORT_DIMS = 0x0D3A; |
| 9479 |
| 9480 static final int MEDIUM_FLOAT = 0x8DF1; |
| 9481 |
| 9482 static final int MEDIUM_INT = 0x8DF4; |
| 9483 |
| 9484 static final int MIRRORED_REPEAT = 0x8370; |
| 9485 |
| 9486 static final int NEAREST = 0x2600; |
| 9487 |
| 9488 static final int NEAREST_MIPMAP_LINEAR = 0x2702; |
| 9489 |
| 9490 static final int NEAREST_MIPMAP_NEAREST = 0x2700; |
| 9491 |
| 9492 static final int NEVER = 0x0200; |
| 9493 |
| 9494 static final int NICEST = 0x1102; |
| 9495 |
| 9496 static final int NONE = 0; |
| 9497 |
| 9498 static final int NOTEQUAL = 0x0205; |
| 9499 |
| 9500 static final int NO_ERROR = 0; |
| 9501 |
| 9502 static final int NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2; |
| 9503 |
| 9504 static final int ONE = 1; |
| 9505 |
| 9506 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; |
| 9507 |
| 9508 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; |
| 9509 |
| 9510 static final int ONE_MINUS_DST_ALPHA = 0x0305; |
| 9511 |
| 9512 static final int ONE_MINUS_DST_COLOR = 0x0307; |
| 9513 |
| 9514 static final int ONE_MINUS_SRC_ALPHA = 0x0303; |
| 9515 |
| 9516 static final int ONE_MINUS_SRC_COLOR = 0x0301; |
| 9517 |
| 9518 static final int OUT_OF_MEMORY = 0x0505; |
| 9519 |
| 9520 static final int PACK_ALIGNMENT = 0x0D05; |
| 9521 |
| 9522 static final int POINTS = 0x0000; |
| 9523 |
| 9524 static final int POLYGON_OFFSET_FACTOR = 0x8038; |
| 9525 |
| 9526 static final int POLYGON_OFFSET_FILL = 0x8037; |
| 9527 |
| 9528 static final int POLYGON_OFFSET_UNITS = 0x2A00; |
| 9529 |
| 9530 static final int RED_BITS = 0x0D52; |
| 9531 |
| 9532 static final int RENDERBUFFER = 0x8D41; |
| 9533 |
| 9534 static final int RENDERBUFFER_ALPHA_SIZE = 0x8D53; |
| 9535 |
| 9536 static final int RENDERBUFFER_BINDING = 0x8CA7; |
| 9537 |
| 9538 static final int RENDERBUFFER_BLUE_SIZE = 0x8D52; |
| 9539 |
| 9540 static final int RENDERBUFFER_DEPTH_SIZE = 0x8D54; |
| 9541 |
| 9542 static final int RENDERBUFFER_GREEN_SIZE = 0x8D51; |
| 9543 |
| 9544 static final int RENDERBUFFER_HEIGHT = 0x8D43; |
| 9545 |
| 9546 static final int RENDERBUFFER_INTERNAL_FORMAT = 0x8D44; |
| 9547 |
| 9548 static final int RENDERBUFFER_RED_SIZE = 0x8D50; |
| 9549 |
| 9550 static final int RENDERBUFFER_STENCIL_SIZE = 0x8D55; |
| 9551 |
| 9552 static final int RENDERBUFFER_WIDTH = 0x8D42; |
| 9553 |
| 9554 static final int RENDERER = 0x1F01; |
| 9555 |
| 9556 static final int REPEAT = 0x2901; |
| 9557 |
| 9558 static final int REPLACE = 0x1E01; |
| 9559 |
| 9560 static final int RGB = 0x1907; |
| 9561 |
| 9562 static final int RGB565 = 0x8D62; |
| 9563 |
| 9564 static final int RGB5_A1 = 0x8057; |
| 9565 |
| 9566 static final int RGBA = 0x1908; |
| 9567 |
| 9568 static final int RGBA4 = 0x8056; |
| 9569 |
| 9570 static final int SAMPLER_2D = 0x8B5E; |
| 9571 |
| 9572 static final int SAMPLER_CUBE = 0x8B60; |
| 9573 |
| 9574 static final int SAMPLES = 0x80A9; |
| 9575 |
| 9576 static final int SAMPLE_ALPHA_TO_COVERAGE = 0x809E; |
| 9577 |
| 9578 static final int SAMPLE_BUFFERS = 0x80A8; |
| 9579 |
| 9580 static final int SAMPLE_COVERAGE = 0x80A0; |
| 9581 |
| 9582 static final int SAMPLE_COVERAGE_INVERT = 0x80AB; |
| 9583 |
| 9584 static final int SAMPLE_COVERAGE_VALUE = 0x80AA; |
| 9585 |
| 9586 static final int SCISSOR_BOX = 0x0C10; |
| 9587 |
| 9588 static final int SCISSOR_TEST = 0x0C11; |
| 9589 |
| 9590 static final int SHADER_COMPILER = 0x8DFA; |
| 9591 |
| 9592 static final int SHADER_TYPE = 0x8B4F; |
| 9593 |
| 9594 static final int SHADING_LANGUAGE_VERSION = 0x8B8C; |
| 9595 |
| 9596 static final int SHORT = 0x1402; |
| 9597 |
| 9598 static final int SRC_ALPHA = 0x0302; |
| 9599 |
| 9600 static final int SRC_ALPHA_SATURATE = 0x0308; |
| 9601 |
| 9602 static final int SRC_COLOR = 0x0300; |
| 9603 |
| 9604 static final int STATIC_DRAW = 0x88E4; |
| 9605 |
| 9606 static final int STENCIL_ATTACHMENT = 0x8D20; |
| 9607 |
| 9608 static final int STENCIL_BACK_FAIL = 0x8801; |
| 9609 |
| 9610 static final int STENCIL_BACK_FUNC = 0x8800; |
| 9611 |
| 9612 static final int STENCIL_BACK_PASS_DEPTH_FAIL = 0x8802; |
| 9613 |
| 9614 static final int STENCIL_BACK_PASS_DEPTH_PASS = 0x8803; |
| 9615 |
| 9616 static final int STENCIL_BACK_REF = 0x8CA3; |
| 9617 |
| 9618 static final int STENCIL_BACK_VALUE_MASK = 0x8CA4; |
| 9619 |
| 9620 static final int STENCIL_BACK_WRITEMASK = 0x8CA5; |
| 9621 |
| 9622 static final int STENCIL_BITS = 0x0D57; |
| 9623 |
| 9624 static final int STENCIL_BUFFER_BIT = 0x00000400; |
| 9625 |
| 9626 static final int STENCIL_CLEAR_VALUE = 0x0B91; |
| 9627 |
| 9628 static final int STENCIL_FAIL = 0x0B94; |
| 9629 |
| 9630 static final int STENCIL_FUNC = 0x0B92; |
| 9631 |
| 9632 static final int STENCIL_INDEX = 0x1901; |
| 9633 |
| 9634 static final int STENCIL_INDEX8 = 0x8D48; |
| 9635 |
| 9636 static final int STENCIL_PASS_DEPTH_FAIL = 0x0B95; |
| 9637 |
| 9638 static final int STENCIL_PASS_DEPTH_PASS = 0x0B96; |
| 9639 |
| 9640 static final int STENCIL_REF = 0x0B97; |
| 9641 |
| 9642 static final int STENCIL_TEST = 0x0B90; |
| 9643 |
| 9644 static final int STENCIL_VALUE_MASK = 0x0B93; |
| 9645 |
| 9646 static final int STENCIL_WRITEMASK = 0x0B98; |
| 9647 |
| 9648 static final int STREAM_DRAW = 0x88E0; |
| 9649 |
| 9650 static final int SUBPIXEL_BITS = 0x0D50; |
| 9651 |
| 9652 static final int TEXTURE = 0x1702; |
| 9653 |
| 9654 static final int TEXTURE0 = 0x84C0; |
| 9655 |
| 9656 static final int TEXTURE1 = 0x84C1; |
| 9657 |
| 9658 static final int TEXTURE10 = 0x84CA; |
| 9659 |
| 9660 static final int TEXTURE11 = 0x84CB; |
| 9661 |
| 9662 static final int TEXTURE12 = 0x84CC; |
| 9663 |
| 9664 static final int TEXTURE13 = 0x84CD; |
| 9665 |
| 9666 static final int TEXTURE14 = 0x84CE; |
| 9667 |
| 9668 static final int TEXTURE15 = 0x84CF; |
| 9669 |
| 9670 static final int TEXTURE16 = 0x84D0; |
| 9671 |
| 9672 static final int TEXTURE17 = 0x84D1; |
| 9673 |
| 9674 static final int TEXTURE18 = 0x84D2; |
| 9675 |
| 9676 static final int TEXTURE19 = 0x84D3; |
| 9677 |
| 9678 static final int TEXTURE2 = 0x84C2; |
| 9679 |
| 9680 static final int TEXTURE20 = 0x84D4; |
| 9681 |
| 9682 static final int TEXTURE21 = 0x84D5; |
| 9683 |
| 9684 static final int TEXTURE22 = 0x84D6; |
| 9685 |
| 9686 static final int TEXTURE23 = 0x84D7; |
| 9687 |
| 9688 static final int TEXTURE24 = 0x84D8; |
| 9689 |
| 9690 static final int TEXTURE25 = 0x84D9; |
| 9691 |
| 9692 static final int TEXTURE26 = 0x84DA; |
| 9693 |
| 9694 static final int TEXTURE27 = 0x84DB; |
| 9695 |
| 9696 static final int TEXTURE28 = 0x84DC; |
| 9697 |
| 9698 static final int TEXTURE29 = 0x84DD; |
| 9699 |
| 9700 static final int TEXTURE3 = 0x84C3; |
| 9701 |
| 9702 static final int TEXTURE30 = 0x84DE; |
| 9703 |
| 9704 static final int TEXTURE31 = 0x84DF; |
| 9705 |
| 9706 static final int TEXTURE4 = 0x84C4; |
| 9707 |
| 9708 static final int TEXTURE5 = 0x84C5; |
| 9709 |
| 9710 static final int TEXTURE6 = 0x84C6; |
| 9711 |
| 9712 static final int TEXTURE7 = 0x84C7; |
| 9713 |
| 9714 static final int TEXTURE8 = 0x84C8; |
| 9715 |
| 9716 static final int TEXTURE9 = 0x84C9; |
| 9717 |
| 9718 static final int TEXTURE_2D = 0x0DE1; |
| 9719 |
| 9720 static final int TEXTURE_BINDING_2D = 0x8069; |
| 9721 |
| 9722 static final int TEXTURE_BINDING_CUBE_MAP = 0x8514; |
| 9723 |
| 9724 static final int TEXTURE_CUBE_MAP = 0x8513; |
| 9725 |
| 9726 static final int TEXTURE_CUBE_MAP_NEGATIVE_X = 0x8516; |
| 9727 |
| 9728 static final int TEXTURE_CUBE_MAP_NEGATIVE_Y = 0x8518; |
| 9729 |
| 9730 static final int TEXTURE_CUBE_MAP_NEGATIVE_Z = 0x851A; |
| 9731 |
| 9732 static final int TEXTURE_CUBE_MAP_POSITIVE_X = 0x8515; |
| 9733 |
| 9734 static final int TEXTURE_CUBE_MAP_POSITIVE_Y = 0x8517; |
| 9735 |
| 9736 static final int TEXTURE_CUBE_MAP_POSITIVE_Z = 0x8519; |
| 9737 |
| 9738 static final int TEXTURE_MAG_FILTER = 0x2800; |
| 9739 |
| 9740 static final int TEXTURE_MIN_FILTER = 0x2801; |
| 9741 |
| 9742 static final int TEXTURE_WRAP_S = 0x2802; |
| 9743 |
| 9744 static final int TEXTURE_WRAP_T = 0x2803; |
| 9745 |
| 9746 static final int TRIANGLES = 0x0004; |
| 9747 |
| 9748 static final int TRIANGLE_FAN = 0x0006; |
| 9749 |
| 9750 static final int TRIANGLE_STRIP = 0x0005; |
| 9751 |
| 9752 static final int UNPACK_ALIGNMENT = 0x0CF5; |
| 9753 |
| 9754 static final int UNPACK_COLORSPACE_CONVERSION_WEBGL = 0x9243; |
| 9755 |
| 9756 static final int UNPACK_FLIP_Y_WEBGL = 0x9240; |
| 9757 |
| 9758 static final int UNPACK_PREMULTIPLY_ALPHA_WEBGL = 0x9241; |
| 9759 |
| 9760 static final int UNSIGNED_BYTE = 0x1401; |
| 9761 |
| 9762 static final int UNSIGNED_INT = 0x1405; |
| 9763 |
| 9764 static final int UNSIGNED_SHORT = 0x1403; |
| 9765 |
| 9766 static final int UNSIGNED_SHORT_4_4_4_4 = 0x8033; |
| 9767 |
| 9768 static final int UNSIGNED_SHORT_5_5_5_1 = 0x8034; |
| 9769 |
| 9770 static final int UNSIGNED_SHORT_5_6_5 = 0x8363; |
| 9771 |
| 9772 static final int VALIDATE_STATUS = 0x8B83; |
| 9773 |
| 9774 static final int VENDOR = 0x1F00; |
| 9775 |
| 9776 static final int VERSION = 0x1F02; |
| 9777 |
| 9778 static final int VERTEX_ATTRIB_ARRAY_BUFFER_BINDING = 0x889F; |
| 9779 |
| 9780 static final int VERTEX_ATTRIB_ARRAY_ENABLED = 0x8622; |
| 9781 |
| 9782 static final int VERTEX_ATTRIB_ARRAY_NORMALIZED = 0x886A; |
| 9783 |
| 9784 static final int VERTEX_ATTRIB_ARRAY_POINTER = 0x8645; |
| 9785 |
| 9786 static final int VERTEX_ATTRIB_ARRAY_SIZE = 0x8623; |
| 9787 |
| 9788 static final int VERTEX_ATTRIB_ARRAY_STRIDE = 0x8624; |
| 9789 |
| 9790 static final int VERTEX_ATTRIB_ARRAY_TYPE = 0x8625; |
| 9791 |
| 9792 static final int VERTEX_SHADER = 0x8B31; |
| 9793 |
| 9794 static final int VIEWPORT = 0x0BA2; |
| 9795 |
| 9796 static final int ZERO = 0; |
| 9797 |
| 8386 int drawingBufferHeight; | 9798 int drawingBufferHeight; |
| 8387 | 9799 |
| 8388 int drawingBufferWidth; | 9800 int drawingBufferWidth; |
| 8389 | 9801 |
| 8390 void activeTexture(int texture) native; | 9802 void activeTexture(int texture) native; |
| 8391 | 9803 |
| 8392 void attachShader(WebGLProgram program, WebGLShader shader) native; | 9804 void attachShader(WebGLProgram program, WebGLShader shader) native; |
| 8393 | 9805 |
| 8394 void bindAttribLocation(WebGLProgram program, int index, String name) native; | 9806 void bindAttribLocation(WebGLProgram program, int index, String name) native; |
| 8395 | 9807 |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8679 | 10091 |
| 8680 class WebGLVertexArrayObjectOES native "*WebGLVertexArrayObjectOES" { | 10092 class WebGLVertexArrayObjectOES native "*WebGLVertexArrayObjectOES" { |
| 8681 | 10093 |
| 8682 var dartObjectLocalStorage; | 10094 var dartObjectLocalStorage; |
| 8683 | 10095 |
| 8684 String get typeName() native; | 10096 String get typeName() native; |
| 8685 } | 10097 } |
| 8686 | 10098 |
| 8687 class WebKitAnimation native "*WebKitAnimation" { | 10099 class WebKitAnimation native "*WebKitAnimation" { |
| 8688 | 10100 |
| 10101 static final int DIRECTION_ALTERNATE = 1; |
| 10102 |
| 10103 static final int DIRECTION_NORMAL = 0; |
| 10104 |
| 10105 static final int FILL_BACKWARDS = 1; |
| 10106 |
| 10107 static final int FILL_BOTH = 3; |
| 10108 |
| 10109 static final int FILL_FORWARDS = 2; |
| 10110 |
| 10111 static final int FILL_NONE = 0; |
| 10112 |
| 8689 num delay; | 10113 num delay; |
| 8690 | 10114 |
| 8691 int direction; | 10115 int direction; |
| 8692 | 10116 |
| 8693 num duration; | 10117 num duration; |
| 8694 | 10118 |
| 8695 num elapsedTime; | 10119 num elapsedTime; |
| 8696 | 10120 |
| 8697 bool ended; | 10121 bool ended; |
| 8698 | 10122 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8739 | 10163 |
| 8740 Blob getBlob([String contentType = null]) native; | 10164 Blob getBlob([String contentType = null]) native; |
| 8741 | 10165 |
| 8742 var dartObjectLocalStorage; | 10166 var dartObjectLocalStorage; |
| 8743 | 10167 |
| 8744 String get typeName() native; | 10168 String get typeName() native; |
| 8745 } | 10169 } |
| 8746 | 10170 |
| 8747 class WebKitCSSFilterValue extends CSSValueList native "*WebKitCSSFilterValue" { | 10171 class WebKitCSSFilterValue extends CSSValueList native "*WebKitCSSFilterValue" { |
| 8748 | 10172 |
| 10173 static final int CSS_FILTER_BLUR = 9; |
| 10174 |
| 10175 static final int CSS_FILTER_DROP_SHADOW = 11; |
| 10176 |
| 10177 static final int CSS_FILTER_GAMMA = 8; |
| 10178 |
| 10179 static final int CSS_FILTER_GRAYSCALE = 2; |
| 10180 |
| 10181 static final int CSS_FILTER_HUE_ROTATE = 5; |
| 10182 |
| 10183 static final int CSS_FILTER_INVERT = 6; |
| 10184 |
| 10185 static final int CSS_FILTER_OPACITY = 7; |
| 10186 |
| 10187 static final int CSS_FILTER_REFERENCE = 1; |
| 10188 |
| 10189 static final int CSS_FILTER_SATURATE = 4; |
| 10190 |
| 10191 static final int CSS_FILTER_SEPIA = 3; |
| 10192 |
| 10193 static final int CSS_FILTER_SHARPEN = 10; |
| 10194 |
| 8749 int operationType; | 10195 int operationType; |
| 8750 } | 10196 } |
| 8751 | 10197 |
| 8752 class WebKitCSSKeyframeRule extends CSSRule native "*WebKitCSSKeyframeRule" { | 10198 class WebKitCSSKeyframeRule extends CSSRule native "*WebKitCSSKeyframeRule" { |
| 8753 | 10199 |
| 8754 String keyText; | 10200 String keyText; |
| 8755 | 10201 |
| 8756 CSSStyleDeclaration style; | 10202 CSSStyleDeclaration style; |
| 8757 } | 10203 } |
| 8758 | 10204 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8837 | 10283 |
| 8838 WebKitCSSMatrix translate(num x, num y, num z) native; | 10284 WebKitCSSMatrix translate(num x, num y, num z) native; |
| 8839 | 10285 |
| 8840 var dartObjectLocalStorage; | 10286 var dartObjectLocalStorage; |
| 8841 | 10287 |
| 8842 String get typeName() native; | 10288 String get typeName() native; |
| 8843 } | 10289 } |
| 8844 | 10290 |
| 8845 class WebKitCSSTransformValue extends CSSValueList native "*WebKitCSSTransformVa
lue" { | 10291 class WebKitCSSTransformValue extends CSSValueList native "*WebKitCSSTransformVa
lue" { |
| 8846 | 10292 |
| 10293 static final int CSS_MATRIX = 11; |
| 10294 |
| 10295 static final int CSS_MATRIX3D = 21; |
| 10296 |
| 10297 static final int CSS_PERSPECTIVE = 20; |
| 10298 |
| 10299 static final int CSS_ROTATE = 4; |
| 10300 |
| 10301 static final int CSS_ROTATE3D = 17; |
| 10302 |
| 10303 static final int CSS_ROTATEX = 14; |
| 10304 |
| 10305 static final int CSS_ROTATEY = 15; |
| 10306 |
| 10307 static final int CSS_ROTATEZ = 16; |
| 10308 |
| 10309 static final int CSS_SCALE = 5; |
| 10310 |
| 10311 static final int CSS_SCALE3D = 19; |
| 10312 |
| 10313 static final int CSS_SCALEX = 6; |
| 10314 |
| 10315 static final int CSS_SCALEY = 7; |
| 10316 |
| 10317 static final int CSS_SCALEZ = 18; |
| 10318 |
| 10319 static final int CSS_SKEW = 8; |
| 10320 |
| 10321 static final int CSS_SKEWX = 9; |
| 10322 |
| 10323 static final int CSS_SKEWY = 10; |
| 10324 |
| 10325 static final int CSS_TRANSLATE = 1; |
| 10326 |
| 10327 static final int CSS_TRANSLATE3D = 13; |
| 10328 |
| 10329 static final int CSS_TRANSLATEX = 2; |
| 10330 |
| 10331 static final int CSS_TRANSLATEY = 3; |
| 10332 |
| 10333 static final int CSS_TRANSLATEZ = 12; |
| 10334 |
| 8847 int operationType; | 10335 int operationType; |
| 8848 } | 10336 } |
| 8849 | 10337 |
| 8850 class WebKitFlags native "*WebKitFlags" { | 10338 class WebKitFlags native "*WebKitFlags" { |
| 8851 | 10339 |
| 8852 bool create; | 10340 bool create; |
| 8853 | 10341 |
| 8854 bool exclusive; | 10342 bool exclusive; |
| 8855 | 10343 |
| 8856 var dartObjectLocalStorage; | 10344 var dartObjectLocalStorage; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8895 | 10383 |
| 8896 num elapsedTime; | 10384 num elapsedTime; |
| 8897 | 10385 |
| 8898 String propertyName; | 10386 String propertyName; |
| 8899 | 10387 |
| 8900 void initWebKitTransitionEvent(String typeArg, bool canBubbleArg, bool cancela
bleArg, String propertyNameArg, num elapsedTimeArg) native; | 10388 void initWebKitTransitionEvent(String typeArg, bool canBubbleArg, bool cancela
bleArg, String propertyNameArg, num elapsedTimeArg) native; |
| 8901 } | 10389 } |
| 8902 | 10390 |
| 8903 class WebSocket native "*WebSocket" { | 10391 class WebSocket native "*WebSocket" { |
| 8904 | 10392 |
| 10393 static final int CLOSED = 3; |
| 10394 |
| 10395 static final int CLOSING = 2; |
| 10396 |
| 10397 static final int CONNECTING = 0; |
| 10398 |
| 10399 static final int OPEN = 1; |
| 10400 |
| 8905 String URL; | 10401 String URL; |
| 8906 | 10402 |
| 8907 String binaryType; | 10403 String binaryType; |
| 8908 | 10404 |
| 8909 int bufferedAmount; | 10405 int bufferedAmount; |
| 8910 | 10406 |
| 8911 String extensions; | 10407 String extensions; |
| 8912 | 10408 |
| 8913 String protocol; | 10409 String protocol; |
| 8914 | 10410 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9049 | 10545 |
| 9050 var dartObjectLocalStorage; | 10546 var dartObjectLocalStorage; |
| 9051 | 10547 |
| 9052 String get typeName() native; | 10548 String get typeName() native; |
| 9053 } | 10549 } |
| 9054 | 10550 |
| 9055 class XMLHttpRequest native "*XMLHttpRequest" { | 10551 class XMLHttpRequest native "*XMLHttpRequest" { |
| 9056 XMLHttpRequest() native; | 10552 XMLHttpRequest() native; |
| 9057 | 10553 |
| 9058 | 10554 |
| 10555 static final int DONE = 4; |
| 10556 |
| 10557 static final int HEADERS_RECEIVED = 2; |
| 10558 |
| 10559 static final int LOADING = 3; |
| 10560 |
| 10561 static final int OPENED = 1; |
| 10562 |
| 10563 static final int UNSENT = 0; |
| 10564 |
| 9059 bool asBlob; | 10565 bool asBlob; |
| 9060 | 10566 |
| 9061 int readyState; | 10567 int readyState; |
| 9062 | 10568 |
| 9063 Blob responseBlob; | 10569 Blob responseBlob; |
| 9064 | 10570 |
| 9065 String responseText; | 10571 String responseText; |
| 9066 | 10572 |
| 9067 String responseType; | 10573 String responseType; |
| 9068 | 10574 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 9096 | 10602 |
| 9097 void setRequestHeader(String header, String value) native; | 10603 void setRequestHeader(String header, String value) native; |
| 9098 | 10604 |
| 9099 var dartObjectLocalStorage; | 10605 var dartObjectLocalStorage; |
| 9100 | 10606 |
| 9101 String get typeName() native; | 10607 String get typeName() native; |
| 9102 } | 10608 } |
| 9103 | 10609 |
| 9104 class XMLHttpRequestException native "*XMLHttpRequestException" { | 10610 class XMLHttpRequestException native "*XMLHttpRequestException" { |
| 9105 | 10611 |
| 10612 static final int ABORT_ERR = 102; |
| 10613 |
| 10614 static final int NETWORK_ERR = 101; |
| 10615 |
| 9106 int code; | 10616 int code; |
| 9107 | 10617 |
| 9108 String message; | 10618 String message; |
| 9109 | 10619 |
| 9110 String name; | 10620 String name; |
| 9111 | 10621 |
| 9112 String toString() native; | 10622 String toString() native; |
| 9113 | 10623 |
| 9114 var dartObjectLocalStorage; | 10624 var dartObjectLocalStorage; |
| 9115 | 10625 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9153 | 10663 |
| 9154 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult) native; | 10664 XPathResult evaluate(String expression, Node contextNode, XPathNSResolver reso
lver, int type, XPathResult inResult) native; |
| 9155 | 10665 |
| 9156 var dartObjectLocalStorage; | 10666 var dartObjectLocalStorage; |
| 9157 | 10667 |
| 9158 String get typeName() native; | 10668 String get typeName() native; |
| 9159 } | 10669 } |
| 9160 | 10670 |
| 9161 class XPathException native "*XPathException" { | 10671 class XPathException native "*XPathException" { |
| 9162 | 10672 |
| 10673 static final int INVALID_EXPRESSION_ERR = 51; |
| 10674 |
| 10675 static final int TYPE_ERR = 52; |
| 10676 |
| 9163 int code; | 10677 int code; |
| 9164 | 10678 |
| 9165 String message; | 10679 String message; |
| 9166 | 10680 |
| 9167 String name; | 10681 String name; |
| 9168 | 10682 |
| 9169 String toString() native; | 10683 String toString() native; |
| 9170 | 10684 |
| 9171 var dartObjectLocalStorage; | 10685 var dartObjectLocalStorage; |
| 9172 | 10686 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 9186 | 10700 |
| 9187 String lookupNamespaceURI(String prefix) native; | 10701 String lookupNamespaceURI(String prefix) native; |
| 9188 | 10702 |
| 9189 var dartObjectLocalStorage; | 10703 var dartObjectLocalStorage; |
| 9190 | 10704 |
| 9191 String get typeName() native; | 10705 String get typeName() native; |
| 9192 } | 10706 } |
| 9193 | 10707 |
| 9194 class XPathResult native "*XPathResult" { | 10708 class XPathResult native "*XPathResult" { |
| 9195 | 10709 |
| 10710 static final int ANY_TYPE = 0; |
| 10711 |
| 10712 static final int ANY_UNORDERED_NODE_TYPE = 8; |
| 10713 |
| 10714 static final int BOOLEAN_TYPE = 3; |
| 10715 |
| 10716 static final int FIRST_ORDERED_NODE_TYPE = 9; |
| 10717 |
| 10718 static final int NUMBER_TYPE = 1; |
| 10719 |
| 10720 static final int ORDERED_NODE_ITERATOR_TYPE = 5; |
| 10721 |
| 10722 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7; |
| 10723 |
| 10724 static final int STRING_TYPE = 2; |
| 10725 |
| 10726 static final int UNORDERED_NODE_ITERATOR_TYPE = 4; |
| 10727 |
| 10728 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6; |
| 10729 |
| 9196 bool booleanValue; | 10730 bool booleanValue; |
| 9197 | 10731 |
| 9198 bool invalidIteratorState; | 10732 bool invalidIteratorState; |
| 9199 | 10733 |
| 9200 num numberValue; | 10734 num numberValue; |
| 9201 | 10735 |
| 9202 int resultType; | 10736 int resultType; |
| 9203 | 10737 |
| 9204 Node singleNodeValue; | 10738 Node singleNodeValue; |
| 9205 | 10739 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9246 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 10780 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 9247 // for details. All rights reserved. Use of this source code is governed by a | 10781 // for details. All rights reserved. Use of this source code is governed by a |
| 9248 // BSD-style license that can be found in the LICENSE file. | 10782 // BSD-style license that can be found in the LICENSE file. |
| 9249 | 10783 |
| 9250 typedef bool RequestAnimationFrameCallback(int time); | 10784 typedef bool RequestAnimationFrameCallback(int time); |
| 9251 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 10785 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 9252 // for details. All rights reserved. Use of this source code is governed by a | 10786 // for details. All rights reserved. Use of this source code is governed by a |
| 9253 // BSD-style license that can be found in the LICENSE file. | 10787 // BSD-style license that can be found in the LICENSE file. |
| 9254 | 10788 |
| 9255 typedef void TimeoutHandler(); | 10789 typedef void TimeoutHandler(); |
| OLD | NEW |