| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 <script src="../../fast/js/resources/js-test-pre.js"/> | 3 <script src="../../fast/js/resources/js-test-pre.js"/> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <svg display="none" xmlns="http://www.w3.org/2000/svg"><text id="text"/></svg> | 6 <svg display="none" xmlns="http://www.w3.org/2000/svg"><text id="text"/></svg> |
| 7 <p id="description"></p> | 7 <p id="description"></p> |
| 8 <div id="console"/> | 8 <div id="console"/> |
| 9 <script> | 9 <script> |
| 10 var textElement = document.getElementById("text"); | 10 var textElement = document.getElementById("text"); |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 debug('Tests rounding of fractional angle values.'); | 112 debug('Tests rounding of fractional angle values.'); |
| 113 debug(''); | 113 debug(''); |
| 114 | 114 |
| 115 parseGlyphOrientation("45.0000", 0.0); | 115 parseGlyphOrientation("45.0000", 0.0); |
| 116 parseGlyphOrientation("45.0001", 90.0); | 116 parseGlyphOrientation("45.0001", 90.0); |
| 117 parseGlyphOrientation("135.000", 90.0); | 117 parseGlyphOrientation("135.000", 90.0); |
| 118 parseGlyphOrientation("135.001", 180.0); | 118 parseGlyphOrientation("135.001", 180.0); |
| 119 | 119 |
| 120 | 120 |
| 121 </script> | 121 </script> |
| 122 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 123 | 122 |
| 124 </body> | 123 </body> |
| 125 </html> | 124 </html> |
| OLD | NEW |