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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/parser/whitespace-angle-1.html

Issue 2452153002: Break svg/parser tests into pieces to avoid timeouts (Closed)
Patch Set: New baselines. Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <title>Whitespace in <angle> attribute values</title> 2 <title>Whitespace in <angle> attribute values</title>
3 <script src=../../resources/testharness.js></script> 3 <script src=../../resources/testharness.js></script>
4 <script src=../../resources/testharnessreport.js></script> 4 <script src=../../resources/testharnessreport.js></script>
5 <script src=resources/whitespace-helper.js></script> 5 <script src=resources/whitespace-helper.js></script>
6 <svg id="testcontainer"> 6 <svg id="testcontainer">
7 <defs> 7 <defs>
8 <marker/> 8 <marker/>
9 </defs> 9 </defs>
10 </svg> 10 </svg>
11 <div id=log></div> 11 <div id=log></div>
12 <script> 12 <script>
13 var svg = document.querySelector("svg"); 13 var svg = document.querySelector("svg");
14 14
15 // test length values 15 // test length values
16 var EPSILON = Math.pow(2, -24); // float epsilon 16 var EPSILON = Math.pow(2, -24); // float epsilon
17 var whitespace = [ "", " ", " ", "\r\n\t ", "\f" ]; 17 var whitespace = [ "", " ", " ", "\r\n\t ", "\f" ];
18 var garbage = [ "a", "e", "foo", ")90" ]; 18 var garbage = [ "a", "e", "foo", ")90" ];
19 var validunits = [ "", "em", "ex", "px", "in", "cm", "mm", "pt", "pc", "%" ];
20 19
20 // Identical to whitespace-angle-2 apart from valid entries. Split to
21 // reduce test timeouts on Linux Debug.
21 testType("<angle>", 22 testType("<angle>",
22 document.querySelector("marker"), 23 document.querySelector("marker"),
23 "orient", 24 "orient",
24 0, // expected default value 25 0, // expected default value
25 whitespace, 26 whitespace,
26 » » [ "-47", ".1", "0.35", "1e-10", "+32", "+17E-1", "17e+2" ], // valid 27 » » [ "-47", ".1", "0.35", "1e-10" ], // valid
27 [ Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINIT Y, "fnord", "E", "e", "e+", "E-", "-", "+", "-.", ".-", ".", "+.", ".E0", "e1" ] , // invalid 28 [ Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINIT Y, "fnord", "E", "e", "e+", "E-", "-", "+", "-.", ".-", ".", "+.", ".E0", "e1" ] , // invalid
28 [ "", "deg", "rad", "grad" ], // valid units 29 [ "", "deg", "rad", "grad" ], // valid units
29 garbage, 30 garbage,
30 function(elm, value) { assert_approx_equals(elm.orientAngle.bas eVal.valueInSpecifiedUnits, parseFloat(value), EPSILON); }, 31 function(elm, value) { assert_approx_equals(elm.orientAngle.bas eVal.valueInSpecifiedUnits, parseFloat(value), EPSILON); },
31 function(elm, expected) { assert_approx_equals(elm.orientAngle. baseVal.value, expected, EPSILON); } ); 32 function(elm, expected) { assert_approx_equals(elm.orientAngle. baseVal.value, expected, EPSILON); } );
32 33
33 34
34 </script> 35 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698