Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: LayoutTests/svg/dom/viewspec-parser-4.html

Issue 17143003: Rewrite SVG viewspec tests to not be fuzzer tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update for landing Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/dom/viewspec-parser-4.html
diff --git a/LayoutTests/svg/dom/viewspec-parser-4.html b/LayoutTests/svg/dom/viewspec-parser-4.html
deleted file mode 100644
index 4f1d0703552747f7bcee93d53fc4530f0cc537ee..0000000000000000000000000000000000000000
--- a/LayoutTests/svg/dom/viewspec-parser-4.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-<head>
-<script src="../../fast/js/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 = [];
-
- // preserveAspectRatio with random assortments of valid characters
- for (var i = 0; i < 50; i++) { //>
- var attributeString = "svgView(preserveAspectRatio(";
- 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>
« no previous file with comments | « LayoutTests/svg/dom/viewspec-parser-3-expected.txt ('k') | LayoutTests/svg/dom/viewspec-parser-4-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698