style: Update bindings.

This commit is contained in:
Emilio Cobos Álvarez 2018-01-31 11:28:06 +01:00
parent 0466e0b2bc
commit 4d84200c8b
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -724,6 +724,13 @@ extern "C" {
classList: *mut *mut *mut nsAtom,
) -> u32;
}
extern "C" {
pub fn Gecko_HasClass(
element: RawGeckoElementBorrowed,
class_: *mut nsAtom,
ignore_case: bool,
) -> bool;
}
extern "C" {
pub fn Gecko_SnapshotAtomAttrValue(
element: *const ServoElementSnapshot,
@ -801,6 +808,13 @@ extern "C" {
classList: *mut *mut *mut nsAtom,
) -> u32;
}
extern "C" {
pub fn Gecko_SnapshotHasClass(
element: *const ServoElementSnapshot,
class_: *mut nsAtom,
ignore_case: bool,
) -> bool;
}
extern "C" {
pub fn Gecko_GetStyleAttrDeclarationBlock(
element: RawGeckoElementBorrowed,