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

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

Issue 2528263004: Remove unused ExceptionState argument from CSSAngleValue constructor (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSAngleValue.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 // https://drafts.css-houdini.org/css-typed-om-1/#anglevalue-objects 1 // https://drafts.css-houdini.org/css-typed-om-1/#anglevalue-objects
2 2
3 enum CSSAngleUnit { 3 enum CSSAngleUnit {
4 "deg", "rad", "grad", "turn" 4 "deg", "rad", "grad", "turn"
5 }; 5 };
6 6
7 [ 7 [
8 Constructor(double value, CSSAngleUnit unit), 8 Constructor(double value, CSSAngleUnit unit),
9 Exposed=(Window,PaintWorklet), 9 Exposed=(Window,PaintWorklet),
10 RuntimeEnabled=CSSTypedOM, 10 RuntimeEnabled=CSSTypedOM
11 RaisesException=Constructor
12 ] interface CSSAngleValue : CSSStyleValue { 11 ] interface CSSAngleValue : CSSStyleValue {
13 readonly attribute double degrees; 12 readonly attribute double degrees;
14 readonly attribute double radians; 13 readonly attribute double radians;
15 readonly attribute double gradians; 14 readonly attribute double gradians;
16 readonly attribute double turns; 15 readonly attribute double turns;
17 }; 16 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698