aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-07-20 08:21:18 -0500
committerGitHub <noreply@github.com>2016-07-20 08:21:18 -0500
commit5832008c26d0858e0cc9e47f2abd43966ca05a54 (patch)
treed350da92f5d8252382b1bed85d6605a3ef76a93b
parent73cfab0016fd761da24d6280154fda6561b417fe (diff)
parentc94173a238af9a0369512866399e3082a7f94dbe (diff)
downloadservo-5832008c26d0858e0cc9e47f2abd43966ca05a54.tar.gz
servo-5832008c26d0858e0cc9e47f2abd43966ca05a54.zip
Auto merge of #12517 - Manishearth:sync, r=heycam
Resync bindings Corresponds to the tmp-stylo-rebase branch on servo/gecko-dev Still testing locally <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12517) <!-- Reviewable:end -->
-rw-r--r--ports/geckolib/gecko_bindings/bindings.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/geckolib/gecko_bindings/bindings.rs b/ports/geckolib/gecko_bindings/bindings.rs
index 550d5c8cc8e..76e96a0ac06 100644
--- a/ports/geckolib/gecko_bindings/bindings.rs
+++ b/ports/geckolib/gecko_bindings/bindings.rs
@@ -293,7 +293,7 @@ extern "C" {
pub fn Servo_StyleSheetHasRules(sheet: *mut RawServoStyleSheet) -> bool;
pub fn Servo_InitStyleSet() -> *mut RawServoStyleSet;
pub fn Servo_DropStyleSet(set: *mut RawServoStyleSet);
- pub fn Servo_ParseStyleAttribute(bytes: *const u8, length: u8,
+ pub fn Servo_ParseStyleAttribute(bytes: *const u8, length: u32,
cache: *mut nsHTMLCSSStyleSheet)
-> *mut ServoDeclarationBlock;
pub fn Servo_DropDeclarationBlock(declarations:
@@ -305,7 +305,7 @@ extern "C" {
*mut ServoDeclarationBlock);
pub fn Servo_ClearDeclarationBlockCachePointer(declarations:
*mut ServoDeclarationBlock);
- pub fn Servo_CSSSupports(property: *const u8, property_length: u32,
+ pub fn Servo_CSSSupports(name: *const u8, name_length: u32,
value: *const u8, value_length: u32) -> bool;
pub fn Servo_GetComputedValues(node: *mut RawGeckoNode)
-> *mut ServoComputedValues;