blob: d7748031fe28132b11059de515871915d66735c9 [file] [edit]
<html>
<head>
<script src="../../resources/js-test.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 = [];
// viewTarget with random assortments of valid characters
for (var i = 0; i < 50; i++) { //>
var attributeString = "svgView(viewTarget(";
var count = Math.scriptedRandomInt(20);
for (var j = 0; j < count; j++) { //>
attributeString += characters[Math.scriptedRandomInt(characters.length)];
}
tests.push(attributeString);
}
window.jsTestIsAsync = true;
startViewspecTests(tests);
</script>
</html>