Bug 1743329: apply code formatting via Lando

# ignore-this-changeset
This commit is contained in:
Otto Länd 2024-05-29 07:53:12 +00:00
parent 67490f9abf
commit 65c3ed2d33

View file

@ -184,10 +184,10 @@ using HidePopupOptions = mozilla::EnumSet<HidePopupOption>;
*/ */
extern const nsNavigationDirection DirectionFromKeyCodeTable[2][6]; extern const nsNavigationDirection DirectionFromKeyCodeTable[2][6];
#define NS_DIRECTION_FROM_KEY_CODE(frame, keycode) \ #define NS_DIRECTION_FROM_KEY_CODE(frame, keycode) \
(DirectionFromKeyCodeTable[static_cast<uint8_t>( \ (DirectionFromKeyCodeTable \
(frame)->StyleVisibility()->mDirection)][( \ [static_cast<uint8_t>((frame)->StyleVisibility()->mDirection)] \
keycode)-mozilla::dom::KeyboardEvent_Binding::DOM_VK_END]) [(keycode) - mozilla::dom::KeyboardEvent_Binding::DOM_VK_END])
// Used to hold information about a popup that is about to be opened. // Used to hold information about a popup that is about to be opened.
struct PendingPopup { struct PendingPopup {