OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
| 3 <script src="../../resources/ahem.js"></script> |
3 <style> | 4 <style> |
4 * { font-size: 16px; } | 5 * { font-size: 16px; } |
5 svg, rect { font-family: 'Ahem'; } | 6 svg, rect { font-family: 'Ahem'; } |
6 div { font-size: 8px; } | 7 div { font-size: 8px; } |
7 </style> | 8 </style> |
8 <html> | 9 <html> |
9 <svg id="svg" width="0" height="0"></svg> | 10 <svg id="svg" width="0" height="0"></svg> |
10 <script src="../../resources/js-test.js"></script> | 11 <script src="../../resources/js-test.js"></script> |
11 <script> | 12 <script> |
12 description("Test that 'length' presentation attribute values are parsed with CS
S presentation rules."); | 13 description("Test that 'length' presentation attribute values are parsed with CS
S presentation rules."); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 var rxryelements = [ "rect", "ellipse" ]; | 58 var rxryelements = [ "rect", "ellipse" ]; |
58 for (var elm of rxryelements) { | 59 for (var elm of rxryelements) { |
59 testAttributeOnElement(elm, "rx"); | 60 testAttributeOnElement(elm, "rx"); |
60 testAttributeOnElement(elm, "ry"); | 61 testAttributeOnElement(elm, "ry"); |
61 } | 62 } |
62 | 63 |
63 testAttributeOnElement("circle", "r"); | 64 testAttributeOnElement("circle", "r"); |
64 </script> | 65 </script> |
65 </body> | 66 </body> |
66 </html> | 67 </html> |
OLD | NEW |