Skip to content

Commit

Permalink
Change order of element state bits
Browse files Browse the repository at this point in the history
  • Loading branch information
upsuper committed Jan 5, 2017
1 parent 42e28bf commit 381651f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/style/element_state.rs
Expand Up @@ -31,13 +31,13 @@ bitflags! {
const IN_CHECKED_STATE = 0x20,
#[doc = "https://html.spec.whatwg.org/multipage/#selector-indeterminate"]
const IN_INDETERMINATE_STATE = 0x40,
#[doc = "https://html.spec.whatwg.org/multipage/#selector-read-write"]
const IN_READ_WRITE_STATE = 0x80,
#[doc = "https://html.spec.whatwg.org/multipage/#selector-placeholder-shown"]
const IN_PLACEHOLDER_SHOWN_STATE = 0x0100,
const IN_PLACEHOLDER_SHOWN_STATE = 0x80,
#[doc = "https://html.spec.whatwg.org/multipage/#selector-target"]
const IN_TARGET_STATE = 0x0200,
const IN_TARGET_STATE = 0x100,
#[doc = "https://fullscreen.spec.whatwg.org/#%3Afullscreen-pseudo-class"]
const IN_FULLSCREEN_STATE = 0x0400,
const IN_FULLSCREEN_STATE = 0x200,
#[doc = "https://html.spec.whatwg.org/multipage/#selector-read-write"]
const IN_READ_WRITE_STATE = 0x400,
}
}

0 comments on commit 381651f

Please sign in to comment.