Bug 822287 - Mark part of browser_profiler_run.js todo() on Windows

This commit is contained in:
Ed Morley 2013-01-10 14:59:27 +00:00
parent a87be9ab37
commit 885dca26f8

View File

@ -82,7 +82,11 @@ function onParsed() {
}
ok(sample.length > 0, "We have some items displayed");
is(sample[0].innerHTML, "100.0%", "First percentage is 100%");
if (navigator.platform.contains("Win")) {
todo(false, "First percentage is 100%: Disabled on Windows for intermittent failures, see bug 822287.");
} else {
is(sample[0].innerHTML, "100.0%", "First percentage is 100%");
}
attemptTearDown();
}