increase the random factor in order to get more failing tests :)

This commit is contained in:
Christopher Chedeau
2014-04-21 18:50:34 -07:00
parent 78315b5bbf
commit 37c518943e
2 changed files with 12 additions and 12 deletions

View File

@@ -148,7 +148,7 @@ var layoutTestUtils = (function() {
node.style[key] = Math.round(value / 100) * 100;
} else if (value > 10) {
node.style[key] = Math.round(value / 10) * 10;
} else if (value > 0) {
} else if (value > 1) {
node.style[key] = 5;
}
if (node.style[key] !== value) {