mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Define Gecko CounterStyle and FontFaceRule clone functions.
This commit is contained in:
parent
3616b8f0c3
commit
78ce522eed
5 changed files with 60 additions and 2 deletions
|
@ -1420,6 +1420,10 @@ extern "C" {
|
|||
pub fn Gecko_CSSFontFaceRule_Create(line: u32, column: u32)
|
||||
-> *mut nsCSSFontFaceRule;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Gecko_CSSFontFaceRule_Clone(rule: *const nsCSSFontFaceRule)
|
||||
-> *mut nsCSSFontFaceRule;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Gecko_CSSFontFaceRule_GetCssText(rule: *const nsCSSFontFaceRule,
|
||||
result: *mut nsAString);
|
||||
|
@ -1434,6 +1438,10 @@ extern "C" {
|
|||
pub fn Gecko_CSSCounterStyle_Create(name: *mut nsIAtom)
|
||||
-> *mut nsCSSCounterStyleRule;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Gecko_CSSCounterStyle_Clone(rule: *const nsCSSCounterStyleRule)
|
||||
-> *mut nsCSSCounterStyleRule;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn Gecko_CSSCounterStyle_GetCssText(rule:
|
||||
*const nsCSSCounterStyleRule,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue