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

Side by Side Diff: page/DOMWindow.idl

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « page/DOMWindow.cpp ('k') | page/Frame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « page/DOMWindow.cpp ('k') | page/Frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698