style: Consistently use top-right-bottom-left order for physical sides.

Bug: 1454591
Reviewed-by: heycam
MozReview-Commit-ID: 6pLRSO8YNDI
This commit is contained in:
Xidorn Quan 2018-05-04 15:15:56 +10:00 committed by Emilio Cobos Álvarez
parent cb764be7cd
commit 4ab0e85ed5
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
import re
PHYSICAL_SIDES = ["top", "left", "bottom", "right"]
PHYSICAL_SIDES = ["top", "right", "bottom", "left"]
LOGICAL_SIDES = ["block-start", "block-end", "inline-start", "inline-end"]
PHYSICAL_SIZES = ["width", "height"]
LOGICAL_SIZES = ["block-size", "inline-size"]