| Index: LayoutTests/svg/custom/getBBox-perpendicular-polyline.svg | 
| diff --git a/LayoutTests/svg/custom/getBBox-perpendicular-path.svg b/LayoutTests/svg/custom/getBBox-perpendicular-polyline.svg | 
| similarity index 70% | 
| copy from LayoutTests/svg/custom/getBBox-perpendicular-path.svg | 
| copy to LayoutTests/svg/custom/getBBox-perpendicular-polyline.svg | 
| index 8c5d5e8d08b729f2538e7a5989c07c4559044ddc..e04c436d3b937ca58090aa178cf32db87012d615 100644 | 
| --- a/LayoutTests/svg/custom/getBBox-perpendicular-path.svg | 
| +++ b/LayoutTests/svg/custom/getBBox-perpendicular-polyline.svg | 
| @@ -1,5 +1,4 @@ | 
| -<?xml version="1.0" encoding="UTF-8"?> | 
| -<!-- Test the bounding box calculated for two perpendicular lines of length 100px --> | 
| +<!-- Test the bounding box calculated for two perpendicular lines of length 100px created with the polyline element --> | 
| <!-- If the bounding box is 100x100, we consider this test passing. --> | 
| <svg xmlns="http://www.w3.org/2000/svg" onload="init()"> | 
| <script type="text/javascript"> | 
| @@ -19,8 +18,8 @@ | 
| ]]> | 
| </script> | 
| <g id="shape"> | 
| -    <path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="M5 5L5 105" fill-rule="nonzero"></path> | 
| -    <path stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" d="M5 5L105 5" fill-rule="nonzero"></path> | 
| +    <polyline stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" points="5,5 5,105" fill-rule="nonzero" /> | 
| +    <polyline stroke="#666666" stroke-width="2.0" stroke-linejoin="round" stroke-linecap="butt" points="5,5 105,5" fill-rule="nonzero" /> | 
| </g> | 
| <text id="text" x="50" y="50" /> | 
| </svg> | 
|  |