Define Gecko CounterStyle and FontFaceRule clone functions.

This commit is contained in:
Brad Werth 2017-06-08 09:47:40 -07:00
parent 3616b8f0c3
commit 78ce522eed
5 changed files with 60 additions and 2 deletions

View file

@ -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,