afe3f43f (v8)

Revision 8 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Other
var left = "left";
var idCssText = "#div1{left: 155px;top: 187px;height: 40px;width: 100px;position: absolute;background-color: #66CCFF;}";

var hey = idCssText.replace(/left[ ]*?:([^;]*);/ig, "left: " + left + "px;");
ready
Mine
var left = "left";
var idCssText = "#div1{left: 155px;top: 187px;height: 40px;width: 100px;position: absolute;background-color: #66CCFF;}";

var hey = idCssText.replace(/left\s*?:([^;]*);/ig, "left: " + left + "px;");
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.