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

Side by Side Diff: client/dom/generated/src/frog/CSSStyleDeclaration.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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
OLDNEW
1 1
2 class CSSStyleDeclaration native "*CSSStyleDeclaration" { 2 class CSSStyleDeclarationJS implements CSSStyleDeclaration native "*CSSStyleDecl aration" {
3 3
4 String get cssText() native "return this.cssText;"; 4 String get cssText() native "return this.cssText;";
5 5
6 void set cssText(String value) native "this.cssText = value;"; 6 void set cssText(String value) native "this.cssText = value;";
7 7
8 int get length() native "return this.length;"; 8 int get length() native "return this.length;";
9 9
10 CSSRule get parentRule() native "return this.parentRule;"; 10 CSSRuleJS get parentRule() native "return this.parentRule;";
11 11
12 CSSValue getPropertyCSSValue(String propertyName) native; 12 CSSValueJS getPropertyCSSValue(String propertyName) native;
13 13
14 String getPropertyPriority(String propertyName) native; 14 String getPropertyPriority(String propertyName) native;
15 15
16 String getPropertyShorthand(String propertyName) native; 16 String getPropertyShorthand(String propertyName) native;
17 17
18 String getPropertyValue(String propertyName) native; 18 String getPropertyValue(String propertyName) native;
19 19
20 bool isPropertyImplicit(String propertyName) native; 20 bool isPropertyImplicit(String propertyName) native;
21 21
22 String item(int index) native; 22 String item(int index) native;
23 23
24 String removeProperty(String propertyName) native; 24 String removeProperty(String propertyName) native;
25 25
26 void setProperty(String propertyName, String value, [String priority = null]) native; 26 void setProperty(String propertyName, String value, [String priority = null]) native;
27 27
28 var dartObjectLocalStorage; 28 var dartObjectLocalStorage;
29 29
30 String get typeName() native; 30 String get typeName() native;
31 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/CSSRuleList.dart ('k') | client/dom/generated/src/frog/CSSStyleRule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698