diff options
Diffstat (limited to 'src/components/script/dom/testbinding.rs')
-rw-r--r-- | src/components/script/dom/testbinding.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/components/script/dom/testbinding.rs b/src/components/script/dom/testbinding.rs index 630e457fb87..514260c5c10 100644 --- a/src/components/script/dom/testbinding.rs +++ b/src/components/script/dom/testbinding.rs @@ -8,9 +8,8 @@ use dom::blob::Blob; use dom::window::Window; use servo_util::str::DOMString; -use js::JSVAL_NULL; use js::jsapi::JSContext; -use js::jsval::JSVal; +use js::jsval::{JSVal, NullValue}; #[deriving(Encodable)] pub struct TestBinding { @@ -45,7 +44,7 @@ impl TestBinding { pub fn SetStringAttribute(&self, _: DOMString) {} pub fn InterfaceAttribute(&self) -> JS<Blob> { Blob::new(&self.window) } pub fn SetInterfaceAttribute(&self, _: &JS<Blob>) {} - pub fn AnyAttribute(&self, _: *JSContext) -> JSVal { JSVAL_NULL } + pub fn AnyAttribute(&self, _: *JSContext) -> JSVal { NullValue() } pub fn SetAnyAttribute(&self, _: *JSContext, _: JSVal) {} pub fn GetBooleanAttributeNullable(&self) -> Option<bool> { Some(false) } |