Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 702588
Collapse All | Expand All

(-)firefox-71.0.orig/layout/generic/WritingModes.h (-1 / +2 lines)
Lines 518-524 class WritingMode { Link Here
518
   */
518
   */
519
  void SetDirectionFromBidiLevel(uint8_t level) {
519
  void SetDirectionFromBidiLevel(uint8_t level) {
520
    if (IS_LEVEL_RTL(level) == IsBidiLTR()) {
520
    if (IS_LEVEL_RTL(level) == IsBidiLTR()) {
521
      mWritingMode ^= StyleWritingMode_RTL | StyleWritingMode_INLINE_REVERSED;
521
      mWritingMode.bits ^= static_cast<uint8_t>(
522
          (StyleWritingMode_RTL | StyleWritingMode_INLINE_REVERSED).bits);
522
    }
523
    }
523
  }
524
  }
524
525
(-)firefox-71.0.orig/servo/ports/geckolib/cbindgen.toml (-10 lines)
Lines 616-628 renaming_overrides_prefixing = true Link Here
616
  // Get the layout rect, replacing auto right / bottom values for aAutoSize.
616
  // Get the layout rect, replacing auto right / bottom values for aAutoSize.
617
  inline nsRect ToLayoutRect(nscoord aAutoSize = NS_MAXSIZE) const;
617
  inline nsRect ToLayoutRect(nscoord aAutoSize = NS_MAXSIZE) const;
618
"""
618
"""
619
620
"WritingMode" = """
621
  StyleWritingMode operator^(const StyleWritingMode& other) const {
622
    return {static_cast<decltype(bits)>(this->bits ^ other.bits)};
623
  }
624
  StyleWritingMode& operator^=(const StyleWritingMode& other) {
625
    *this = (*this ^ other);
626
    return *this;
627
  }
628
"""

Return to bug 702588