@@ -309,7 +309,7 @@ enum LengthType {
309309 "cm", "mm", "q", "in", "pc", "pt"
310310};
311311
312- dictionary CSSCalcDictionary {
312+ dictionary CSSLengthCalcDictionary {
313313 double px;
314314 double percent;
315315 double em;
@@ -335,12 +335,12 @@ interface CSSLengthValue : CSSStyleValue {
335335 CSSLengthValue divide(double value);
336336 static CSSLengthValue from(DOMString cssText);
337337 static CSSLengthValue from(double value, LengthType type);
338- static CSSLengthValue from(CSSCalcDictionary dictionary);
338+ static CSSLengthValue from(CSSLengthCalcDictionary dictionary);
339339};
340340
341341[Constructor(DOMString cssText),
342342 Constructor(CSSLengthValue),
343- Constructor(CSSCalcDictionary )
343+ Constructor(CSSLengthCalcDictionary )
344344]
345345interface CSSCalcLength : CSSLengthValue {
346346 readonly attribute double? px;
@@ -419,7 +419,7 @@ The following methods are defined for {{CSSLengthValue}} objects:
419419:: Constructs a {{CSSSimpleLength}} with the given <var> value</var> and unit
420420 <var> type</var> .
421421
422- : <dfn method for=CSSLengthValue>from(CSSCalcDictionary dictionary)</dfn>
422+ : <dfn method for=CSSLengthValue>from(CSSLengthCalcDictionary dictionary)</dfn>
423423:: Constructs a {{CSSCalcLength}} with units and values as defined by the provided
424424 dictionary.
425425
0 commit comments