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

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

Issue 2867883003: [CSS Typed OM] Delete obsolete number and length classes from Typed OM (Closed)
Patch Set: rebase Created 3 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
(Empty)
1 // https://drafts.css-houdini.org/css-typed-om-1/#anglevalue-objects
2
3 enum CSSAngleUnit {
4 "deg", "rad", "grad", "turn"
5 };
6
7 [
8 Constructor(double value, CSSAngleUnit unit),
9 Exposed=(Window,PaintWorklet),
10 RuntimeEnabled=CSSTypedOM
11 ] interface CSSAngleValue : CSSStyleValue {
12 readonly attribute double degrees;
13 readonly attribute double radians;
14 readonly attribute double gradians;
15 readonly attribute double turns;
16 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSAngleValue.cpp ('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