| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 enum LengthType { | |
| 6 "px", "percent", "em", "ex", "ch", "rem", "vw", "vh", "vmin", "vmax", "cm",
"mm", "in", "pc", "pt" | |
| 7 }; | |
| 8 | |
| 9 [ | |
| 10 Exposed=(Window,PaintWorklet), | |
| 11 RuntimeEnabled=CSSTypedOM | |
| 12 ] interface CSSLengthValue : CSSStyleValue { | |
| 13 [NewObject] CSSLengthValue add(CSSLengthValue other); | |
| 14 [NewObject] CSSLengthValue subtract(CSSLengthValue other); | |
| 15 [NewObject] CSSLengthValue multiply(double value); | |
| 16 [RaisesException, NewObject] CSSLengthValue divide(double value); | |
| 17 | |
| 18 [RaisesException, NewObject] static CSSLengthValue from(DOMString cssText); | |
| 19 [RaisesException, NewObject] static CSSLengthValue from(double value, Length
Type type); | |
| 20 [RaisesException, NewObject] static CSSLengthValue from(CSSCalcDictionary di
ctionary); | |
| 21 }; | |
| OLD | NEW |