| OLD | NEW |
| 1 This test verifies the position and size of the highlight rectangles overlayed o
n an SVG root element when the page is zoomed. | 1 This test verifies the position and size of the highlight rectangles overlayed o
n an SVG root element when the page is zoomed. |
| 2 | 2 |
| 3 svg-root: { | 3 svg-root{ |
| 4 "paths": [ | 4 "paths": [ |
| 5 { | 5 { |
| 6 "path": ["M", 156, 168, "L", 276, 168, "L", 276, 408, "L", 156, 408, "Z"], | 6 "path": [ |
| 7 "M", |
| 8 156, |
| 9 168, |
| 10 "L", |
| 11 276, |
| 12 168, |
| 13 "L", |
| 14 276, |
| 15 408, |
| 16 "L", |
| 17 156, |
| 18 408, |
| 19 "Z" |
| 20 ], |
| 7 "fillColor": "rgba(255, 0, 0, 0)", | 21 "fillColor": "rgba(255, 0, 0, 0)", |
| 8 "outlineColor": "rgba(128, 0, 0, 0)" | 22 "outlineColor": "rgba(128, 0, 0, 0)" |
| 9 }, | 23 }, |
| 10 { | 24 { |
| 11 "path": ["M", 96, 108, "L", 336, 108, "L", 336, 468, "L", 96, 468, "Z"], | 25 "path": [ |
| 26 "M", |
| 27 96, |
| 28 108, |
| 29 "L", |
| 30 336, |
| 31 108, |
| 32 "L", |
| 33 336, |
| 34 468, |
| 35 "L", |
| 36 96, |
| 37 468, |
| 38 "Z" |
| 39 ], |
| 12 "fillColor": "rgba(0, 255, 0, 0)" | 40 "fillColor": "rgba(0, 255, 0, 0)" |
| 13 }, | 41 }, |
| 14 { | 42 { |
| 15 "path": ["M", 48, 60, "L", 384, 60, "L", 384, 516, "L", 48, 516, "Z"], | 43 "path": [ |
| 44 "M", |
| 45 48, |
| 46 60, |
| 47 "L", |
| 48 384, |
| 49 60, |
| 50 "L", |
| 51 384, |
| 52 516, |
| 53 "L", |
| 54 48, |
| 55 516, |
| 56 "Z" |
| 57 ], |
| 16 "fillColor": "rgba(0, 0, 255, 0)" | 58 "fillColor": "rgba(0, 0, 255, 0)" |
| 17 }, | 59 }, |
| 18 { | 60 { |
| 19 "path": ["M", 12, 24, "L", 420, 24, "L", 420, 552, "L", 12, 552, "Z"], | 61 "path": [ |
| 62 "M", |
| 63 12, |
| 64 24, |
| 65 "L", |
| 66 420, |
| 67 24, |
| 68 "L", |
| 69 420, |
| 70 552, |
| 71 "L", |
| 72 12, |
| 73 552, |
| 74 "Z" |
| 75 ], |
| 20 "fillColor": "rgba(255, 255, 255, 0)" | 76 "fillColor": "rgba(255, 255, 255, 0)" |
| 21 } | 77 } |
| 22 ], | 78 ], |
| 23 "showRulers": true, | 79 "showRulers": true, |
| 24 "showExtensionLines": true, | 80 "showExtensionLines": true, |
| 25 "elementInfo": { | 81 "elementInfo": { |
| 26 "tagName": "svg", | 82 "tagName": "svg", |
| 27 "idValue": "svg-root", | 83 "idValue": "svg-root", |
| 28 "nodeWidth": "280", | 84 "nodeWidth": "280", |
| 29 "nodeHeight": "380" | 85 "nodeHeight": "380" |
| 30 } | 86 } |
| 31 } | 87 } |
| 32 | 88 |
| 33 | |
| OLD | NEW |