mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
style: Update bindings.
This commit is contained in:
parent
0466e0b2bc
commit
4d84200c8b
1 changed files with 14 additions and 0 deletions
|
@ -724,6 +724,13 @@ extern "C" {
|
||||||
classList: *mut *mut *mut nsAtom,
|
classList: *mut *mut *mut nsAtom,
|
||||||
) -> u32;
|
) -> u32;
|
||||||
}
|
}
|
||||||
|
extern "C" {
|
||||||
|
pub fn Gecko_HasClass(
|
||||||
|
element: RawGeckoElementBorrowed,
|
||||||
|
class_: *mut nsAtom,
|
||||||
|
ignore_case: bool,
|
||||||
|
) -> bool;
|
||||||
|
}
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn Gecko_SnapshotAtomAttrValue(
|
pub fn Gecko_SnapshotAtomAttrValue(
|
||||||
element: *const ServoElementSnapshot,
|
element: *const ServoElementSnapshot,
|
||||||
|
@ -801,6 +808,13 @@ extern "C" {
|
||||||
classList: *mut *mut *mut nsAtom,
|
classList: *mut *mut *mut nsAtom,
|
||||||
) -> u32;
|
) -> u32;
|
||||||
}
|
}
|
||||||
|
extern "C" {
|
||||||
|
pub fn Gecko_SnapshotHasClass(
|
||||||
|
element: *const ServoElementSnapshot,
|
||||||
|
class_: *mut nsAtom,
|
||||||
|
ignore_case: bool,
|
||||||
|
) -> bool;
|
||||||
|
}
|
||||||
extern "C" {
|
extern "C" {
|
||||||
pub fn Gecko_GetStyleAttrDeclarationBlock(
|
pub fn Gecko_GetStyleAttrDeclarationBlock(
|
||||||
element: RawGeckoElementBorrowed,
|
element: RawGeckoElementBorrowed,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue