diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2016-08-03 17:55:02 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2016-08-03 17:55:02 -0700 |
commit | b916ad0a85b88eb40d919986cdc0c6b7420a4fab (patch) | |
tree | 72f70bf3ae682fc7a5510df3322b048f6e89a536 | |
parent | 1e7307601d24697bd748f6a5f9f398715f06d8c9 (diff) | |
download | servo-b916ad0a85b88eb40d919986cdc0c6b7420a4fab.tar.gz servo-b916ad0a85b88eb40d919986cdc0c6b7420a4fab.zip |
Convert currentColor crash into a warning.
-rw-r--r-- | components/style/properties/gecko.mako.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/properties/gecko.mako.rs b/components/style/properties/gecko.mako.rs index bb8fd5220fa..8fd16e33c07 100644 --- a/components/style/properties/gecko.mako.rs +++ b/components/style/properties/gecko.mako.rs @@ -259,7 +259,7 @@ def set_gecko_property(ffi_name, expr): // In the longer term, Gecko should store currentColor as a computed // value, so that we don't need to do this: // https://bugzilla.mozilla.org/show_bug.cgi?id=760345 - unimplemented!(); + warn!("stylo: mishandling currentColor"); % endif </%def> |