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

Side by Side Diff: third_party/WebKit/Source/core/css/cssom/CSSAngleValue.idl

Issue 2036893003: [CSS Typed OM] Rename StyleValue -> CSSStyleValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update more union types Created 4 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
OLDNEW
1 enum CSSAngleUnit { 1 enum CSSAngleUnit {
2 "deg", "rad", "grad", "turn" 2 "deg", "rad", "grad", "turn"
3 }; 3 };
4 4
5 [ 5 [
6 Constructor(double value, CSSAngleUnit unit), 6 Constructor(double value, CSSAngleUnit unit),
7 RuntimeEnabled=CSSTypedOM, 7 RuntimeEnabled=CSSTypedOM,
8 RaisesException=Constructor 8 RaisesException=Constructor
9 ] interface CSSAngleValue : StyleValue { 9 ] interface CSSAngleValue : CSSStyleValue {
10 readonly attribute double degrees; 10 readonly attribute double degrees;
11 readonly attribute double radians; 11 readonly attribute double radians;
12 readonly attribute double gradians; 12 readonly attribute double gradians;
13 readonly attribute double turns; 13 readonly attribute double turns;
14 }; 14 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSAngleValue.h ('k') | third_party/WebKit/Source/core/css/cssom/CSSCalcLength.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698