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

Side by Side Diff: tools/dom/idl/dart/dart.idl

Issue 442523003: Add property to CssStyleDeclaration to detect if a CSS value is available. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « tools/dom/dom.json ('k') | tools/dom/scripts/css_code_generator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This file introduces / supplements and forces Dart declarations. 1 // This file introduces / supplements and forces Dart declarations.
2 2
3 [Supplemental, 3 [Supplemental,
4 Constructor] 4 Constructor]
5 interface AudioContext { 5 interface AudioContext {
6 // TODO(ager): Auto-generate this custom method when the info about retaining 6 // TODO(ager): Auto-generate this custom method when the info about retaining
7 // typed arrays is in the IDL. 7 // typed arrays is in the IDL.
8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback); 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe ssCallback, AudioBufferCallback errorCallback);
9 }; 9 };
10 10
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 }; 483 };
484 484
485 [Supplemental] interface SpeechInputEvent : Event { 485 [Supplemental] interface SpeechInputEvent : Event {
486 [Suppressed] readonly attribute SpeechInputResultList results; 486 [Suppressed] readonly attribute SpeechInputResultList results;
487 }; 487 };
488 488
489 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode { 489 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode {
490 [Suppressed] readonly attribute AudioParam gain; 490 [Suppressed] readonly attribute AudioParam gain;
491 }; 491 };
492 492
493 [Supplemental]
494 interface CSSStyleDeclaration {
495 [Supplemental] boolean __propertyQuery__(DOMString name);
496 };
497
493 Element implements GlobalEventHandlers; 498 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « tools/dom/dom.json ('k') | tools/dom/scripts/css_code_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698