Skip to content

Commit a2e3bca

Browse files
darrnshntabatkins
authored andcommitted
Enforce ordering on order of operations (w3c#685)
1 parent 0b3b1a0 commit a2e3bca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

css-typed-om/Overview.bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ The following are the arithmetic operations you can perform on dimensions:
881881
whose {{CSSUnitValue/unit}} internal slot is set to |this|’s {{CSSUnitValue/unit}} internal slot,
882882
and {{CSSUnitValue/value}} internal slot is set to the sum of
883883
the {{CSSUnitValue/value}} internal slots
884-
of the [=list/items=] in |values|.
884+
of the [=list/items=] in |values| (from left to right).
885885

886886
4. Let |type| be the result of [=adding=] the [=types=] of every [=list/item=] in |values|.
887887
If |type| is failure,
@@ -942,7 +942,7 @@ The following are the arithmetic operations you can perform on dimensions:
942942
whose {{CSSUnitValue/unit}} internal slot is set to "number",
943943
and {{CSSUnitValue/value}} internal slot is set to the product of
944944
the {{CSSUnitValue/value}} internal slots
945-
of the [=list/items=] in |values|.
945+
of the [=list/items=] in |values| (from left to right).
946946

947947
4. If all of the [=list/items=] in |values| are {{CSSUnitValue}}s
948948
with {{CSSUnitValue/unit}} internal slot set to "number"
@@ -951,7 +951,7 @@ The following are the arithmetic operations you can perform on dimensions:
951951
whose {{CSSUnitValue/unit}} internal slot is set to |unit|,
952952
and {{CSSUnitValue/value}} internal slot is set to the product of
953953
the {{CSSUnitValue/value}} internal slots
954-
of the [=list/items=] in |values|.
954+
of the [=list/items=] in |values| (from left to right).
955955

956956
5. Let |type| be the result of [=multiplying=] the [=types=] of every [=list/item=] in |values|.
957957
If |type| is failure,

0 commit comments

Comments
 (0)