| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>Width/height properties in getComputedStyle of svg text</title> |
| 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <svg width="100" height="100"> |
| 6 <text id="text1">Text1</text> |
| 7 <text id="text2" style="width: 20px; height: 30%">Text2</text> |
| 8 </svg> |
| 9 <script> |
| 10 test(function() { |
| 11 assert_equals(getComputedStyle(text1).width, 'auto'); |
| 12 assert_equals(getComputedStyle(text1).height, 'auto'); |
| 13 assert_equals(getComputedStyle(text2).width, 'auto'); |
| 14 assert_equals(getComputedStyle(text2).height, 'auto'); |
| 15 }); |
| 16 </script> |
| OLD | NEW |