Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: LayoutTests/inspector/elements/highlight-svg-root-expected.txt

Issue 662603002: [DevTools] Adjust svg elements highlight to the root FrameView origin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Testing Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This test verifies the position and size of the highlight rectangles overlayed o n an SVG root element. 1 This test verifies the position and size of the highlight rectangles overlayed o n an SVG root element.
2 2
3 margin rect is 160 x 160 at (0, 0) 3 svg-root: {
4 border rect is 150 x 150 at (5, 5) 4 "paths": [
5 padding rect is 130 x 130 at (15, 15) 5 {
6 content rect is 100 x 100 at (30, 30) 6 "path": ["M", 30, 30, "L", 130, 30, "L", 130, 130, "L", 30, 130, "Z"],
7 "fillColor": "rgba(0, 0, 0, 0)"
8 },
9 {
10 "path": ["M", 15, 15, "L", 145, 15, "L", 145, 145, "L", 15, 145, "Z"],
11 "fillColor": "rgba(0, 0, 0, 0)"
12 },
13 {
14 "path": ["M", 5, 5, "L", 155, 5, "L", 155, 155, "L", 5, 155, "Z"],
15 "fillColor": "rgba(0, 0, 0, 0)"
16 },
17 {
18 "path": ["M", 0, 0, "L", 160, 0, "L", 160, 160, "L", 0, 160, "Z"],
19 "fillColor": "rgba(0, 0, 0, 0)"
20 }
21 ],
22 "showRulers": true,
23 "showExtensionLines": true
24 }
7 25
26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698