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

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

Issue 13646013: Enable support for CSS Conditional Rules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/page/DOMWindow.cpp ('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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame([Call back] RequestAnimationFrameCallback callback); 177 [MeasureAs=UnprefixedRequestAnimationFrame] long requestAnimationFrame([Call back] RequestAnimationFrameCallback callback);
178 void cancelAnimationFrame(long id); 178 void cancelAnimationFrame(long id);
179 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame([ Callback] RequestAnimationFrameCallback callback); 179 [MeasureAs=PrefixedRequestAnimationFrame] long webkitRequestAnimationFrame([ Callback] RequestAnimationFrameCallback callback);
180 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id ); 180 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(long id );
181 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix. 181 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame( long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix.
182 182
183 // Base64 183 // Base64
184 [RaisesException] DOMString atob([TreatNullAs=NullString,Default=Undefined] optional DOMString string); 184 [RaisesException] DOMString atob([TreatNullAs=NullString,Default=Undefined] optional DOMString string);
185 [RaisesException] DOMString btoa([TreatNullAs=NullString,Default=Undefined] optional DOMString string); 185 [RaisesException] DOMString btoa([TreatNullAs=NullString,Default=Undefined] optional DOMString string);
186 186
187 [Replaceable,Conditional=CSS3_CONDITIONAL_RULES] attribute DOMWindowCSS CSS; 187 [Replaceable] attribute DOMWindowCSS CSS;
188 188
189 // Events 189 // Events
190 attribute EventListener onabort; 190 attribute EventListener onabort;
191 attribute EventListener onbeforeunload; 191 attribute EventListener onbeforeunload;
192 attribute EventListener onblur; 192 attribute EventListener onblur;
193 attribute EventListener oncanplay; 193 attribute EventListener oncanplay;
194 attribute EventListener oncanplaythrough; 194 attribute EventListener oncanplaythrough;
195 attribute EventListener onchange; 195 attribute EventListener onchange;
196 attribute EventListener onclick; 196 attribute EventListener onclick;
197 attribute EventListener oncontextmenu; 197 attribute EventListener oncontextmenu;
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 attribute MutationRecordConstructor MutationRecord; 750 attribute MutationRecordConstructor MutationRecord;
751 751
752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 752 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 753 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 754 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
755 755
756 // window.toString() requires special handling in V8 756 // window.toString() requires special handling in V8
757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 757 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
758 }; 758 };
759 759
OLDNEW
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698