| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 // WebKit extensions | 146 // WebKit extensions |
| 147 CSSRuleList getMatchedCSSRules(in Element element, | 147 CSSRuleList getMatchedCSSRules(in Element element, |
| 148 in DOMString pseudoElement, | 148 in DOMString pseudoElement, |
| 149 in [Optional] boolean authorOnly); | 149 in [Optional] boolean authorOnly); |
| 150 attribute [Replaceable] double devicePixelRatio; | 150 attribute [Replaceable] double devicePixelRatio; |
| 151 | 151 |
| 152 WebKitPoint webkitConvertPointFromPageToNode(in Node node, in WebKitPoin
t p); | 152 WebKitPoint webkitConvertPointFromPageToNode(in Node node, in WebKitPoin
t p); |
| 153 WebKitPoint webkitConvertPointFromNodeToPage(in Node node, in WebKitPoin
t p); | 153 WebKitPoint webkitConvertPointFromNodeToPage(in Node node, in WebKitPoin
t p); |
| 154 | 154 |
| 155 #if defined(ENABLE_OFFLINE_WEB_APPLICATIONS) && ENABLE_OFFLINE_WEB_APPLICATIONS | 155 #if (defined(ENABLE_OFFLINE_WEB_APPLICATIONS) && ENABLE_OFFLINE_WEB_APPLICATIONS
) || (defined(ENABLE_APPLICATION_CACHE) && ENABLE_APPLICATION_CACHE) |
| 156 readonly attribute DOMApplicationCache applicationCache; | 156 readonly attribute DOMApplicationCache applicationCache; |
| 157 #endif | 157 #endif |
| 158 #if defined(ENABLE_DATABASE) && ENABLE_DATABASE | 158 #if defined(ENABLE_DATABASE) && ENABLE_DATABASE |
| 159 Database openDatabase(in DOMString name, in DOMString version, in DOMStr
ing displayName, in unsigned long estimatedSize) | 159 Database openDatabase(in DOMString name, in DOMString version, in DOMStr
ing displayName, in unsigned long estimatedSize) |
| 160 raises(DOMException); | 160 raises(DOMException); |
| 161 #endif | 161 #endif |
| 162 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE | 162 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE |
| 163 readonly attribute Storage sessionStorage; | 163 readonly attribute Storage sessionStorage; |
| 164 readonly attribute Storage localStorage; | 164 readonly attribute Storage localStorage; |
| 165 #endif | 165 #endif |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 | 468 |
| 469 #endif // defined(LANGUAGE_JAVASCRIPT) | 469 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 470 | 470 |
| 471 #if defined(V8_BINDING) && V8_BINDING | 471 #if defined(V8_BINDING) && V8_BINDING |
| 472 // window.toString() requires special handling in V8 | 472 // window.toString() requires special handling in V8 |
| 473 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); | 473 [V8DoNotCheckSignature, DoNotCheckDomainSecurity, Custom, DontEnum] DOMS
tring toString(); |
| 474 #endif // defined(V8_BINDING) | 474 #endif // defined(V8_BINDING) |
| 475 }; | 475 }; |
| 476 | 476 |
| 477 } | 477 } |
| OLD | NEW |