| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 readonly attribute DOMString? baseURI; | 37 readonly attribute DOMString? baseURI; |
| 38 | 38 |
| 39 Range createRange(); | 39 Range createRange(); |
| 40 | 40 |
| 41 [ImplementedAs=executingWindow] readonly attribute Window defaultView; | 41 [ImplementedAs=executingWindow] readonly attribute Window defaultView; |
| 42 | 42 |
| 43 readonly attribute DOMString contentType; | 43 readonly attribute DOMString contentType; |
| 44 | 44 |
| 45 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g dir; | 45 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g dir; |
| 46 [TreatNullAs=NullString, CustomElementCallbacks] attribute DOMStrin
g title; | |
| 47 readonly attribute DOMString referrer; | 46 readonly attribute DOMString referrer; |
| 48 readonly attribute DOMString URL; | 47 readonly attribute DOMString URL; |
| 49 | 48 |
| 50 [PutForwards=href] readonly attribute Location location; | 49 [PutForwards=href] readonly attribute Location location; |
| 51 | 50 |
| 52 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; | 51 [TreatReturnedNullStringAs=Undefined] readonly attribute DOMString readyStat
e; |
| 53 | 52 |
| 54 Element elementFromPoint([Default=Undefined] optional long x, | 53 Element elementFromPoint([Default=Undefined] optional long x, |
| 55 [Default=Undefined] optional long y); | 54 [Default=Undefined] optional long y); |
| 56 Range caretRangeFromPoint([Default=Undefined] optional long x, | 55 Range caretRangeFromPoint([Default=Undefined] optional long x, |
| 57 [Default=Undefined] optional long y); | 56 [Default=Undefined] optional long y); |
| 58 | 57 |
| 59 // Mozilla extensions | 58 // Mozilla extensions |
| 60 Selection getSelection(); | 59 Selection getSelection(); |
| 61 | 60 |
| 62 // HTML 5 | 61 // HTML 5 |
| 63 readonly attribute Element activeElement; | 62 readonly attribute Element activeElement; |
| 64 boolean hasFocus(); | 63 boolean hasFocus(); |
| 65 | 64 |
| 66 [RaisesException] void registerElement(DOMString name, any type); | 65 [RaisesException] void registerElement(DOMString name, any type); |
| 67 | 66 |
| 68 // Page visibility API. | 67 // Page visibility API. |
| 69 readonly attribute DOMString visibilityState; | 68 readonly attribute DOMString visibilityState; |
| 70 readonly attribute boolean hidden; | 69 readonly attribute boolean hidden; |
| 71 | 70 |
| 72 readonly attribute HTMLScriptElement currentScript; | |
| 73 | |
| 74 attribute Picture rootPicture; | 71 attribute Picture rootPicture; |
| 75 }; | 72 }; |
| OLD | NEW |