| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 readonly attribute long focusOffset; | 38 readonly attribute long focusOffset; |
| 39 | 39 |
| 40 readonly attribute boolean isCollapsed; | 40 readonly attribute boolean isCollapsed; |
| 41 readonly attribute long rangeCount; | 41 readonly attribute long rangeCount; |
| 42 | 42 |
| 43 [RaisesException] void collapse([Default=Undefined] optional Node node, | 43 [RaisesException] void collapse([Default=Undefined] optional Node node, |
| 44 [Default=Undefined] optional long index); | 44 [Default=Undefined] optional long index); |
| 45 [RaisesException] void collapseToEnd(); | 45 [RaisesException] void collapseToEnd(); |
| 46 [RaisesException] void collapseToStart(); | 46 [RaisesException] void collapseToStart(); |
| 47 | 47 |
| 48 [CustomElementCallbacks=Enable] void deleteFromDocument(); | 48 [CustomElementCallbacks] void deleteFromDocument(); |
| 49 boolean containsNode([Default=Undefined] optional Node node, | 49 boolean containsNode([Default=Undefined] optional Node node, |
| 50 [Default=Undefined] optional boolean allowPartial); | 50 [Default=Undefined] optional boolean allowPartial); |
| 51 [RaisesException] void selectAllChildren([Default=Undefined] optional Node n
ode); | 51 [RaisesException] void selectAllChildren([Default=Undefined] optional Node n
ode); |
| 52 | 52 |
| 53 [RaisesException] void extend([Default=Undefined] optional Node node, | 53 [RaisesException] void extend([Default=Undefined] optional Node node, |
| 54 [Default=Undefined] optional long offset); | 54 [Default=Undefined] optional long offset); |
| 55 | 55 |
| 56 [RaisesException] Range getRangeAt([Default=Undefined] optional long index); | 56 [RaisesException] Range getRangeAt([Default=Undefined] optional long index); |
| 57 void removeAllRanges(); | 57 void removeAllRanges(); |
| 58 void addRange([Default=Undefined] optional Range range); | 58 void addRange([Default=Undefined] optional Range range); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 77 [Default=Undefined] optional Node extentNode, | 77 [Default=Undefined] optional Node extentNode, |
| 78 [Default=Undefined] optional long extentOffset); | 78 [Default=Undefined] optional long extentOffset); |
| 79 [RaisesException] void setPosition([Default=Undefined] optional Node node, | 79 [RaisesException] void setPosition([Default=Undefined] optional Node node, |
| 80 [Default=Undefined] optional long offset); | 80 [Default=Undefined] optional long offset); |
| 81 | 81 |
| 82 // IE extentions | 82 // IE extentions |
| 83 // http://msdn.microsoft.com/en-us/library/ms535869(VS.85).aspx | 83 // http://msdn.microsoft.com/en-us/library/ms535869(VS.85).aspx |
| 84 void empty(); | 84 void empty(); |
| 85 }; | 85 }; |
| 86 | 86 |
| OLD | NEW |