diff options
author | Gecko Backout <gecko-backout@mozilla.org> | 2017-11-26 11:02:41 +0000 |
---|---|---|
committer | moz-servo-sync <developer-services+moz-servo-sync@mozilla.org> | 2017-11-26 11:02:41 +0000 |
commit | 8679bafa93d5f87703c4aa1d2e461c9ae71bea35 (patch) | |
tree | 7ff72f8bb3266f2f70824a5f004809aaf61c5ce2 /ports | |
parent | 9651a5572ed02d3fe38578cf9ada49714c1bc6ef (diff) | |
download | servo-8679bafa93d5f87703c4aa1d2e461c9ae71bea35.tar.gz servo-8679bafa93d5f87703c4aa1d2e461c9ae71bea35.zip |
Backed out changeset 077ce85c466b for failing devtools webconsole/test/browser_webconsole_bug_595934_message_categories.js on Windows 7 debug without e10s. r=backout on a CLOSED TREE
Backs out https://github.com/servo/servo/pull/19374
Diffstat (limited to 'ports')
-rw-r--r-- | ports/geckolib/glue.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ports/geckolib/glue.rs b/ports/geckolib/glue.rs index f7733b37516..c0b60adaad5 100644 --- a/ports/geckolib/glue.rs +++ b/ports/geckolib/glue.rs @@ -4559,7 +4559,6 @@ pub extern "C" fn Servo_ComputeColor( current_color: structs::nscolor, value: *const nsAString, result_color: *mut structs::nscolor, - was_current_color: *mut bool, ) -> bool { use style::gecko; @@ -4594,11 +4593,6 @@ pub extern "C" fn Servo_ComputeColor( Some(computed_color) => { let rgba = computed_color.to_rgba(current_color); *result_color = gecko::values::convert_rgba_to_nscolor(&rgba); - if !was_current_color.is_null() { - unsafe { - *was_current_color = computed_color.is_currentcolor(); - } - } true } None => false, |