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

Unified Diff: LayoutTests/fast/svg/whitespace-angle.html

Issue 319883002: Revert "[SVG2] Allow leading and trailing whitespace in svg attributes using" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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/fast/svg/whitespace-angle.html
diff --git a/LayoutTests/fast/svg/whitespace-angle.html b/LayoutTests/fast/svg/whitespace-angle.html
deleted file mode 100644
index b8d1b929a6056a1d89ff71152fad88b165322da1..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/svg/whitespace-angle.html
+++ /dev/null
@@ -1,34 +0,0 @@
-<!doctype html>
-<title>Whitespace in <angle> attribute values</title>
-<script src=../../resources/testharness.js></script>
-<script src=../../resources/testharnessreport.js></script>
-<script src=resources/whitespace-helper.js></script>
-<svg id="testcontainer">
- <defs>
- <marker/>
- </defs>
-</svg>
-<div id=log></div>
-<script>
-var svg = document.querySelector("svg");
-
-// test length values
-var EPSILON = Math.pow(2, -24); // float epsilon
-var whitespace = [ "", " ", " ", "\r\n\t ", "\f" ];
-var garbage = [ "a", "e", "foo", ")90" ];
-var validunits = [ "", "em", "ex", "px", "in", "cm", "mm", "pt", "pc", "%" ];
-
-testType("<angle>",
- document.querySelector("marker"),
- "orient",
- 0, // expected default value
- whitespace,
- [ "-47", ".1", "0.35", "1e-10", "+32", "+17E-1", "17e+2" ], // valid
- [ Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY, "fnord", "E", "e", "e+", "E-", "-", "+", "-.", ".-", ".", "+.", ".E0", "e1" ], // invalid
- [ "", "deg", "rad", "grad" ], // valid units
- garbage,
- function(elm, value) { assert_approx_equals(elm.orientAngle.baseVal.valueInSpecifiedUnits, parseFloat(value), EPSILON); },
- function(elm, expected) { assert_approx_equals(elm.orientAngle.baseVal.value, expected, EPSILON); } );
-
-
-</script>
« no previous file with comments | « LayoutTests/fast/svg/resources/whitespace-helper.js ('k') | LayoutTests/fast/svg/whitespace-angle-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698