From ebf46f3df5c428053375cd41ce7af50bc2eceb0a Mon Sep 17 00:00:00 2001 From: Hiroyuki Ikezoe Date: Tue, 29 Jan 2019 09:20:32 +0000 Subject: [PATCH] Bug 1273876 - Check the computed style _color_. r=birtles Differential Revision: https://phabricator.services.mozilla.com/D17911 --HG-- extra : moz-landing-system : lando --- layout/style/test/test_transitions_events.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/style/test/test_transitions_events.html b/layout/style/test/test_transitions_events.html index 407874aed709..64a458413abf 100644 --- a/layout/style/test/test_transitions_events.html +++ b/layout/style/test/test_transitions_events.html @@ -235,8 +235,8 @@ started_test(); // #seven::after (listener on root) $("seven").setAttribute("foo", "bar"); setTimeout(function() { - if (cs("five") != "rgb(0, 255, 0)" && - cs("six") != "rgb(0, 255, 0)") { + if (cs("five").color != "rgb(0, 255, 0)" && + cs("six").color != "rgb(0, 255, 0)") { // The transition hasn't finished already. did_stops = true; }