Skip to content

Commit

Permalink
style: Add a comment quoting the spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Oct 9, 2019
1 parent 8798549 commit 35a98af
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions components/style/logical_geometry.rs
Expand Up @@ -140,6 +140,13 @@ impl WritingMode {
TextOrientation::Mixed => {},
TextOrientation::Upright => {
flags.insert(WritingMode::UPRIGHT);

// https://drafts.csswg.org/css-writing-modes-3/#valdef-text-orientation-upright:
//
// > This value causes the used value of direction
// > to be ltr, and for the purposes of bidi
// > reordering, causes all characters to be treated
// > as strong LTR.
flags.remove(WritingMode::RTL);
flags.remove(WritingMode::INLINE_REVERSED);
},
Expand Down

0 comments on commit 35a98af

Please sign in to comment.