Bug 782546 - make the todo_is() on linux32 a todo(false) since it's only consistent about being either true or false

--HG--
extra : rebase_source : 571e795503f90a4613ad448a6cb9e63dfff64126
This commit is contained in:
Phil Ringnalda 2012-09-23 18:49:48 -07:00
parent 7bc4b22889
commit bc6820f7f3

View File

@ -37,7 +37,7 @@ function startTest() {
waitForAllPaintsFlushed(function () {
var painted = utils.checkAndClearPaintedState(e);
if (isLinux && !is64) {
todo_is(painted, false, "Fully-visible scrolled element should not have been painted (disabled on Linux-32)");
todo(false, "Fully-visible scrolled element should not have been painted (random on Linux-32)");
} else {
is(painted, false, "Fully-visible scrolled element should not have been painted");
}