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

Side by Side Diff: Source/core/page/DOMWindow.idl

Issue 14589010: [Replaceable] attributes must be readonly (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | no next file » | 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 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 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 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame(Reque stAnimationFrameCallback callback); 175 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame(Reque stAnimationFrameCallback callback);
176 void cancelAnimationFrame(long id); 176 void cancelAnimationFrame(long id);
177 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback); 177 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame(R equestAnimationFrameCallback callback);
178 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id ); 178 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id );
179 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix. 179 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix.
180 180
181 // Base64 181 // Base64
182 [RaisesException] DOMString atob([TreatNullAs=NullString,Default=Undefined] optional DOMString string); 182 [RaisesException] DOMString atob([TreatNullAs=NullString,Default=Undefined] optional DOMString string);
183 [RaisesException] DOMString btoa([TreatNullAs=NullString,Default=Undefined] optional DOMString string); 183 [RaisesException] DOMString btoa([TreatNullAs=NullString,Default=Undefined] optional DOMString string);
184 184
185 [Replaceable] attribute DOMWindowCSS CSS; 185 [Replaceable] readonly attribute DOMWindowCSS CSS;
186 186
187 // Events 187 // Events
188 attribute EventListener onabort; 188 attribute EventListener onabort;
189 attribute EventListener onbeforeunload; 189 attribute EventListener onbeforeunload;
190 attribute EventListener onblur; 190 attribute EventListener onblur;
191 attribute EventListener oncanplay; 191 attribute EventListener oncanplay;
192 attribute EventListener oncanplaythrough; 192 attribute EventListener oncanplaythrough;
193 attribute EventListener onchange; 193 attribute EventListener onchange;
194 attribute EventListener onclick; 194 attribute EventListener onclick;
195 attribute EventListener oncontextmenu; 195 attribute EventListener oncontextmenu;
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 attribute MutationRecordConstructor MutationRecord; 746 attribute MutationRecordConstructor MutationRecord;
747 747
748 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 748 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
749 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 749 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
750 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 750 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
751 751
752 // window.toString() requires special handling in V8 752 // window.toString() requires special handling in V8
753 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 753 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
754 }; 754 };
755 755
OLDNEW
« no previous file with comments | « Source/core/html/HTMLDocument.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698