blob: d449faafec40c725bb17684655e2283d78df85c0 [file] [log] [blame]
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script src="resources/scripted-random.js"></script>
<script src="resources/viewspec-parser.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>
<script>
var tests = [];
// zoomAndPan with random assortments of valid characters
for (var i = 0; i < 50; i++) { //>
var attributeString = "svgView(zoomAndPan(";
var count = Math.scriptedRandomInt(20);
for (var j = 0; j < count; j++) { //>
attributeString += characters[Math.scriptedRandomInt(characters.length)];
}
tests.push(attributeString);
}
if (window.testRunner)
testRunner.waitUntilDone();
startViewspecTests(tests);
</script>
</html>