Beging implementing reftests

This commit is contained in:
Niklas von Hertzen
2017-08-09 00:50:31 +08:00
parent 93f08c7547
commit 58d1bef3b6
163 changed files with 15221 additions and 14371 deletions

141
tests/reftests/acid2.html Normal file
View File

@ -0,0 +1,141 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>The Second Acid Test</title>
<style type="text/css">
/* section numbers refer to CSS2.1 */
/* page setup */
html { font: 12px sans-serif; margin: 0; padding: 0; overflow: hidden; /* hides scrollbars on viewport, see 11.1.1:3 */ background: white; color: red; }
body { margin: 0; padding: 0; }
/* introduction message */
.intro { font: 2em sans-serif; margin: 3.5em 2em; padding: 0.5em; border: solid thin; background: white; color: black; position: relative; z-index: 2; /* should cover the black and red bars that are fixed-positioned */ }
.intro * { font: inherit; margin: 0; padding: 0; }
.intro h1 { font-size: 1em; font-weight: bolder; margin: 0; padding: 0; }
.intro :link { color: blue; }
.intro :visited { color: purple; }
/* picture setup */
#top { margin: 100em 3em 0; padding: 2em 0 0 .5em; text-align: left; font: 2em/24px sans-serif; color: navy; white-space: pre; } /* "Hello World!" text */
.picture { position: relative; border: 1em solid transparent; margin: 0 0 100em 3em; } /* containing block for face */
.picture { background: red; } /* overriden by preferred stylesheet below */
/* top line of face (scalp): fixed positioning and min/max height/width */
.picture p { position: fixed; margin: 0; padding: 0; border: 0; top: 9em; left: 11em; width: 140%; max-width: 4em; height: 8px; min-height: 1em; max-height: 2mm; /* min-height overrides max-height, see 10.7 */ background: black; border-bottom: 0.5em yellow solid; }
/* bits that shouldn't be part of the top line (and shouldn't be visible at all): HTML parsing, "+" combinator, stacking order */
.picture p.bad { border-bottom: red solid; /* shouldn't matter, because the "p + table + p" rule below should match it too, thus hiding it */ }
.picture p + p { background: maroon; z-index: 1; } /* shouldn't match anything */
.picture p + table + p { margin-top: 3em; /* should end up under the absolutely positioned table below, and thus not be visible */ }
/* second line of face: attribute selectors, float positioning */
[class~=one].first.one { position: absolute; top: 0; margin: 36px 0 0 60px; padding: 0; border: black 2em; border-style: none solid; /* shrink wraps around float */ }
[class~=one][class~=first] [class=second\ two][class="second two"] { float: right; width: 48px; height: 12px; background: yellow; margin: 0; padding: 0; } /* only content of abs pos block */
/* third line of face: width and overflow */
.forehead { margin: 4em; width: 8em; border-left: solid black 1em; border-right: solid black 1em; background: red url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAADElEQVR42mP4%2F58BAAT%2FAf9jgNErAAAAAElFTkSuQmCC); /* that's a 1x1 yellow pixel PNG */ }
.forehead * { width: 12em; line-height: 1em; }
/* class selectors headache */
.two.error.two { background: maroon; } /* shouldn't match */
.forehead.error.forehead { background: red; } /* shouldn't match */
[class=second two] { background: red; } /* this should be ignored (invalid selector -- grammar says it only accepts IDENTs or STRINGs) */
/* fourth and fifth lines of face, with eyes: paint order test (see appendix E) and fixed backgrounds */
/* the two images are identical: 2-by-2 squares with the top left
and bottom right pixels set to yellow and the other two set to
transparent. Since they are offset by one pixel from each other,
the second one paints exactly over the transparent parts of the
first one, thus creating a solid yellow block. */
.eyes { position: absolute; top: 5em; left: 3em; margin: 0; padding: 0; background: red; }
#eyes-a { height: 0; line-height: 2em; text-align: right; } /* contents should paint top-most because they're inline */
#eyes-a object { display: inline; vertical-align: bottom; }
#eyes-a object[type] { width: 7.5em; height: 2.5em; } /* should have no effect since that object should fallback to being inline (height/width don't apply to inlines) */
#eyes-a object object object { border-right: solid 1em black; padding: 0 12px 0 11px; background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAABnRSTlMAAAAAAABupgeRAAAABmJLR0QA%2FwD%2FAP%2BgvaeTAAAAEUlEQVR42mP4%2F58BCv7%2FZwAAHfAD%2FabwPj4AAAAASUVORK5CYII%3D) fixed 1px 0; }
#eyes-b { float: left; width: 10em; height: 2em; background: fixed url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAABnRSTlMAAAAAAABupgeRAAAABmJLR0QA%2FwD%2FAP%2BgvaeTAAAAEUlEQVR42mP4%2F58BCv7%2FZwAAHfAD%2FabwPj4AAAAASUVORK5CYII%3D); border-left: solid 1em black; border-right: solid 1em red; } /* should paint in the middle layer because it is a float */
#eyes-c { display: block; background: red; border-left: 2em solid yellow; width: 10em; height: 2em; } /* should paint bottom most because it is a block */
/* lines six to nine, with nose: auto margins */
.nose { float: left; margin: -2em 2em -1em; border: solid 1em black; border-top: 0; min-height: 80%; height: 60%; max-height: 3em; /* percentages become auto (see 10.5 and 10.7) and intrinsic height is more than 3em, so 3em wins */ padding: 0; width: 12em; }
.nose > div { padding: 1em 1em 3em; height: 0; background: yellow; }
.nose div div { width: 2em; height: 2em; background: red; margin: auto; }
.nose :hover div { border-color: blue; }
.nose div:hover :before { border-bottom-color: inherit; }
.nose div:hover :after { border-top-color: inherit; }
.nose div div:before { display: block; border-style: none solid solid; border-color: red yellow black yellow; border-width: 1em; content: ''; height: 0; }
.nose div :after { display: block; border-style: solid solid none; border-color: black yellow red yellow; border-width: 1em; content: ''; height: 0; }
/* between lines nine and ten: margin collapsing with 'float' and 'clear' */
.empty { margin: 6.25em; height: 10%; /* computes to auto which makes it empty per 8.3.1:7 (own margins) */ }
.empty div { margin: 0 2em -6em 4em; }
.smile { margin: 5em 3em; clear: both; /* clearance is negative (see 8.3.1 and 9.5.1) */ }
/* line ten and eleven: containing block for abs pos */
.smile div { margin-top: 0.25em; background: black; width: 12em; height: 2em; position: relative; bottom: -1em; }
.smile div div { position: absolute; top: 0; right: 1em; width: auto; height: 0; margin: 0; border: yellow solid 1em; }
/* smile (over lines ten and eleven): backgrounds behind borders, inheritance of 'float', nested floats, negative heights */
.smile div div span { display: inline; margin: -1em 0 0 0; border: solid 1em transparent; border-style: none solid; float: right; background: black; height: 1em; }
.smile div div span em { float: inherit; border-top: solid yellow 1em; border-bottom: solid black 1em; } /* zero-height block; width comes from (zero-height) child. */
.smile div div span em strong { width: 6em; display: block; margin-bottom: -1em; /* should have no effect, since parent has top&bottom borders, so this margin doesn't collapse */ }
/* line twelve: line-height */
.chin { margin: -4em 4em 0; width: 8em; line-height: 1em; border-left: solid 1em black; border-right: solid 1em black; background: yellow url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAFSDNYfAAAAaklEQVR42u3XQQrAIAwAQeP%2F%2F6wf8CJBJTK9lnQ7FpHGaOurt1I34nfH9pMMZAZ8BwMGEvvh%2BBsJCAgICLwIOA8EBAQEBAQEBAQEBK79H5RfIQAAAAAAAAAAAAAAAAAAAAAAAAAAAID%2FABMSqAfj%2FsLmvAAAAABJRU5ErkJggg%3D%3D) /* 64x64 red square */ no-repeat fixed /* shouldn't be visible unless the smiley is moved to the top left of the viewport */; }
.chin div { display: inline; font: 2px/4px serif; }
/* line thirteen: cascade and selector tests */
.parser-container div { color: maroon; border: solid; color: orange; } /* setup */
div.parser-container * { border-color: black; /* overrides (implied) border-color on previous line */ } /* setup */
* div.parser { border-width: 0 2em; /* overrides (implied) declarations on earlier line */ } /* setup */
/* line thirteen continued: parser tests */
.parser { /* comment parsing test -- comment ends before the end of this line, the backslash should have no effect: \*/ }
.parser { margin: 0 5em 1em; padding: 0 1em; width: 2em; height: 1em; error: \}; background: yellow; } /* setup with parsing test */
* html .parser { background: gray; }
\.parser { padding: 2em; }
.parser { m\argin: 2em; };
.parser { height: 3em; }
.parser { width: 200; }
.parser { border: 5em solid red ! error; }
.parser { background: red pink; }
/* line fourteen (last line of face): table */
ul { display: table; padding: 0; margin: -1em 7em 0; background: red; }
ul li { padding: 0; margin: 0; }
ul li.first-part { display: table-cell; height: 1em; width: 1em; background: black; }
ul li.second-part { display: table; height: 1em; width: 1em; background: black; } /* anonymous table cell wraps around this */
ul li.third-part { display: table-cell; height: 0.5em; /* gets stretched to fit row */ width: 1em; background: black; }
ul li.fourth-part { list-style: none; height: 1em; width: 1em; background: black; } /* anonymous table cell wraps around this */
/* bits that shouldn't appear: inline alignment in cells */
.image-height-test { height: 10px; overflow: hidden; font: 20em serif; } /* only the area between the top of the line box and the top of the image should be visible */
table { margin: 0; border-spacing: 0; }
td { padding: 0; }
</style>
<link rel="appendix stylesheet" href="data:text/css,.picture%20%7B%20background%3A%20none%3B%20%7D"> <!-- this stylesheet should be applied by default -->
<script type="text/javascript" src="../test.js"></script>
</head>
<body>
<div style="margin: 70px;"></div>
<div class="picture">
<p><table><tr><td></table><p class="bad"> <!-- <table> closes <p> per the HTML4 DTD -->
<blockquote class="first one"><address class="second two"></address></blockquote>
<div class="forehead"><div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div></div>
<div class="eyes"><div id="eyes-a"><object data="data:application/x-unknown,ERROR"><object data="http://www.damowmow.com/404/" type="text/html"><object data="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAAAYCAYAAAFy7sgCAAAGsUlEQVRo3u2ZbWwcZxHHf3s%2B7LNbO3ZjXBtowprGODRX0qpNQCjmJKuVKhMl1P2AkCwhFOIKkCBSm9IXavGFKAixIAECwkmWo5MrhRI3Ub40IEwQgp6aIDg3Cd6eEqyIHEteah%2B1E69vhw%2BZtTaX8704ZzkKjHS6271nZ56ZZ%2BY%2F%2F%2BdZKF%2FCwYshx3EkkggLsD1v4FQkEZZYLCbAKyG9%2Ba9EIsG6hnUAf8x74K3aUC3j4%2BM54HcsR2oAIomwZOezkv%2FnSHpYNh%2BNCmAE7xv94zvFdd1bHsjMZmQkPSxAJP%2B%2FfuBLwK54PC7JZFKAVJmzXLBt2w%2FMvcDLwIb8QS8CeJ4nkURYIomw7J%2FYJ8BvSiiXptGGxWds2%2Fa9%2Bnaxh%2BYAD%2Bgt04NDgABTpQY2cvvSFLzw86gWeBVwC8SzlOSv2YeBPfmDBoBHgKmR9LBEEmHZfDTqGykqfkUE0nA78BzQGfSgUeP3wNeTXwXg7MwZDhw4UHL6ra2ti79%2FOvljgG8AZ4H64Lhm4MvAocxsRppGG%2FxcXihlwLIs6R%2FfKV2HO%2F26uA94pdDYUKUZUU7W1RQYXA98Gnhaf5%2FXWX0HeAHYoQonqa4sZSOsSWMCWeC9Yko%2BCQwBe4E6oNc0Tc91XTl1%2BaTsn9gnI%2Blhyc5nZWxsrBIkKSbl2tiic3tW53YDEwOKaoFBrcOfqKee53lG9xsPMjV784r%2F4lO%2FpPvyJ9iyZcuvFSaXK5XYeAZ4CDgGvB3MS4B54LQuWYPeuy4iRFsevsXqpuYoqVQKIH2bK1CuDQNo11o4XUzh%2FcDWYIe1LEtyuZx4niee54njOGKapgfsqlL%2Bl2OjEXg8nxrc1dJ0h3hbtL%2BGCtz7KPBF4CuBe9uB15VafE8hr9qylI3HgG8C2%2FK7VyHZoJj7MrBRm30qFotJMpkU27YlHo%2F7Ha5a%2BV%2FKRkSJ4KuKRLVLKapTjB1SzAVIjY2NSXY%2BKyPpYdk%2FsU9OXT4pruv6BdZbBQfKsVGnvWlIe1VB6VQO8JxC1vZYLCbZ%2BaxsPhpdZDyRRFhG0sPiOE6ldKBg2lRg4xF1YCDIIIKN7DGgD3gH%2BBXwejKZfPrs2tPs%2FvPN2bKuYR1nd7xLKBSSJeqoXKnERjPwNWAG%2BLn2rZuM%2B4Tpml6vaWlp4eLcxVusZq5lCgVgOVKJjRqdX86ffL4D5wIoZACnTpw4wRMdT96i%2FImOJxERAs4uVyqxUacF%2FPdiCj%2BjdRBRGFtwXVdG0sPSdbhTmkYbpH98p2RmM2JZlig1vl0GWo4NQ%2Fn%2Bs5pKRXfwjweaxy7TND3HcRZbfC6X8xVPVQlGy7WxVWlO5XRXFXm6EZmrQuSXYyPE3SiVoEhE6Wyr0u2rumO6zv%2B21AFdQAswC1wCMuUCXCmyWQus103Qg8qlDO0lxwOb%2Fl4FiK3AB3VS%2FuKKLtK%2FgbeAnwG%2FvUODuRw%2FFrR0H1UC75fwu8oJ%2FhFsW5VIG%2FBUgEIN6Y65O4AHu4Ap0zQ9y7LEcZyb9lRBUHQcRyzL8unZVBW5bFWAvAp%2BhDQ2g4F47dUYtlU6obXA54DnVdFLekjUGGifh4AFy7LEdV3xj3X9I66m0QZpGm2QrsOd0j%2B%2BU0bSw5KZzYjrun6HWlAd961i4FfCj0aN1Usau%2Bc1lmuXPFwvAEumUut7tQQvAb%2FXb%2FT0bCAej9cODg7yt%2Bm%2F8q2%2F7OUHZ76PnZ1k2p0mJzlykmPancbOTnL0whHs7CQfb%2B5mx2d3sH79%2BtCRI0c6FeaOr9ICrIQfLvA%2B8BGNXxi4R6HrisJVUWrxAVW2oMFf0Aczim8o3kV6enowDIPjF9%2Fk%2BMU3S3rrjzMMg56eHr%2BxP7qKFbASfojG6kpeDGs1tiW53RxwWT%2Bin5q8w4xpQK5evQpAR30H7ZH2khNvj7TTUd8BgD4rqmu1ZKX8qNeY%2BfHz4zlXDgT5E8tpCTUq7XSBC4Euv8227TV9fX1E73%2BYtvo27BmbS9cvFVTY3bSRFza9yOcf6Gfmygy7d%2B%2Fm%2FPnzF4DvrsBLhnJlJfwIKXxv1PheAE4qK6p4H9AGbNKTuhngBPBPXYRe4IemaT5kWZbR19fHNbmGnZ1k4r3U4glDR30Hm5qjbGjsImJEOHbsGHv27JFz5869o0eFq01Jq%2BmHAXwI6FFKagMTgHM7GzFDS%2BoeLSMv7zjzC9x4Y7gxFovVDAwMEI1GaWlpWSzRVCrFwYMH%2FXfxZ4AfAa8B%2F7lDaGg1%2FQgp43lfK0yqtRMuJa3ceKe5DfgYsCYAZ2ngD8CfAkzqTpW7xY%2F%2FSznyX%2FVeUb2kVmX4AAAAAElFTkSuQmCC">ERROR</object></object></object></div><div id="eyes-b"></div><div id="eyes-c"></div></div> <!-- that's a PNG with 8bit alpha containing two eyes -->
<div class="nose"><div><div></div></div></div>
<div class="empty"><div></div></div>
<div class="smile"><div><div><span><em><strong></strong></em></span></div></div></div>
<div class="chin"><div>&nbsp;</div></div>
<div class="parser-container"><div class="parser"><!-- ->ERROR<!- --></div></div> <!-- two dashes is what delimits a comment, so the text "->ERROR<!-" earlier on this line is actually part of a comment -->
<ul>
<li class="first-part"></li>
<li class="second-part"></li>
<li class="third-part"></li>
<li class="fourth-part"></li>
</ul>
<div class="image-height-test"><table><tr><td><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAFSDNYfAAAAaklEQVR42u3XQQrAIAwAQeP%2F%2F6wf8CJBJTK9lnQ7FpHGaOurt1I34nfH9pMMZAZ8BwMGEvvh%2BBsJCAgICLwIOA8EBAQEBAQEBAQEBK79H5RfIQAAAAAAAAAAAAAAAAAAAAAAAAAAAID%2FABMSqAfj%2FsLmvAAAAABJRU5ErkJggg%3D%3D" alt=""></td></tr></table></div>
</div>
</body>
</html>

145
tests/reftests/acid2.txt Normal file
View File

@ -0,0 +1,145 @@
Window: [800, 1496]
Rectangle: [0, 0, 800, 1496] rgb(255,255,255)
Opacity: 1
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 96, y: 130) > Vector(x: 216, y: 130) > Vector(x: 216, y: 142) > Vector(x: 96, y: 142))
Fill: rgb(255,0,0)
Repeat: Image ("/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAADElEQVR42mP4%2F58BAAT%2FAf9jgNErAAAAAElF") [108, 130] Size (1, 1) Path (Vector(x: 96, y: 130) > Vector(x: 216, y: 130) > Vector(x: 216, y: 142) > Vector(x: 96, y: 142))
Shape: rgb(0,0,0) Path (Vector(x: 96, y: 130) > Vector(x: 216, y: 130) > Vector(x: 204, y: 130) > Vector(x: 108, y: 130))
Shape: rgb(0,0,0) Path (Vector(x: 216, y: 130) > Vector(x: 216, y: 142) > Vector(x: 204, y: 142) > Vector(x: 204, y: 130))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 96, y: 238) > Vector(x: 216, y: 238) > Vector(x: 216, y: 250) > Vector(x: 96, y: 250))
Fill: rgb(255,255,0)
Repeat: Image ("/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAFSDNYfAAAAaklEQVR42u3XQQrAIAwAQeP%2F%2F6wf8CJBJTK9") [108, 238] Size (64, 64) Path (Vector(x: 108, y: 238) > Vector(x: 172, y: 238) > Vector(x: 172, y: 302) > Vector(x: 108, y: 302))
Shape: rgb(0,0,0) Path (Vector(x: 96, y: 238) > Vector(x: 216, y: 238) > Vector(x: 204, y: 238) > Vector(x: 108, y: 238))
Shape: rgb(0,0,0) Path (Vector(x: 216, y: 238) > Vector(x: 216, y: 250) > Vector(x: 204, y: 250) > Vector(x: 204, y: 238))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 108, y: 250) > Vector(x: 204, y: 250) > Vector(x: 204, y: 262) > Vector(x: 108, y: 262))
Fill: rgb(255,255,0)
Shape: rgb(0,0,0) Path (Vector(x: 108, y: 250) > Vector(x: 204, y: 250) > Vector(x: 180, y: 250) > Vector(x: 132, y: 250))
Shape: rgb(0,0,0) Path (Vector(x: 204, y: 250) > Vector(x: 204, y: 262) > Vector(x: 180, y: 262) > Vector(x: 180, y: 250))
Shape: rgb(0,0,0) Path (Vector(x: 204, y: 262) > Vector(x: 108, y: 262) > Vector(x: 132, y: 262) > Vector(x: 180, y: 262))
Shape: rgb(0,0,0) Path (Vector(x: 108, y: 262) > Vector(x: 108, y: 250) > Vector(x: 132, y: 250) > Vector(x: 132, y: 262))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 132, y: 262) > Vector(x: 180, y: 262) > Vector(x: 180, y: 274) > Vector(x: 132, y: 274))
Fill: rgb(255,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 132, y: 262) > Vector(x: 144, y: 262) > Vector(x: 144, y: 274) > Vector(x: 132, y: 274))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 144, y: 262) > Vector(x: 156, y: 262) > Vector(x: 156, y: 274) > Vector(x: 144, y: 274))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 156, y: 262) > Vector(x: 168, y: 262) > Vector(x: 168, y: 274) > Vector(x: 156, y: 274))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 168, y: 262) > Vector(x: 180, y: 262) > Vector(x: 180, y: 274) > Vector(x: 168, y: 274))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Shape: rgb(0,0,0) Path (Vector(x: 72, y: 166) > Vector(x: 240, y: 166) > Vector(x: 228, y: 166) > Vector(x: 84, y: 166))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 166) > Vector(x: 240, y: 214) > Vector(x: 228, y: 202) > Vector(x: 228, y: 166))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 214) > Vector(x: 72, y: 214) > Vector(x: 84, y: 202) > Vector(x: 228, y: 202))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 84, y: 166) > Vector(x: 228, y: 166) > Vector(x: 228, y: 214) > Vector(x: 84, y: 214))
Fill: rgb(255,255,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 144, y: 178) > Vector(x: 168, y: 178) > Vector(x: 168, y: 202) > Vector(x: 144, y: 202))
Fill: rgb(255,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Shape: rgb(255,255,0) Path (Vector(x: 144, y: 178) > Vector(x: 168, y: 178) > Vector(x: 156, y: 178) > Vector(x: 156, y: 178))
Shape: rgb(0,0,0) Path (Vector(x: 168, y: 178) > Vector(x: 168, y: 190) > Vector(x: 156, y: 178) > Vector(x: 156, y: 178))
Shape: rgb(255,255,0) Path (Vector(x: 168, y: 190) > Vector(x: 144, y: 190) > Vector(x: 156, y: 178) > Vector(x: 156, y: 178))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Shape: rgb(0,0,0) Path (Vector(x: 144, y: 190) > Vector(x: 168, y: 190) > Vector(x: 156, y: 202) > Vector(x: 156, y: 202))
Shape: rgb(255,255,0) Path (Vector(x: 168, y: 190) > Vector(x: 168, y: 202) > Vector(x: 156, y: 202) > Vector(x: 156, y: 202))
Shape: rgb(255,255,0) Path (Vector(x: 168, y: 202) > Vector(x: 144, y: 202) > Vector(x: 156, y: 202) > Vector(x: 156, y: 202))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496)) | Path (Vector(x: 48, y: 274) > Vector(x: 788, y: 274) > Vector(x: 788, y: 284) > Vector(x: 48, y: 284))
Clip: Path (Vector(x: 48, y: 429) > Vector(x: 112, y: 429) > Vector(x: 112, y: 493) > Vector(x: 48, y: 493))
Draw image: Image ("/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAFSDNYfAAAAaklEQVR42u3XQQrAIAwAQeP%2F%2F6wf8CJBJTK9") (source: [0, 0, 64, 64]) (destination: [0, 0, 64, 64])
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 132, y: 108) > Vector(x: 180, y: 108) > Vector(x: 180, y: 126) > Vector(x: 132, y: 126))
Fill: rgb(0,0,0)
Shape: rgb(255,255,0) Path (Vector(x: 132, y: 108) > Vector(x: 180, y: 108) > Vector(x: 180, y: 108) > Vector(x: 132, y: 108))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 132, y: 144) > Vector(x: 180, y: 144) > Vector(x: 180, y: 157) > Vector(x: 132, y: 157))
Fill: rgb(0,0,0)
Shape: rgb(255,0,0) Path (Vector(x: 132, y: 144) > Vector(x: 180, y: 144) > Vector(x: 180, y: 144) > Vector(x: 132, y: 144))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Shape: rgb(0,0,0) Path (Vector(x: 108, y: 118) > Vector(x: 204, y: 118) > Vector(x: 180, y: 118) > Vector(x: 132, y: 118))
Shape: rgb(0,0,0) Path (Vector(x: 204, y: 118) > Vector(x: 204, y: 130) > Vector(x: 180, y: 130) > Vector(x: 180, y: 118))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 132, y: 118) > Vector(x: 180, y: 118) > Vector(x: 180, y: 130) > Vector(x: 132, y: 130))
Fill: rgb(255,255,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 228, y: 166) > Vector(x: 84, y: 166))
Fill: rgb(255,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 228, y: 166) > Vector(x: 84, y: 166))
Fill: rgb(255,0,0)
Shape: rgb(255,255,0) Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 228, y: 142) > Vector(x: 108, y: 142))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 228, y: 166) > Vector(x: 84, y: 166))
Repeat: Image ("/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAABnRSTlMAAAAAAABupgeRAAAABmJLR0QA%2FwD%2F") [96, 142] Size (2, 2) Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 228, y: 166) > Vector(x: 84, y: 166))
Shape: rgb(255,0,0) Path (Vector(x: 84, y: 142) > Vector(x: 228, y: 142) > Vector(x: 216, y: 142) > Vector(x: 96, y: 142))
Shape: rgb(0,0,0) Path (Vector(x: 228, y: 142) > Vector(x: 228, y: 166) > Vector(x: 216, y: 166) > Vector(x: 216, y: 142))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 84, y: 214) > Vector(x: 228, y: 214) > Vector(x: 228, y: 238) > Vector(x: 84, y: 238))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 96, y: 214) > Vector(x: 216, y: 214) > Vector(x: 216, y: 238) > Vector(x: 96, y: 238))
Fill: rgb(0,0,0)
Shape: rgb(255,255,0) Path (Vector(x: 96, y: 214) > Vector(x: 216, y: 214) > Vector(x: 204, y: 226) > Vector(x: 108, y: 226))
Shape: rgb(255,255,0) Path (Vector(x: 216, y: 214) > Vector(x: 216, y: 238) > Vector(x: 204, y: 226) > Vector(x: 204, y: 226))
Shape: rgb(255,255,0) Path (Vector(x: 216, y: 238) > Vector(x: 96, y: 238) > Vector(x: 108, y: 226) > Vector(x: 204, y: 226))
Shape: rgb(255,255,0) Path (Vector(x: 96, y: 238) > Vector(x: 96, y: 214) > Vector(x: 108, y: 226) > Vector(x: 108, y: 226))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 108, y: 214) > Vector(x: 204, y: 214) > Vector(x: 204, y: 226) > Vector(x: 108, y: 226))
Fill: rgb(0,0,0)
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Shape: rgb(255,255,0) Path (Vector(x: 120, y: 214) > Vector(x: 192, y: 214) > Vector(x: 192, y: 226) > Vector(x: 120, y: 226))
Shape: rgb(0,0,0) Path (Vector(x: 192, y: 214) > Vector(x: 192, y: 238) > Vector(x: 192, y: 226) > Vector(x: 192, y: 226))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))
Clip: Path (Vector(x: 0, y: 0) > Vector(x: 800, y: 0) > Vector(x: 800, y: 1496) > Vector(x: 0, y: 1496))

View File

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:20px solid transparent;
border-width: 10px 20px 30px 40px;
background: green;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
</style>
</head>
<body>
<div class="medium">
<div style="background:url(../../assets/image.jpg);background-clip: border-box;"></div>
<div style="background:url(../../assets/image.jpg);background-clip: padding-box;"></div>
<div style="background:url(../../assets/image.jpg);background-clip: content-box;"></div>
<div style="background:url(../../assets/image.jpg);"></div>
</div>
<div class="medium">
<div style="background:url(../../assets/image.jpg);background-clip: border-box; background-repeat: no-repeat;"></div>
<div style="background:url(../../assets/image.jpg);background-clip: padding-box; background-repeat: repeat-y;"></div>
<div style="background:url(../../assets/image.jpg);background-clip: content-box; background-repeat: repeat-x;"></div>
<div style="background:url(../../assets/image.jpg); background-repeat: no-repeat;"></div>
</div>
<div class="medium">
<div style="background-clip: border-box;"></div>
<div style="background-clip: padding-box;"></div>
<div style="background-clip: content-box;"></div>
<div style=""></div>
</div>
</body>
</html>

View File

@ -0,0 +1,29 @@
Window: [800, 1568]
Rectangle: [0, 0, 800, 1568] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 1048) > Vector(x: 8, y: 1048))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 278, y: 18) > Vector(x: 278, y: 258) > Vector(x: 18, y: 258))
Repeat: Image ("/tests/assets/image.jpg") [58, 28] Size (75, 75) Path (Vector(x: 18, y: 18) > Vector(x: 278, y: 18) > Vector(x: 278, y: 258) > Vector(x: 18, y: 258))
Clip: Path (Vector(x: 338, y: 28) > Vector(x: 538, y: 28) > Vector(x: 538, y: 228) > Vector(x: 338, y: 228))
Repeat: Image ("/tests/assets/image.jpg") [338, 28] Size (75, 75) Path (Vector(x: 298, y: 18) > Vector(x: 558, y: 18) > Vector(x: 558, y: 258) > Vector(x: 298, y: 258))
Clip: Path (Vector(x: 58, y: 288) > Vector(x: 258, y: 288) > Vector(x: 258, y: 488) > Vector(x: 58, y: 488))
Repeat: Image ("/tests/assets/image.jpg") [58, 288] Size (75, 75) Path (Vector(x: 18, y: 278) > Vector(x: 278, y: 278) > Vector(x: 278, y: 518) > Vector(x: 18, y: 518))
Clip: Path (Vector(x: 298, y: 278) > Vector(x: 558, y: 278) > Vector(x: 558, y: 518) > Vector(x: 298, y: 518))
Repeat: Image ("/tests/assets/image.jpg") [338, 288] Size (75, 75) Path (Vector(x: 298, y: 278) > Vector(x: 558, y: 278) > Vector(x: 558, y: 518) > Vector(x: 298, y: 518))
Clip: Path (Vector(x: 18, y: 538) > Vector(x: 278, y: 538) > Vector(x: 278, y: 778) > Vector(x: 18, y: 778))
Repeat: Image ("/tests/assets/image.jpg") [58, 548] Size (75, 75) Path (Vector(x: 58, y: 548) > Vector(x: 133, y: 548) > Vector(x: 133, y: 623) > Vector(x: 58, y: 623))
Clip: Path (Vector(x: 338, y: 548) > Vector(x: 538, y: 548) > Vector(x: 538, y: 748) > Vector(x: 338, y: 748))
Repeat: Image ("/tests/assets/image.jpg") [338, 548] Size (75, 75) Path (Vector(x: 338, y: 538) > Vector(x: 413, y: 538) > Vector(x: 413, y: 778) > Vector(x: 338, y: 778))
Clip: Path (Vector(x: 58, y: 808) > Vector(x: 258, y: 808) > Vector(x: 258, y: 1008) > Vector(x: 58, y: 1008))
Repeat: Image ("/tests/assets/image.jpg") [58, 808] Size (75, 75) Path (Vector(x: 18, y: 808) > Vector(x: 278, y: 808) > Vector(x: 278, y: 883) > Vector(x: 18, y: 883))
Clip: Path (Vector(x: 298, y: 798) > Vector(x: 558, y: 798) > Vector(x: 558, y: 1038) > Vector(x: 298, y: 1038))
Repeat: Image ("/tests/assets/image.jpg") [338, 808] Size (75, 75) Path (Vector(x: 338, y: 808) > Vector(x: 413, y: 808) > Vector(x: 413, y: 883) > Vector(x: 338, y: 883))
Clip: Path (Vector(x: 18, y: 1058) > Vector(x: 278, y: 1058) > Vector(x: 278, y: 1298) > Vector(x: 18, y: 1298))
Fill: rgb(0,128,0)
Clip: Path (Vector(x: 338, y: 1068) > Vector(x: 538, y: 1068) > Vector(x: 538, y: 1268) > Vector(x: 338, y: 1268))
Fill: rgb(0,128,0)
Clip: Path (Vector(x: 58, y: 1328) > Vector(x: 258, y: 1328) > Vector(x: 258, y: 1528) > Vector(x: 58, y: 1528))
Fill: rgb(0,128,0)
Clip: Path (Vector(x: 298, y: 1318) > Vector(x: 558, y: 1318) > Vector(x: 558, y: 1558) > Vector(x: 298, y: 1558))
Fill: rgb(0,128,0)

View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
.encoded {
background:url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCABLAEsDAREAAhEBAxEB/8QAHAAAAgMBAQEBAAAAAAAAAAAABQcEBggCAwAJ/8QANxAAAgECBQEHAQUIAwEAAAAAAQIDBBEABQYSITEHExQiQVFhcTKBkbHBCCNCUnLR4fAWYqLx/8QAGwEAAQUBAQAAAAAAAAAAAAAAAQIDBAUGAAf/xAAzEQACAgECAwQHCAMAAAAAAAAAAQIDEQQhEjFBIlFhcRMUgZGhsdEFFSNCUsHh8DKi8f/aAAwDAQACEQMRAD8AxREirbfKlv6rYxDz0R6mmj2eohpqrLKmGVTJTVsEpG65sHF8dBSakpLmn8hq5pxTXRo0DlaCn1dB7eJZfxxD0b/FiyFqVmmQ1Yo/KMaRFBIj5tCTFSG3SsgP/sf3x0t0JTJtLTlJa0FSP31+R/0TCcYG8nM0Q9sLAQJoRzgnECoiFjggB7RC5wsSZHTLaGCQpJBSq68EbQ1sUjst72bdU1dy9x1mlPQJlNQY0p+9Rd67YwDcG/HGBVK12JPOPMF1darbUVt4GgoazdmeW1YNxKaea/8AUoJxVafsTj4P9xm5cVcvJjjhljjlRZDtBPt1xqlzMu3tsNjSulMrziigkVUkUOHK9RcdD8Ys6owcStsnJMsFV2ZUrxVDRqQ0luSL9P8AH5YcdUWhtWtC91T2e1mWRPUQx740BLKt7/X6YhTqcd0S4WKWxQZhiOPA+ccYICAy3Y4UAyXS/uwFXLGFv5kX++KCWHu5m6i3y4SbI7y0k0bZbZHQqTtT2/qw3FRUk1P5/QVJtxa4X8PqNHIanxmndMzg+Z6KEc+6kqfyxG4MXuPiyFJ4qcn3F5o9RGrzPbI5aRz6np7D2GLpSbfiZ9xWMD20Fq5MlgpF72PdNIyGE8OFFvMPjn7/ALsWlE3FIrbYcTH5keaw11MtnVz063xZqWSvccMkZhRwT08m4KRY3BwibSW4uCeTJ+qKA5PnuYURBXuZmVQ/Xbe6n8CMVTWGWXQATOCCLjBAQXbzHphQkyTS5XE1HTXpttTtPfB5bruvxt+LdcUc7e08PY3dcez2luTIsm3GwjhF+OW/xhl3eLHuHwLpo1pn0lkrRh5no2qICkSGRmZJSQAo6khhxhmxS9azFc8P3kLsqiUZeQ3dPafhmrFkU7HUh3Exsyi9269LeuL2Me0ZWUsIM6p7EKjtkzTLXi1XVaWaEvfwSkmqJZdq7Qy9LdSeOeD6WlSRAm8YbNDN2f6ry6lpqXRGq6RqjLXjapgzaiM3i4woPdK6sCpYXs3NuOuJXBjkR3JNbjRy+KvkpF8bEaaV1tYi5/8AuI0k2tx1NLkYQ/aB1XmucdrGeHLNQ5jl+X07ikjiptiITGNrNfaSSWvyTf7gMUt2olGxxjyRe0Uw9GnOOWxXyVuoVLM+rc7kBvYeIC2/BcNeszew+qK1+UGTVmdGRj/yjPV+PGH+2HVqJ94PRV/pQtos+1SPs0WVi/S5kP64S9PpespfAlLUaz9Efj9QtkEmuc/roaajgycB2AaRo5NsY9WJB6DHeraVvCcm/Z9BM9Vq4rMlFL2/Dc0dp7L4dO5eKWl6k7pJtoVpGtyxA6dOgxIqpVawipuvldLMgtRzIjbDJsBYeW32sSlAiNkLtI7Y6nRkMcOWGeKYKqrMsO8Ru91Qkeo3bfKP1wpN8XDEXCtSWWGv2Le1nXk2qJn1VXjNVrHWJJpy3euIRtLcKAFAO0X6k8Di+Jzmk4xiQ5UWRUnYsGvO23thyvs60bUVIq0GcV1O4yykU3ldyNvegeiITck8XFuThOqvhRXxN7vkDSUTvsUUtlzPzdzqecS940zOzkvI7HlmuSxPyeuMfF5e/M1/CkerKFiaZQZIiN19wJ+oGE5T2Ow2QGkhc7u7fn6YWmDhYMnyDLGBanrp43JG8TQhx09CtrYs5aaPSTIEPtKf54L2PHzyXrRmVQZTlJZFQyyctIqlbj0HOHKqvRrfdkbUah3yzyXcWnK6lK4Ps+0h2snqDiXFZITeA/leTSV1ZGii537DZbgAjn64kRhljbkkhqt+zkmo6ekLx0s61ZNJJT1se5GABNn4IN/0BxIlpctSi8MajqOcZLKG32e9immtA6berly+nVqaF3ip4dyxR2UndybliR1J4Fhh6FSj2p7sZna32Y8jM+faKzjU2YNmWZ54tZmFSAZJ54mdiB0A6WUDoBYYoZ6C62XHZYm34MtofaNNceCFbS80B6jskrWRQmb0e8g3D07gLb7zfCPuufSa9zF/elfWD96Kzn2iZ8mjqFmmjd46hoN5tGsjKBu2BjubhlPAsAet8Vl+mlTlt9f7jr+xa1aiNuMLpn+9Clyaan3tt7vbfjzjEbLJWUUxqqxBtdR6e+NJgy/IZmlKiTMdPpO8RiuWsL/aAPUYUlsBvvO8glmi1LHGEURzAhh6gAXGFxW4mT2HbpOhTxSSOGWNrbghBJ+behxOgiLKRobSWo6fJKGE11YYYmO9TI/mP8J2jkkm1uP1xNTSW5F3b2CGp9UxHTGZVCkmnaMokbdTu8vP44alPIBCxkKFHJsStwfS5FsN5AfSSkpMyXEaAFiebLwCfxOCAomrshgGofFzw0UVPVoHlqJgu+NhZJG5IFhwbnnzcemKfVVQVnHJJZ69f748zQaO6cqlFNvG2Onev+chT1MEwqZfDyQdxuOwVDhZAL9CPjpjOvbkzQLxFk8TpIA6kpe7WHpjTYMrnI49KVVHmGX0cdOsnhwLI5Ujc3sB1Nr9elz64dSBkFZ+9To7PaatqwsNNFUhWk3G0YY28xP8PNyfS+OinGRzawa07E4IaySCaVVeOQdOoBHS/vixqIFnMtnb8tatHpxcpjgepjqHlKzOYwU2bSoYA26g9PTBtWcYG4y4XuU4Z9mE+TJl88cMUJ2FlDFzcG9gbDi+GEmFyT5AWSInvFFyFJHHXp/nBE5PHLA0Ek9M7EtNEYw59T8/76YMe46W+5W9dd+cm76IWMDhZbRxuAkg2tuDgggMFuBzyeuIesjmviXTwT2fmWOhklY4Pr5815Cxly+GRwxy+lclQdypMoPA5spKj7iR7YoJVtPHAv8AZfLK9xpI2Jr/ACfwItT2YTToVjCsTx5W639Mah0dxkVbgjZVojV+nqhXyeKOeON9yxzuFHwASeAOTb3OBGqaFemj1Gpn2VVuudD51kdRkcFDPWqIvE1dTG7qLLd1CX5JDDn64kcDwMuxE3sNoNWdnarltd3FZRx37mYVQOxFAsGH2r9eelrYEISiGVkZLI3M/wBRTallp5p9qLGuyNAb2FuTf5OHWskdsATRb1L2Fgf9/XCcHZIrRHxJHsdxHryPyIwMCiPLAwa9gHS4t7m/GOwcQ66natgqaSQeWqjaJSSP4hcG5vYggdQbH3wmUOOLj3jlcuCal3CIqWplqJAaWGNtxJSSdkYH1upVbG/wMZnixtlL2r+PkazhT33+P8jGy5iViYnzWBv841hjwplh3RwX9SXPyS2OQcBNpWpYZWiO096E6X8u61vwxyE9AplEjLPmLBjdQFHwOOMFdRL5BOjdmijJJJAU/wC/gMcgs6pnLIpJuTUAH6XtgndWjwy1Qc1qeP5fzwFzO6EOR28dSDcfPVhW56j93x+eB1CBdXVEtLmmWiJzGDOQbH03DCJbNBXJiU1zUyUGtc+p6dzDBFXzqkacBQJDYDGV1F9kLpxi9k38zbaaqE6ISkt2kf/Z");
}
</style>
</head>
<body>
<div class="medium">
<div class="encoded"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,11 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 8) > Vector(x: 8, y: 8))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Repeat: Image ("/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4") [19, 19] Size (75, 75) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 219, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 219, y: 219) > Vector(x: 219, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 219, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))

View File

@ -0,0 +1,193 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.horizontal {
width: auto !important;
height: auto !important;
}
.medium div{
width:210px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium .horizontal div{
width:200px;
height:100px;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
.linearGradient {
/*background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(255, 0, 0)), to(rgb(0, 0, 255)));*/
background: -webkit-linear-gradient(top left, #f00, #00f, #BADA55, rgba(0, 0, 255,0.5));
background: -moz-linear-gradient(top right, #f00, #00f, #BADA55, rgba(0, 0, 255,0.5));
}
.linearGradient2 {
background: -webkit-gradient(linear, 0% 0, 0% 100%, from(rgb(252, 252, 252)), to(rgb(232, 232, 232)));
}
.linearGradient3 {
/* FF 3.6+ */
background: -moz-linear-gradient(left, #ff0000, #ffff00, #00ff00);
/* Chrome,Safari4+ */
background: -webkit-gradient(linear, left top, right top, color-stop(#ff0000), color-stop(#ffff00), color-stop(#00ff00));
/* Chrome 10+, Safari 5.1+ */
background: -webkit-linear-gradient(left, #ff0000, #ffff00, #00ff00);
/* Opera 11.10+ */
background: -o-linear-gradient(left, #ff0000, #ffff00, #00ff00);
/* IE 10+ */
background: -ms-linear-gradient(left, #ff0000, #ffff00, #00ff00);
/* W3C */
background: linear-gradient(left, #ff0000, #ffff00, #00ff00);
}
.linearGradient4 {
/* FF 3.6+ */
background: -moz-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);
/* Chrome, Safari 4+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%, #cedbe9), color-stop(17%, #aac5de), color-stop(50%, #6199c7), color-stop(51%, #3a84c3), color-stop(59%, #419ad6), color-stop(71%, #4bb8f0), color-stop(84%, #3a8bc2), color-stop(100%, #26558b));
/* Chrome 10+, Safari 5.1+ */
background: -webkit-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);
/* Opera 11.10+ */
background: -o-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);
/* IE10+ */
background: -ms-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);
/* W3C */
background: linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6 59%, #4bb8f0 71%, #3a8bc2 84%, #26558b 100%);
}
.linearGradient5 {
/* FF 3.6+ */
background: -moz-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%);
/* Chrome, Safari 4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f0b7a1), color-stop(50%, #8c3310), color-stop(51%, #752201), color-stop(100%, #bf6e4e));
/* Chrome 10+, Safari 5.1+ */
background: -webkit-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%);
/* Opera 11.10+ */
background: -o-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%);
/* IE 10+ */
background: -ms-linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%);
/* W3C */
background: linear-gradient(top, #f0b7a1 0%, #8c3310 50%, #752201 51%, #bf6e4e 100%);
}
.linearGradient6 {
/* FF 3.6+ */
background: -moz-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6, #26558b 100%);
/* Chrome 10+, Safari 5.1+ */
background: -webkit-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6, #26558b 100%);
/* Opera 11.10+ */
background: -o-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6, #26558b 100%);
/* IE10+ */
background: -ms-linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6, #26558b 100%);
/* W3C */
background: linear-gradient(left, #cedbe9 0%, #aac5de 17%, #6199c7 50%, #3a84c3 51%, #419ad6, #26558b 100%);
}
.linearGradient7 {
background: #cce5f4;
background: -moz-linear-gradient(top, #cce5f4 0%, #00263c 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cce5f4), color-stop(100%, #00263c));
background: -webkit-linear-gradient(top, #cce5f4 0%, #00263c 100%);
background: -o-linear-gradient(top, #cce5f4 0%, #00263c 100%);
background: -ms-linear-gradient(top, #cce5f4 0%, #00263c 100%);
background: linear-gradient(to bottom, #cce5f4 0%, #00263c 100%);
}
.linearGradient8 {
background: linear-gradient(to bottom left, #fff 0%, #00263c 100%);
}
.linearGradient9 {
background: linear-gradient(to bottom left, #0000Ff, rgb(255, 0,0) 50px, green 199px, rgba(0, 0, 0, 0.5) 100.0%);
}
.linearGradient10 {
background: linear-gradient(to left top, #0000Ff, rgb(255, 0,0) 50px, green 199px, rgba(0, 0, 0, 0.5) 100.0%);
}
.linearGradient11 {
background: linear-gradient(to bottom right, #0000Ff, rgb(255, 0,0) 50px, green 199px, rgba(0, 0, 0, 0.5) 100.0%);
}
.linearGradient12 {
background: linear-gradient(to top right, #0000Ff, rgb(255, 0,0) 50px, green 199px, rgba(0, 0, 0, 0.5) 100.0%);
}
.linearGradient13 {
background: linear-gradient(to top left, white 0%, black 100%);
}
.linearGradient14 {
background: linear-gradient(-375.5grad, yellow, blue, red 60%, blue);
}
.linearGradient15 {
background: linear-gradient(-375.5turn, yellow, red 60%, blue);
}
.linearGradient16 {
background: linear-gradient(-375.5rad, yellow, orange, red 60%, blue);
}
.linearGradient17 {
background: linear-gradient(-375.5deg, yellow, red 60%, blue);
width: 800px !important;
}
</style>
</head>
<body>
<div class="medium">
<div class="linearGradient">&nbsp;</div>
<div class="linearGradient2">&nbsp;</div>
<div class="linearGradient3">&nbsp;</div>
<div class="linearGradient4">&nbsp;</div>
<div class="linearGradient5">&nbsp;</div>
<div class="linearGradient6">&nbsp;</div>
<div class="linearGradient7">&nbsp;</div>
<div class="linearGradient8">&nbsp;</div>
<div class="linearGradient9">&nbsp;</div>
<div class="linearGradient10">&nbsp;</div>
<div class="linearGradient11">&nbsp;</div>
<div class="linearGradient12">&nbsp;</div>
<div class="horizontal">
<div class="linearGradient9">&nbsp;</div>
<div class="linearGradient10">&nbsp;</div>
<div class="linearGradient11">&nbsp;</div>
<div class="linearGradient12">&nbsp;</div>
</div>
<div class="linearGradient13">&nbsp;</div>
<div class="linearGradient14">&nbsp;</div>
<div class="linearGradient15">&nbsp;</div>
<div class="linearGradient16">&nbsp;</div>
<div class="linearGradient17">&nbsp;</div>
</div>
</body>
</html>

View File

@ -0,0 +1,132 @@
Window: [820, 1828]
Rectangle: [0, 0, 820, 1828] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 230, y: 18) > Vector(x: 230, y: 220) > Vector(x: 18, y: 220))
Gradient: [18, 18, 212, 202] linear-gradient(x0: 207, x1: 5, y0: 207, y1: -5 rgb(255,0,0) 0, rgb(0,0,255) 0.33, rgb(186,218,85) 0.67, rgba(0,0,255,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 230, y: 18) > Vector(x: 229, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 18) > Vector(x: 230, y: 220) > Vector(x: 229, y: 219) > Vector(x: 229, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 229, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))
Clip: Path (Vector(x: 250, y: 18) > Vector(x: 462, y: 18) > Vector(x: 462, y: 220) > Vector(x: 250, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 18) > Vector(x: 462, y: 18) > Vector(x: 461, y: 19) > Vector(x: 251, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 18) > Vector(x: 462, y: 220) > Vector(x: 461, y: 219) > Vector(x: 461, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 220) > Vector(x: 250, y: 220) > Vector(x: 251, y: 219) > Vector(x: 461, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 220) > Vector(x: 250, y: 18) > Vector(x: 251, y: 19) > Vector(x: 251, y: 219))
Clip: Path (Vector(x: 482, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 220) > Vector(x: 482, y: 220))
Gradient: [482, 18, 212, 202] linear-gradient(x0: 212, x1: 0, y0: 101, y1: 101 rgb(255,0,0) 0, rgb(255,255,0) 0.5, rgb(0,255,0) 1)
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 18) > Vector(x: 694, y: 18) > Vector(x: 693, y: 19) > Vector(x: 483, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 220) > Vector(x: 693, y: 219) > Vector(x: 693, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 220) > Vector(x: 482, y: 220) > Vector(x: 483, y: 219) > Vector(x: 693, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 220) > Vector(x: 482, y: 18) > Vector(x: 483, y: 19) > Vector(x: 483, y: 219))
Clip: Path (Vector(x: 18, y: 240) > Vector(x: 230, y: 240) > Vector(x: 230, y: 442) > Vector(x: 18, y: 442))
Gradient: [18, 240, 212, 202] linear-gradient(x0: 212, x1: 0, y0: 101, y1: 101 rgb(206,219,233) 0, rgb(170,197,222) 0.17, rgb(97,153,199) 0.5, rgb(58,132,195) 0.51, rgb(65,154,214) 0.59, rgb(75,184,240) 0.71, rgb(58,139,194) 0.84, rgb(38,85,139) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 240) > Vector(x: 230, y: 240) > Vector(x: 229, y: 241) > Vector(x: 19, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 240) > Vector(x: 230, y: 442) > Vector(x: 229, y: 441) > Vector(x: 229, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 442) > Vector(x: 18, y: 442) > Vector(x: 19, y: 441) > Vector(x: 229, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 442) > Vector(x: 18, y: 240) > Vector(x: 19, y: 241) > Vector(x: 19, y: 441))
Clip: Path (Vector(x: 250, y: 240) > Vector(x: 462, y: 240) > Vector(x: 462, y: 442) > Vector(x: 250, y: 442))
Gradient: [250, 240, 212, 202] linear-gradient(x0: 106, x1: 106, y0: 202, y1: 0 rgb(240,183,161) 0, rgb(140,51,16) 0.5, rgb(117,34,1) 0.51, rgb(191,110,78) 1)
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 240) > Vector(x: 462, y: 240) > Vector(x: 461, y: 241) > Vector(x: 251, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 240) > Vector(x: 462, y: 442) > Vector(x: 461, y: 441) > Vector(x: 461, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 442) > Vector(x: 250, y: 442) > Vector(x: 251, y: 441) > Vector(x: 461, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 442) > Vector(x: 250, y: 240) > Vector(x: 251, y: 241) > Vector(x: 251, y: 441))
Clip: Path (Vector(x: 482, y: 240) > Vector(x: 694, y: 240) > Vector(x: 694, y: 442) > Vector(x: 482, y: 442))
Gradient: [482, 240, 212, 202] linear-gradient(x0: 212, x1: 0, y0: 101, y1: 101 rgb(206,219,233) 0, rgb(170,197,222) 0.17, rgb(97,153,199) 0.5, rgb(58,132,195) 0.51, rgb(65,154,214) 0.76, rgb(38,85,139) 1)
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 240) > Vector(x: 694, y: 240) > Vector(x: 693, y: 241) > Vector(x: 483, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 240) > Vector(x: 694, y: 442) > Vector(x: 693, y: 441) > Vector(x: 693, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 442) > Vector(x: 482, y: 442) > Vector(x: 483, y: 441) > Vector(x: 693, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 442) > Vector(x: 482, y: 240) > Vector(x: 483, y: 241) > Vector(x: 483, y: 441))
Clip: Path (Vector(x: 18, y: 462) > Vector(x: 230, y: 462) > Vector(x: 230, y: 664) > Vector(x: 18, y: 664))
Gradient: [18, 462, 212, 202] linear-gradient(x0: 106, x1: 106, y0: 202, y1: 0 rgb(204,229,244) 0, rgb(0,38,60) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 462) > Vector(x: 230, y: 462) > Vector(x: 229, y: 463) > Vector(x: 19, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 462) > Vector(x: 230, y: 664) > Vector(x: 229, y: 663) > Vector(x: 229, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 664) > Vector(x: 18, y: 664) > Vector(x: 19, y: 663) > Vector(x: 229, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 664) > Vector(x: 18, y: 462) > Vector(x: 19, y: 463) > Vector(x: 19, y: 663))
Clip: Path (Vector(x: 250, y: 462) > Vector(x: 462, y: 462) > Vector(x: 462, y: 664) > Vector(x: 250, y: 664))
Gradient: [250, 462, 212, 202] linear-gradient(x0: 5, x1: 207, y0: 207, y1: -5 rgb(255,255,255) 0, rgb(0,38,60) 1)
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 462) > Vector(x: 462, y: 462) > Vector(x: 461, y: 463) > Vector(x: 251, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 462) > Vector(x: 462, y: 664) > Vector(x: 461, y: 663) > Vector(x: 461, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 664) > Vector(x: 250, y: 664) > Vector(x: 251, y: 663) > Vector(x: 461, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 664) > Vector(x: 250, y: 462) > Vector(x: 251, y: 463) > Vector(x: 251, y: 663))
Clip: Path (Vector(x: 482, y: 462) > Vector(x: 694, y: 462) > Vector(x: 694, y: 664) > Vector(x: 482, y: 664))
Gradient: [482, 462, 212, 202] linear-gradient(x0: 5, x1: 207, y0: 207, y1: -5 rgb(0,0,255) 0, rgb(255,0,0) 0.17, rgb(0,128,0) 0.66, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 462) > Vector(x: 694, y: 462) > Vector(x: 693, y: 463) > Vector(x: 483, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 462) > Vector(x: 694, y: 664) > Vector(x: 693, y: 663) > Vector(x: 693, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 664) > Vector(x: 482, y: 664) > Vector(x: 483, y: 663) > Vector(x: 693, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 664) > Vector(x: 482, y: 462) > Vector(x: 483, y: 463) > Vector(x: 483, y: 663))
Clip: Path (Vector(x: 18, y: 684) > Vector(x: 230, y: 684) > Vector(x: 230, y: 886) > Vector(x: 18, y: 886))
Gradient: [18, 684, 212, 202] linear-gradient(x0: 5, x1: 207, y0: -5, y1: 207 rgb(0,0,255) 0, rgb(255,0,0) 0.17, rgb(0,128,0) 0.66, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 684) > Vector(x: 230, y: 684) > Vector(x: 229, y: 685) > Vector(x: 19, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 684) > Vector(x: 230, y: 886) > Vector(x: 229, y: 885) > Vector(x: 229, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 886) > Vector(x: 18, y: 886) > Vector(x: 19, y: 885) > Vector(x: 229, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 886) > Vector(x: 18, y: 684) > Vector(x: 19, y: 685) > Vector(x: 19, y: 885))
Clip: Path (Vector(x: 250, y: 684) > Vector(x: 462, y: 684) > Vector(x: 462, y: 886) > Vector(x: 250, y: 886))
Gradient: [250, 684, 212, 202] linear-gradient(x0: 207, x1: 5, y0: 207, y1: -5 rgb(0,0,255) 0, rgb(255,0,0) 0.17, rgb(0,128,0) 0.66, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 684) > Vector(x: 462, y: 684) > Vector(x: 461, y: 685) > Vector(x: 251, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 684) > Vector(x: 462, y: 886) > Vector(x: 461, y: 885) > Vector(x: 461, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 886) > Vector(x: 250, y: 886) > Vector(x: 251, y: 885) > Vector(x: 461, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 886) > Vector(x: 250, y: 684) > Vector(x: 251, y: 685) > Vector(x: 251, y: 885))
Clip: Path (Vector(x: 482, y: 684) > Vector(x: 694, y: 684) > Vector(x: 694, y: 886) > Vector(x: 482, y: 886))
Gradient: [482, 684, 212, 202] linear-gradient(x0: 207, x1: 5, y0: -5, y1: 207 rgb(0,0,255) 0, rgb(255,0,0) 0.17, rgb(0,128,0) 0.66, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 684) > Vector(x: 694, y: 684) > Vector(x: 693, y: 685) > Vector(x: 483, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 684) > Vector(x: 694, y: 886) > Vector(x: 693, y: 885) > Vector(x: 693, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 886) > Vector(x: 482, y: 886) > Vector(x: 483, y: 885) > Vector(x: 693, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 886) > Vector(x: 482, y: 684) > Vector(x: 483, y: 685) > Vector(x: 483, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 906) > Vector(x: 782, y: 906) > Vector(x: 781, y: 907) > Vector(x: 19, y: 907))
Shape: rgb(0,0,0) Path (Vector(x: 782, y: 906) > Vector(x: 782, y: 1152) > Vector(x: 781, y: 1151) > Vector(x: 781, y: 907))
Shape: rgb(0,0,0) Path (Vector(x: 782, y: 1152) > Vector(x: 18, y: 1152) > Vector(x: 19, y: 1151) > Vector(x: 781, y: 1151))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1152) > Vector(x: 18, y: 906) > Vector(x: 19, y: 907) > Vector(x: 19, y: 1151))
Clip: Path (Vector(x: 29, y: 917) > Vector(x: 231, y: 917) > Vector(x: 231, y: 1019) > Vector(x: 29, y: 1019))
Gradient: [29, 917, 202, 102] linear-gradient(x0: 60, x1: 142, y0: 132, y1: -30 rgb(0,0,255) 0, rgb(255,0,0) 0.25, rgb(0,128,0) 0.98, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 29, y: 917) > Vector(x: 231, y: 917) > Vector(x: 230, y: 918) > Vector(x: 30, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 231, y: 917) > Vector(x: 231, y: 1019) > Vector(x: 230, y: 1018) > Vector(x: 230, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 231, y: 1019) > Vector(x: 29, y: 1019) > Vector(x: 30, y: 1018) > Vector(x: 230, y: 1018))
Shape: rgb(0,0,0) Path (Vector(x: 29, y: 1019) > Vector(x: 29, y: 917) > Vector(x: 30, y: 918) > Vector(x: 30, y: 1018))
Clip: Path (Vector(x: 251, y: 917) > Vector(x: 453, y: 917) > Vector(x: 453, y: 1019) > Vector(x: 251, y: 1019))
Gradient: [251, 917, 202, 102] linear-gradient(x0: 60, x1: 142, y0: -30, y1: 132 rgb(0,0,255) 0, rgb(255,0,0) 0.25, rgb(0,128,0) 0.98, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 251, y: 917) > Vector(x: 453, y: 917) > Vector(x: 452, y: 918) > Vector(x: 252, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 453, y: 917) > Vector(x: 453, y: 1019) > Vector(x: 452, y: 1018) > Vector(x: 452, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 453, y: 1019) > Vector(x: 251, y: 1019) > Vector(x: 252, y: 1018) > Vector(x: 452, y: 1018))
Shape: rgb(0,0,0) Path (Vector(x: 251, y: 1019) > Vector(x: 251, y: 917) > Vector(x: 252, y: 918) > Vector(x: 252, y: 1018))
Clip: Path (Vector(x: 473, y: 917) > Vector(x: 675, y: 917) > Vector(x: 675, y: 1019) > Vector(x: 473, y: 1019))
Gradient: [473, 917, 202, 102] linear-gradient(x0: 142, x1: 60, y0: 132, y1: -30 rgb(0,0,255) 0, rgb(255,0,0) 0.25, rgb(0,128,0) 0.98, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 473, y: 917) > Vector(x: 675, y: 917) > Vector(x: 674, y: 918) > Vector(x: 474, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 675, y: 917) > Vector(x: 675, y: 1019) > Vector(x: 674, y: 1018) > Vector(x: 674, y: 918))
Shape: rgb(0,0,0) Path (Vector(x: 675, y: 1019) > Vector(x: 473, y: 1019) > Vector(x: 474, y: 1018) > Vector(x: 674, y: 1018))
Shape: rgb(0,0,0) Path (Vector(x: 473, y: 1019) > Vector(x: 473, y: 917) > Vector(x: 474, y: 918) > Vector(x: 474, y: 1018))
Clip: Path (Vector(x: 29, y: 1039) > Vector(x: 231, y: 1039) > Vector(x: 231, y: 1141) > Vector(x: 29, y: 1141))
Gradient: [29, 1039, 202, 102] linear-gradient(x0: 142, x1: 60, y0: -30, y1: 132 rgb(0,0,255) 0, rgb(255,0,0) 0.25, rgb(0,128,0) 0.98, rgba(0,0,0,0.5) 1)
Shape: rgb(0,0,0) Path (Vector(x: 29, y: 1039) > Vector(x: 231, y: 1039) > Vector(x: 230, y: 1040) > Vector(x: 30, y: 1040))
Shape: rgb(0,0,0) Path (Vector(x: 231, y: 1039) > Vector(x: 231, y: 1141) > Vector(x: 230, y: 1140) > Vector(x: 230, y: 1040))
Shape: rgb(0,0,0) Path (Vector(x: 231, y: 1141) > Vector(x: 29, y: 1141) > Vector(x: 30, y: 1140) > Vector(x: 230, y: 1140))
Shape: rgb(0,0,0) Path (Vector(x: 29, y: 1141) > Vector(x: 29, y: 1039) > Vector(x: 30, y: 1040) > Vector(x: 30, y: 1140))
Clip: Path (Vector(x: 18, y: 1172) > Vector(x: 230, y: 1172) > Vector(x: 230, y: 1374) > Vector(x: 18, y: 1374))
Gradient: [18, 1172, 212, 202] linear-gradient(x0: 5, x1: 207, y0: -5, y1: 207 rgb(255,255,255) 0, rgb(0,0,0) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1172) > Vector(x: 230, y: 1172) > Vector(x: 229, y: 1173) > Vector(x: 19, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 1172) > Vector(x: 230, y: 1374) > Vector(x: 229, y: 1373) > Vector(x: 229, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 1374) > Vector(x: 18, y: 1374) > Vector(x: 19, y: 1373) > Vector(x: 229, y: 1373))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1374) > Vector(x: 18, y: 1172) > Vector(x: 19, y: 1173) > Vector(x: 19, y: 1373))
Clip: Path (Vector(x: 250, y: 1172) > Vector(x: 462, y: 1172) > Vector(x: 462, y: 1374) > Vector(x: 250, y: 1374))
Gradient: [250, 1172, 212, 202] linear-gradient(x0: 156, x1: 56, y0: -23, y1: 225 rgb(255,255,0) 0, rgb(0,0,255) 0.3, rgb(255,0,0) 0.6, rgb(0,0,255) 1)
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 1172) > Vector(x: 462, y: 1172) > Vector(x: 461, y: 1173) > Vector(x: 251, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 1172) > Vector(x: 462, y: 1374) > Vector(x: 461, y: 1373) > Vector(x: 461, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 1374) > Vector(x: 250, y: 1374) > Vector(x: 251, y: 1373) > Vector(x: 461, y: 1373))
Shape: rgb(0,0,0) Path (Vector(x: 250, y: 1374) > Vector(x: 250, y: 1172) > Vector(x: 251, y: 1173) > Vector(x: 251, y: 1373))
Clip: Path (Vector(x: 482, y: 1172) > Vector(x: 694, y: 1172) > Vector(x: 694, y: 1374) > Vector(x: 482, y: 1374))
Gradient: [482, 1172, 212, 202] linear-gradient(x0: 106, x1: 106, y0: 202, y1: 0 rgb(255,255,0) 0, rgb(255,0,0) 0.6, rgb(0,0,255) 1)
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 1172) > Vector(x: 694, y: 1172) > Vector(x: 693, y: 1173) > Vector(x: 483, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 1172) > Vector(x: 694, y: 1374) > Vector(x: 693, y: 1373) > Vector(x: 693, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 1374) > Vector(x: 482, y: 1374) > Vector(x: 483, y: 1373) > Vector(x: 693, y: 1373))
Shape: rgb(0,0,0) Path (Vector(x: 482, y: 1374) > Vector(x: 482, y: 1172) > Vector(x: 483, y: 1173) > Vector(x: 483, y: 1373))
Clip: Path (Vector(x: 18, y: 1394) > Vector(x: 230, y: 1394) > Vector(x: 230, y: 1596) > Vector(x: 18, y: 1596))
Gradient: [18, 1394, 212, 202] linear-gradient(x0: 219, x1: -7, y0: 92, y1: 110 rgb(255,255,0) 0, rgb(255,165,0) 0.3, rgb(255,0,0) 0.6, rgb(0,0,255) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1394) > Vector(x: 230, y: 1394) > Vector(x: 229, y: 1395) > Vector(x: 19, y: 1395))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 1394) > Vector(x: 230, y: 1596) > Vector(x: 229, y: 1595) > Vector(x: 229, y: 1395))
Shape: rgb(0,0,0) Path (Vector(x: 230, y: 1596) > Vector(x: 18, y: 1596) > Vector(x: 19, y: 1595) > Vector(x: 229, y: 1595))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1596) > Vector(x: 18, y: 1394) > Vector(x: 19, y: 1395) > Vector(x: 19, y: 1595))
Clip: Path (Vector(x: 18, y: 1616) > Vector(x: 820, y: 1616) > Vector(x: 820, y: 1818) > Vector(x: 18, y: 1818))
Gradient: [18, 1616, 802, 202] linear-gradient(x0: 346, x1: 456, y0: -96, y1: 298 rgb(255,255,0) 0, rgb(255,0,0) 0.6, rgb(0,0,255) 1)
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1616) > Vector(x: 820, y: 1616) > Vector(x: 819, y: 1617) > Vector(x: 19, y: 1617))
Shape: rgb(0,0,0) Path (Vector(x: 820, y: 1616) > Vector(x: 820, y: 1818) > Vector(x: 819, y: 1817) > Vector(x: 819, y: 1617))
Shape: rgb(0,0,0) Path (Vector(x: 820, y: 1818) > Vector(x: 18, y: 1818) > Vector(x: 19, y: 1817) > Vector(x: 819, y: 1817))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1818) > Vector(x: 18, y: 1616) > Vector(x: 19, y: 1617) > Vector(x: 19, y: 1817))

View File

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
</style>
</head>
<body>
<div class="medium">
<div style="background-image:url(../../assets/image.jpg), url(../../assets/image2.jpg); background-repeat: repeat-x; background-position: 50px 50px, 100px 130px;"></div>
<div style="background-image:url(../../assets/image.jpg), url(../../assets/image2.jpg); background-repeat: repeat-x; background-position: 50px 50px, 20px -20px;"></div>
<div style="background-image:url(../../assets/image.jpg), url(../../assets/image2.jpg); background-repeat: repeat-x; background-position: 50px 50px, 450px 100px;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,26 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 8) > Vector(x: 8, y: 8))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Repeat: Image ("/tests/assets/image2.jpg") [119, 149] Size (75, 75) Path (Vector(x: 18, y: 148) > Vector(x: 220, y: 148) > Vector(x: 220, y: 223) > Vector(x: 18, y: 223))
Repeat: Image ("/tests/assets/image.jpg") [69, 69] Size (75, 75) Path (Vector(x: 18, y: 68) > Vector(x: 220, y: 68) > Vector(x: 220, y: 143) > Vector(x: 18, y: 143))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 219, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 219, y: 219) > Vector(x: 219, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 219, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))
Clip: Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 240, y: 220))
Repeat: Image ("/tests/assets/image2.jpg") [261, -1] Size (75, 75) Path (Vector(x: 240, y: -2) > Vector(x: 442, y: -2) > Vector(x: 442, y: 73) > Vector(x: 240, y: 73))
Repeat: Image ("/tests/assets/image.jpg") [291, 69] Size (75, 75) Path (Vector(x: 240, y: 68) > Vector(x: 442, y: 68) > Vector(x: 442, y: 143) > Vector(x: 240, y: 143))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 441, y: 19) > Vector(x: 241, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 441, y: 219) > Vector(x: 441, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 220) > Vector(x: 240, y: 220) > Vector(x: 241, y: 219) > Vector(x: 441, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 220) > Vector(x: 240, y: 18) > Vector(x: 241, y: 19) > Vector(x: 241, y: 219))
Clip: Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 462, y: 220))
Repeat: Image ("/tests/assets/image2.jpg") [913, 119] Size (75, 75) Path (Vector(x: 462, y: 118) > Vector(x: 664, y: 118) > Vector(x: 664, y: 193) > Vector(x: 462, y: 193))
Repeat: Image ("/tests/assets/image.jpg") [513, 69] Size (75, 75) Path (Vector(x: 462, y: 68) > Vector(x: 664, y: 68) > Vector(x: 664, y: 143) > Vector(x: 462, y: 143))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 663, y: 19) > Vector(x: 463, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 663, y: 219) > Vector(x: 663, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 220) > Vector(x: 462, y: 220) > Vector(x: 463, y: 219) > Vector(x: 663, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 220) > Vector(x: 462, y: 18) > Vector(x: 463, y: 19) > Vector(x: 463, y: 219))

View File

@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
</style>
</head>
<body>
<div class="medium">
<div style='background:url("../../assets/image.jpg") center center;'></div>
<div style="background:url('../../assets/image.jpg') repeat-x center center;"></div>
<div style="background:url(../../assets/image.jpg) repeat-y center center;"></div>
<div style="background:url(../../assets/image.jpg) no-repeat center center;"></div>
</div>
<div class="small">
<div style="background:url(../../assets/image.jpg) center center;"></div>
<div style="background:url(../../assets/image.jpg) repeat-x center center;"></div>
<div style="background:url(../../assets/image.jpg) repeat-y center center;"></div>
<div style="background:url(../../assets/image.jpg) no-repeat center center;"></div>
</div>
<div class="medium">
<div style="background:url(../../assets/image.jpg) -15% 25px;"></div>
<div style="background:url(../../assets/image.jpg) repeat-x 50px 50px;"></div>
<div style="background:url(../../assets/image.jpg) repeat-y 50px 50px;"></div>
<div style="background:url(../../assets/image.jpg) no-repeat 50px 50px;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,77 @@
Window: [800, 1018]
Rectangle: [0, 0, 800, 1018] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 574) > Vector(x: 8, y: 574))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [82, 82] Size (75, 75) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 219, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 219, y: 219) > Vector(x: 219, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 219, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))
Clip: Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 240, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [304, 82] Size (75, 75) Path (Vector(x: 240, y: 82) > Vector(x: 442, y: 82) > Vector(x: 442, y: 157) > Vector(x: 240, y: 157))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 441, y: 19) > Vector(x: 241, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 441, y: 219) > Vector(x: 441, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 220) > Vector(x: 240, y: 220) > Vector(x: 241, y: 219) > Vector(x: 441, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 220) > Vector(x: 240, y: 18) > Vector(x: 241, y: 19) > Vector(x: 241, y: 219))
Clip: Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 462, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [526, 82] Size (75, 75) Path (Vector(x: 526, y: 18) > Vector(x: 601, y: 18) > Vector(x: 601, y: 220) > Vector(x: 526, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 663, y: 19) > Vector(x: 463, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 663, y: 219) > Vector(x: 663, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 220) > Vector(x: 462, y: 220) > Vector(x: 463, y: 219) > Vector(x: 663, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 220) > Vector(x: 462, y: 18) > Vector(x: 463, y: 19) > Vector(x: 463, y: 219))
Clip: Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 18, y: 442))
Repeat: Image ("/tests/assets/image.jpg") [82, 304] Size (75, 75) Path (Vector(x: 82, y: 304) > Vector(x: 157, y: 304) > Vector(x: 157, y: 379) > Vector(x: 82, y: 379))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 219, y: 241) > Vector(x: 19, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 219, y: 441) > Vector(x: 219, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 442) > Vector(x: 18, y: 442) > Vector(x: 19, y: 441) > Vector(x: 219, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 442) > Vector(x: 18, y: 240) > Vector(x: 19, y: 241) > Vector(x: 19, y: 441))
Clip: Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 18, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [32, 476] Size (75, 75) Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 18, y: 564))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 119, y: 463) > Vector(x: 19, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 119, y: 563) > Vector(x: 119, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 120, y: 564) > Vector(x: 18, y: 564) > Vector(x: 19, y: 563) > Vector(x: 119, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 564) > Vector(x: 18, y: 462) > Vector(x: 19, y: 463) > Vector(x: 19, y: 563))
Clip: Path (Vector(x: 140, y: 462) > Vector(x: 242, y: 462) > Vector(x: 242, y: 564) > Vector(x: 140, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [154, 476] Size (75, 75) Path (Vector(x: 140, y: 476) > Vector(x: 242, y: 476) > Vector(x: 242, y: 551) > Vector(x: 140, y: 551))
Shape: rgb(0,0,0) Path (Vector(x: 140, y: 462) > Vector(x: 242, y: 462) > Vector(x: 241, y: 463) > Vector(x: 141, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 242, y: 462) > Vector(x: 242, y: 564) > Vector(x: 241, y: 563) > Vector(x: 241, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 242, y: 564) > Vector(x: 140, y: 564) > Vector(x: 141, y: 563) > Vector(x: 241, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 140, y: 564) > Vector(x: 140, y: 462) > Vector(x: 141, y: 463) > Vector(x: 141, y: 563))
Clip: Path (Vector(x: 262, y: 462) > Vector(x: 364, y: 462) > Vector(x: 364, y: 564) > Vector(x: 262, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [276, 476] Size (75, 75) Path (Vector(x: 276, y: 462) > Vector(x: 351, y: 462) > Vector(x: 351, y: 564) > Vector(x: 276, y: 564))
Shape: rgb(0,0,0) Path (Vector(x: 262, y: 462) > Vector(x: 364, y: 462) > Vector(x: 363, y: 463) > Vector(x: 263, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 364, y: 462) > Vector(x: 364, y: 564) > Vector(x: 363, y: 563) > Vector(x: 363, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 364, y: 564) > Vector(x: 262, y: 564) > Vector(x: 263, y: 563) > Vector(x: 363, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 262, y: 564) > Vector(x: 262, y: 462) > Vector(x: 263, y: 463) > Vector(x: 263, y: 563))
Clip: Path (Vector(x: 384, y: 462) > Vector(x: 486, y: 462) > Vector(x: 486, y: 564) > Vector(x: 384, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [398, 476] Size (75, 75) Path (Vector(x: 398, y: 476) > Vector(x: 473, y: 476) > Vector(x: 473, y: 551) > Vector(x: 398, y: 551))
Shape: rgb(0,0,0) Path (Vector(x: 384, y: 462) > Vector(x: 486, y: 462) > Vector(x: 485, y: 463) > Vector(x: 385, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 462) > Vector(x: 486, y: 564) > Vector(x: 485, y: 563) > Vector(x: 485, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 564) > Vector(x: 384, y: 564) > Vector(x: 385, y: 563) > Vector(x: 485, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 384, y: 564) > Vector(x: 384, y: 462) > Vector(x: 385, y: 463) > Vector(x: 385, y: 563))
Clip: Path (Vector(x: 18, y: 584) > Vector(x: 220, y: 584) > Vector(x: 220, y: 786) > Vector(x: 18, y: 786))
Repeat: Image ("/tests/assets/image.jpg") [0, 610] Size (75, 75) Path (Vector(x: 18, y: 584) > Vector(x: 220, y: 584) > Vector(x: 220, y: 786) > Vector(x: 18, y: 786))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 584) > Vector(x: 220, y: 584) > Vector(x: 219, y: 585) > Vector(x: 19, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 584) > Vector(x: 220, y: 786) > Vector(x: 219, y: 785) > Vector(x: 219, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 786) > Vector(x: 18, y: 786) > Vector(x: 19, y: 785) > Vector(x: 219, y: 785))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 786) > Vector(x: 18, y: 584) > Vector(x: 19, y: 585) > Vector(x: 19, y: 785))
Clip: Path (Vector(x: 240, y: 584) > Vector(x: 442, y: 584) > Vector(x: 442, y: 786) > Vector(x: 240, y: 786))
Repeat: Image ("/tests/assets/image.jpg") [291, 635] Size (75, 75) Path (Vector(x: 240, y: 635) > Vector(x: 442, y: 635) > Vector(x: 442, y: 710) > Vector(x: 240, y: 710))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 584) > Vector(x: 442, y: 584) > Vector(x: 441, y: 585) > Vector(x: 241, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 584) > Vector(x: 442, y: 786) > Vector(x: 441, y: 785) > Vector(x: 441, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 786) > Vector(x: 240, y: 786) > Vector(x: 241, y: 785) > Vector(x: 441, y: 785))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 786) > Vector(x: 240, y: 584) > Vector(x: 241, y: 585) > Vector(x: 241, y: 785))
Clip: Path (Vector(x: 462, y: 584) > Vector(x: 664, y: 584) > Vector(x: 664, y: 786) > Vector(x: 462, y: 786))
Repeat: Image ("/tests/assets/image.jpg") [513, 635] Size (75, 75) Path (Vector(x: 513, y: 584) > Vector(x: 588, y: 584) > Vector(x: 588, y: 786) > Vector(x: 513, y: 786))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 584) > Vector(x: 664, y: 584) > Vector(x: 663, y: 585) > Vector(x: 463, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 584) > Vector(x: 664, y: 786) > Vector(x: 663, y: 785) > Vector(x: 663, y: 585))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 786) > Vector(x: 462, y: 786) > Vector(x: 463, y: 785) > Vector(x: 663, y: 785))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 786) > Vector(x: 462, y: 584) > Vector(x: 463, y: 585) > Vector(x: 463, y: 785))
Clip: Path (Vector(x: 18, y: 806) > Vector(x: 220, y: 806) > Vector(x: 220, y: 1008) > Vector(x: 18, y: 1008))
Repeat: Image ("/tests/assets/image.jpg") [69, 857] Size (75, 75) Path (Vector(x: 69, y: 857) > Vector(x: 144, y: 857) > Vector(x: 144, y: 932) > Vector(x: 69, y: 932))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 806) > Vector(x: 220, y: 806) > Vector(x: 219, y: 807) > Vector(x: 19, y: 807))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 806) > Vector(x: 220, y: 1008) > Vector(x: 219, y: 1007) > Vector(x: 219, y: 807))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 1008) > Vector(x: 18, y: 1008) > Vector(x: 19, y: 1007) > Vector(x: 219, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 1008) > Vector(x: 18, y: 806) > Vector(x: 19, y: 807) > Vector(x: 19, y: 1007))

View File

@ -0,0 +1,161 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
.radialGradient {
/* FF 3.6+ */
background: -moz-radial-gradient(center, ellipse cover, #959595 0%, #0d0d0d 48%, #2f7bd8 50%, #0a0a0a 64%, #4e4e4e 80%, #383838 87%, #1b1b1b 100%);
/* Chrome, Safari 4+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#959595), color-stop(48%,#0d0d0d), color-stop(50%,#2f7bd8), color-stop(64%,#0a0a0a), color-stop(80%,#4e4e4e), color-stop(87%,#383838), color-stop(100%,#1b1b1b));
/* Chrome 10+, Safari 5.1+ */
background: -webkit-radial-gradient(center, ellipse cover, #959595 0%, #0d0d0d 48%,#2f7bd8 50%,#0a0a0a 64%,#4e4e4e 80%,#383838 87%,#1b1b1b 100%);
/* Opera 12+ */
background: -o-radial-gradient(center, ellipse cover, #959595 0%, #0d0d0d 48%,#2f7bd8 50%,#0a0a0a 64%,#4e4e4e 80%,#383838 87%,#1b1b1b 100%);
/* IE 10+ */
background: -ms-radial-gradient(center, ellipse cover, #959595 0%,#0d0d0d 48%,#2f7bd8 50%,#0a0a0a 64%,#4e4e4e 80%,#383838 87%,#1b1b1b 100%);
/* W3C */
background: radial-gradient(center, ellipse cover, #959595 0%,#0d0d0d 48%,#2f7bd8 50%,#0a0a0a 64%,#4e4e4e 80%,#383838 87%,#1b1b1b 100%);
}
.radialGradient2 {
/* thx to https://twitter.com/#!/markjmclaren/status/13067366701 */
background-color: #FFF;
background-image:
-webkit-gradient(radial, 45 45, 10, 52 50, 30, from(#A7D30C), to(rgba(1,159,98,0)), color-stop(90%, #019F62)),
-webkit-gradient(radial, 105 105, 20, 112 120, 50, from(#ff5f98), to(rgba(255,1,136,0)), color-stop(75%, #ff0188)),
-webkit-gradient(radial, 95 15, 15, 102 20, 40, from(#00c9ff), to(rgba(0,201,255,0)), color-stop(80%, #00b5e2)),
-webkit-gradient(radial, 0 150, 50, 0 140, 90, from(#f4f201), to(rgba(228, 199,0,0)), color-stop(80%, #e4c700));
background-image:
-moz-radial-gradient(42px 42px, circle farthest-corner, #A7D30C 0%, #A7D30C 3%, rgba(1,159,98,0) 11%),
-moz-radial-gradient(45px 45px, circle farthest-corner, #019F62 0%, #019F62 13%, rgba(255,255,255,0) 16%, rgba(255,255,255,0) 100%),
-moz-radial-gradient(102px 102px, circle farthest-corner, #ff5f98 0%, #ff5f98 15%, rgba(255,1,136,0) 27%),
-moz-radial-gradient(105px 105px, circle farthest-corner, #FF0188 0%, #FF0188 28%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 100%),
-moz-radial-gradient(92px 12px, circle farthest-corner, #00c9ff 0%, #00c9ff 10%, rgba(0,181,226,0) 26%),
-moz-radial-gradient(95px 15px, circle farthest-corner, #00b5e2 0%, #00b5e2 28%, rgba(255,255,255,0) 31%, rgba(255,255,255,0) 100%),
-moz-radial-gradient(0px 150px, circle farthest-corner, #f4f201 0%, #f4f201 25%, rgba(228,199,0,0) 45%),
-moz-radial-gradient(0px 150px, circle farthest-corner, #e4c700 0%, #e4c700 47%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
}
.radialGradient3 {
background: -moz-radial-gradient(75% 19%, ellipse closest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, ellipse closest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, ellipse closest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, ellipse closest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, ellipse closest-side, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient4 {
background: -moz-radial-gradient(75% 19%, ellipse closest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, ellipse closest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, ellipse closest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, ellipse closest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, ellipse closest-corner, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient5 {
background: -moz-radial-gradient(75% 19%, ellipse farthest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, ellipse farthest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, ellipse farthest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, ellipse farthest-side, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, ellipse farthest-side, #ababab, #0000ff 33%,#991f1f 100%)
}
.radialGradient6 {
background: -moz-radial-gradient(75% 19%, ellipse farthest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, ellipse farthest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, ellipse farthest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, ellipse farthest-corner, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, ellipse farthest-corner, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient7 {
background: -moz-radial-gradient(75% 19%, circle contain, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, circle contain, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, circle contain, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, circle contain, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, circle contain, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient8 {
background: -moz-radial-gradient(75% 19%, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(75% 19%, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(75% 19%, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(75% 19%, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(75% 19%, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient9 {
background: -moz-radial-gradient(right 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(right 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(right 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(right 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(right 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient10 {
background: -moz-radial-gradient(left 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(left 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(left 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(left 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(left 19%, ellipse cover, #ababab, #0000ff 33%,#991f1f 100%);
}
.radialGradient11 {
background: -moz-radial-gradient(left top, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -webkit-radial-gradient(left top, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -o-radial-gradient(left top, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: -ms-radial-gradient(left top, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
background: radial-gradient(left top, circle cover, #ababab, #0000ff 33%,#991f1f 100%);
}
</style>
</head>
<body>
<div class="medium">
<div class="radialGradient">&nbsp;</div>
<div class="radialGradient2">&nbsp;</div>
<div class="radialGradient3">&nbsp;</div>
<div class="radialGradient4">&nbsp;</div>
<div class="radialGradient5">&nbsp;</div>
<div class="radialGradient6">&nbsp;</div>
<div class="radialGradient7">&nbsp;</div>
<div class="radialGradient8">&nbsp;</div>
<div class="radialGradient9">&nbsp;</div>
<div class="radialGradient10">&nbsp;</div>
<div class="radialGradient11">&nbsp;</div>
</div>
</body>
</html>

View File

@ -0,0 +1,61 @@
Window: [800, 896]
Rectangle: [0, 0, 800, 896] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 8) > Vector(x: 8, y: 8))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 219, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 219, y: 219) > Vector(x: 219, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 219, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))
Clip: Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 240, y: 220))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 441, y: 19) > Vector(x: 241, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 441, y: 219) > Vector(x: 441, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 220) > Vector(x: 240, y: 220) > Vector(x: 241, y: 219) > Vector(x: 441, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 220) > Vector(x: 240, y: 18) > Vector(x: 241, y: 19) > Vector(x: 241, y: 219))
Clip: Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 462, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 663, y: 19) > Vector(x: 463, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 663, y: 219) > Vector(x: 663, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 220) > Vector(x: 462, y: 220) > Vector(x: 463, y: 219) > Vector(x: 663, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 220) > Vector(x: 462, y: 18) > Vector(x: 463, y: 19) > Vector(x: 463, y: 219))
Clip: Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 18, y: 442))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 219, y: 241) > Vector(x: 19, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 219, y: 441) > Vector(x: 219, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 442) > Vector(x: 18, y: 442) > Vector(x: 19, y: 441) > Vector(x: 219, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 442) > Vector(x: 18, y: 240) > Vector(x: 19, y: 241) > Vector(x: 19, y: 441))
Clip: Path (Vector(x: 240, y: 240) > Vector(x: 442, y: 240) > Vector(x: 442, y: 442) > Vector(x: 240, y: 442))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 240) > Vector(x: 442, y: 240) > Vector(x: 441, y: 241) > Vector(x: 241, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 240) > Vector(x: 442, y: 442) > Vector(x: 441, y: 441) > Vector(x: 441, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 442) > Vector(x: 240, y: 442) > Vector(x: 241, y: 441) > Vector(x: 441, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 442) > Vector(x: 240, y: 240) > Vector(x: 241, y: 241) > Vector(x: 241, y: 441))
Clip: Path (Vector(x: 462, y: 240) > Vector(x: 664, y: 240) > Vector(x: 664, y: 442) > Vector(x: 462, y: 442))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 240) > Vector(x: 664, y: 240) > Vector(x: 663, y: 241) > Vector(x: 463, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 240) > Vector(x: 664, y: 442) > Vector(x: 663, y: 441) > Vector(x: 663, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 442) > Vector(x: 462, y: 442) > Vector(x: 463, y: 441) > Vector(x: 663, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 442) > Vector(x: 462, y: 240) > Vector(x: 463, y: 241) > Vector(x: 463, y: 441))
Clip: Path (Vector(x: 18, y: 462) > Vector(x: 220, y: 462) > Vector(x: 220, y: 664) > Vector(x: 18, y: 664))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 462) > Vector(x: 220, y: 462) > Vector(x: 219, y: 463) > Vector(x: 19, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 462) > Vector(x: 220, y: 664) > Vector(x: 219, y: 663) > Vector(x: 219, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 664) > Vector(x: 18, y: 664) > Vector(x: 19, y: 663) > Vector(x: 219, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 664) > Vector(x: 18, y: 462) > Vector(x: 19, y: 463) > Vector(x: 19, y: 663))
Clip: Path (Vector(x: 240, y: 462) > Vector(x: 442, y: 462) > Vector(x: 442, y: 664) > Vector(x: 240, y: 664))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 462) > Vector(x: 442, y: 462) > Vector(x: 441, y: 463) > Vector(x: 241, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 462) > Vector(x: 442, y: 664) > Vector(x: 441, y: 663) > Vector(x: 441, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 664) > Vector(x: 240, y: 664) > Vector(x: 241, y: 663) > Vector(x: 441, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 664) > Vector(x: 240, y: 462) > Vector(x: 241, y: 463) > Vector(x: 241, y: 663))
Clip: Path (Vector(x: 462, y: 462) > Vector(x: 664, y: 462) > Vector(x: 664, y: 664) > Vector(x: 462, y: 664))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 462) > Vector(x: 664, y: 462) > Vector(x: 663, y: 463) > Vector(x: 463, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 462) > Vector(x: 664, y: 664) > Vector(x: 663, y: 663) > Vector(x: 663, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 664) > Vector(x: 462, y: 664) > Vector(x: 463, y: 663) > Vector(x: 663, y: 663))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 664) > Vector(x: 462, y: 462) > Vector(x: 463, y: 463) > Vector(x: 463, y: 663))
Clip: Path (Vector(x: 18, y: 684) > Vector(x: 220, y: 684) > Vector(x: 220, y: 886) > Vector(x: 18, y: 886))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 684) > Vector(x: 220, y: 684) > Vector(x: 219, y: 685) > Vector(x: 19, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 684) > Vector(x: 220, y: 886) > Vector(x: 219, y: 885) > Vector(x: 219, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 886) > Vector(x: 18, y: 886) > Vector(x: 19, y: 885) > Vector(x: 219, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 886) > Vector(x: 18, y: 684) > Vector(x: 19, y: 685) > Vector(x: 19, y: 885))
Clip: Path (Vector(x: 240, y: 684) > Vector(x: 442, y: 684) > Vector(x: 442, y: 886) > Vector(x: 240, y: 886))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 684) > Vector(x: 442, y: 684) > Vector(x: 441, y: 685) > Vector(x: 241, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 684) > Vector(x: 442, y: 886) > Vector(x: 441, y: 885) > Vector(x: 441, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 886) > Vector(x: 240, y: 886) > Vector(x: 241, y: 885) > Vector(x: 441, y: 885))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 886) > Vector(x: 240, y: 684) > Vector(x: 241, y: 685) > Vector(x: 241, y: 885))

View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>Background attribute tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
html {
background-color: red;
}
body {
background-color: lime;
}
.small div{
width:100px;
height:100px;
float:left;
margin:10px;
border:1px solid #000;
}
.medium div{
width:200px;
height:200px;
float:left;
margin:10px;
border:1px solid #000;
}
.small, .medium{
clear:both;
}
div{
display:block;
}
</style>
</head>
<body>
<div class="medium">
<div style="background:url(../../assets/image.jpg);"></div>
<div style="background:url(../../assets/image.jpg) repeat-x;"></div>
<div style="background:url(../../assets/image.jpg) repeat-y;"></div>
<div style="background:url(../../assets/image.jpg) no-repeat;"></div>
</div>
<div class="small">
<div style="background:url(../../assets/image.jpg);"></div>
<div style="background:url(../../assets/image.jpg) repeat-x;"></div>
<div style="background:url(../../assets/image.jpg) repeat-y;"></div>
<div style="background:url(../../assets/image.jpg) no-repeat;"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,53 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(255,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 452) > Vector(x: 8, y: 452))
Fill: rgb(0,255,0)
Clip: Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [19, 19] Size (75, 75) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 18, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 18) > Vector(x: 220, y: 18) > Vector(x: 219, y: 19) > Vector(x: 19, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 18) > Vector(x: 220, y: 220) > Vector(x: 219, y: 219) > Vector(x: 219, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 220) > Vector(x: 18, y: 220) > Vector(x: 19, y: 219) > Vector(x: 219, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 220) > Vector(x: 18, y: 18) > Vector(x: 19, y: 19) > Vector(x: 19, y: 219))
Clip: Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 240, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [241, 19] Size (75, 75) Path (Vector(x: 240, y: 19) > Vector(x: 442, y: 19) > Vector(x: 442, y: 94) > Vector(x: 240, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 18) > Vector(x: 442, y: 18) > Vector(x: 441, y: 19) > Vector(x: 241, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 18) > Vector(x: 442, y: 220) > Vector(x: 441, y: 219) > Vector(x: 441, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 442, y: 220) > Vector(x: 240, y: 220) > Vector(x: 241, y: 219) > Vector(x: 441, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 240, y: 220) > Vector(x: 240, y: 18) > Vector(x: 241, y: 19) > Vector(x: 241, y: 219))
Clip: Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 462, y: 220))
Repeat: Image ("/tests/assets/image.jpg") [463, 19] Size (75, 75) Path (Vector(x: 463, y: 18) > Vector(x: 538, y: 18) > Vector(x: 538, y: 220) > Vector(x: 463, y: 220))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 18) > Vector(x: 664, y: 18) > Vector(x: 663, y: 19) > Vector(x: 463, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 18) > Vector(x: 664, y: 220) > Vector(x: 663, y: 219) > Vector(x: 663, y: 19))
Shape: rgb(0,0,0) Path (Vector(x: 664, y: 220) > Vector(x: 462, y: 220) > Vector(x: 463, y: 219) > Vector(x: 663, y: 219))
Shape: rgb(0,0,0) Path (Vector(x: 462, y: 220) > Vector(x: 462, y: 18) > Vector(x: 463, y: 19) > Vector(x: 463, y: 219))
Clip: Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 18, y: 442))
Repeat: Image ("/tests/assets/image.jpg") [19, 241] Size (75, 75) Path (Vector(x: 19, y: 241) > Vector(x: 94, y: 241) > Vector(x: 94, y: 316) > Vector(x: 19, y: 316))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 240) > Vector(x: 220, y: 240) > Vector(x: 219, y: 241) > Vector(x: 19, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 240) > Vector(x: 220, y: 442) > Vector(x: 219, y: 441) > Vector(x: 219, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 220, y: 442) > Vector(x: 18, y: 442) > Vector(x: 19, y: 441) > Vector(x: 219, y: 441))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 442) > Vector(x: 18, y: 240) > Vector(x: 19, y: 241) > Vector(x: 19, y: 441))
Clip: Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 18, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [19, 463] Size (75, 75) Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 18, y: 564))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 462) > Vector(x: 120, y: 462) > Vector(x: 119, y: 463) > Vector(x: 19, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 120, y: 462) > Vector(x: 120, y: 564) > Vector(x: 119, y: 563) > Vector(x: 119, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 120, y: 564) > Vector(x: 18, y: 564) > Vector(x: 19, y: 563) > Vector(x: 119, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 18, y: 564) > Vector(x: 18, y: 462) > Vector(x: 19, y: 463) > Vector(x: 19, y: 563))
Clip: Path (Vector(x: 140, y: 462) > Vector(x: 242, y: 462) > Vector(x: 242, y: 564) > Vector(x: 140, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [141, 463] Size (75, 75) Path (Vector(x: 140, y: 463) > Vector(x: 242, y: 463) > Vector(x: 242, y: 538) > Vector(x: 140, y: 538))
Shape: rgb(0,0,0) Path (Vector(x: 140, y: 462) > Vector(x: 242, y: 462) > Vector(x: 241, y: 463) > Vector(x: 141, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 242, y: 462) > Vector(x: 242, y: 564) > Vector(x: 241, y: 563) > Vector(x: 241, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 242, y: 564) > Vector(x: 140, y: 564) > Vector(x: 141, y: 563) > Vector(x: 241, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 140, y: 564) > Vector(x: 140, y: 462) > Vector(x: 141, y: 463) > Vector(x: 141, y: 563))
Clip: Path (Vector(x: 262, y: 462) > Vector(x: 364, y: 462) > Vector(x: 364, y: 564) > Vector(x: 262, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [263, 463] Size (75, 75) Path (Vector(x: 263, y: 462) > Vector(x: 338, y: 462) > Vector(x: 338, y: 564) > Vector(x: 263, y: 564))
Shape: rgb(0,0,0) Path (Vector(x: 262, y: 462) > Vector(x: 364, y: 462) > Vector(x: 363, y: 463) > Vector(x: 263, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 364, y: 462) > Vector(x: 364, y: 564) > Vector(x: 363, y: 563) > Vector(x: 363, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 364, y: 564) > Vector(x: 262, y: 564) > Vector(x: 263, y: 563) > Vector(x: 363, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 262, y: 564) > Vector(x: 262, y: 462) > Vector(x: 263, y: 463) > Vector(x: 263, y: 563))
Clip: Path (Vector(x: 384, y: 462) > Vector(x: 486, y: 462) > Vector(x: 486, y: 564) > Vector(x: 384, y: 564))
Repeat: Image ("/tests/assets/image.jpg") [385, 463] Size (75, 75) Path (Vector(x: 385, y: 463) > Vector(x: 460, y: 463) > Vector(x: 460, y: 538) > Vector(x: 385, y: 538))
Shape: rgb(0,0,0) Path (Vector(x: 384, y: 462) > Vector(x: 486, y: 462) > Vector(x: 485, y: 463) > Vector(x: 385, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 462) > Vector(x: 486, y: 564) > Vector(x: 485, y: 563) > Vector(x: 485, y: 463))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 564) > Vector(x: 384, y: 564) > Vector(x: 385, y: 563) > Vector(x: 485, y: 563))
Shape: rgb(0,0,0) Path (Vector(x: 384, y: 564) > Vector(x: 384, y: 462) > Vector(x: 385, y: 463) > Vector(x: 385, y: 563))

View File

@ -0,0 +1,61 @@
<!DOCTYPE html>
<html>
<head>
<title>Background size tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.horizontal div, .vertical div {
display: block;
background:url("../../assets/image.jpg") center center;
}
.vertical {
float: right;
}
.horizontal {
float: left;
}
.horizontal div {
width: 400px; height: 100px;
}
.vertical div {
width: 200px; height: 200px;
}
.container {
float: left;
border: 1px solid black;
width: 150px;
height: 200px;
background-image: url(../../assets/image.jpg);
background-size: 34px;
background-repeat: no-repeat;
background-position: center;
}
</style>
</head>
<body>
<div class="container"></div>
<div class="container" style="background-repeat: repeat-y"></div>
<div class="container" style="background-repeat: repeat-x"></div>
<div class="container" style="background-size: 150% auto"></div>
<div class="horizontal">
<div style='background-size: cover;'></div>
<div style='background-size: contain;'></div>
<div style='background-size: auto 100%;'></div>
<div style='background-size: auto;'></div>
</div>
<div class="vertical">
<div style='background-size: cover;'></div>
<div style='background-size: contain;'></div>
<div style='background-size: auto 100%;'></div>
<div style='background-size: auto;'></div>
</div>
</body>
</html>

View File

@ -0,0 +1,43 @@
Window: [800, 1010]
Rectangle: [0, 0, 800, 1010] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 160, y: 8) > Vector(x: 160, y: 210) > Vector(x: 8, y: 210))
Repeat: Image ("/tests/assets/image.jpg") [67, 92] Size (34, 34) Path (Vector(x: 67, y: 92) > Vector(x: 101, y: 92) > Vector(x: 101, y: 126) > Vector(x: 67, y: 126))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 160, y: 8) > Vector(x: 159, y: 9) > Vector(x: 9, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 160, y: 8) > Vector(x: 160, y: 210) > Vector(x: 159, y: 209) > Vector(x: 159, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 160, y: 210) > Vector(x: 8, y: 210) > Vector(x: 9, y: 209) > Vector(x: 159, y: 209))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 210) > Vector(x: 8, y: 8) > Vector(x: 9, y: 9) > Vector(x: 9, y: 209))
Clip: Path (Vector(x: 160, y: 8) > Vector(x: 312, y: 8) > Vector(x: 312, y: 210) > Vector(x: 160, y: 210))
Repeat: Image ("/tests/assets/image.jpg") [219, 92] Size (34, 34) Path (Vector(x: 219, y: 8) > Vector(x: 253, y: 8) > Vector(x: 253, y: 210) > Vector(x: 219, y: 210))
Shape: rgb(0,0,0) Path (Vector(x: 160, y: 8) > Vector(x: 312, y: 8) > Vector(x: 311, y: 9) > Vector(x: 161, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 8) > Vector(x: 312, y: 210) > Vector(x: 311, y: 209) > Vector(x: 311, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 210) > Vector(x: 160, y: 210) > Vector(x: 161, y: 209) > Vector(x: 311, y: 209))
Shape: rgb(0,0,0) Path (Vector(x: 160, y: 210) > Vector(x: 160, y: 8) > Vector(x: 161, y: 9) > Vector(x: 161, y: 209))
Clip: Path (Vector(x: 312, y: 8) > Vector(x: 464, y: 8) > Vector(x: 464, y: 210) > Vector(x: 312, y: 210))
Repeat: Image ("/tests/assets/image.jpg") [371, 92] Size (34, 34) Path (Vector(x: 312, y: 92) > Vector(x: 464, y: 92) > Vector(x: 464, y: 126) > Vector(x: 312, y: 126))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 8) > Vector(x: 464, y: 8) > Vector(x: 463, y: 9) > Vector(x: 313, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 464, y: 8) > Vector(x: 464, y: 210) > Vector(x: 463, y: 209) > Vector(x: 463, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 464, y: 210) > Vector(x: 312, y: 210) > Vector(x: 313, y: 209) > Vector(x: 463, y: 209))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 210) > Vector(x: 312, y: 8) > Vector(x: 313, y: 9) > Vector(x: 313, y: 209))
Clip: Path (Vector(x: 464, y: 8) > Vector(x: 616, y: 8) > Vector(x: 616, y: 210) > Vector(x: 464, y: 210))
Repeat: Image ("/tests/assets/image.jpg") [426, -5] Size (228, 228) Path (Vector(x: 426, y: -5) > Vector(x: 654, y: -5) > Vector(x: 654, y: 223) > Vector(x: 426, y: 223))
Shape: rgb(0,0,0) Path (Vector(x: 464, y: 8) > Vector(x: 616, y: 8) > Vector(x: 615, y: 9) > Vector(x: 465, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 616, y: 8) > Vector(x: 616, y: 210) > Vector(x: 615, y: 209) > Vector(x: 615, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 616, y: 210) > Vector(x: 464, y: 210) > Vector(x: 465, y: 209) > Vector(x: 615, y: 209))
Shape: rgb(0,0,0) Path (Vector(x: 464, y: 210) > Vector(x: 464, y: 8) > Vector(x: 465, y: 9) > Vector(x: 465, y: 209))
Clip: Path (Vector(x: 8, y: 210) > Vector(x: 408, y: 210) > Vector(x: 408, y: 310) > Vector(x: 8, y: 310))
Repeat: Image ("/tests/assets/image.jpg") [8, 60] Size (400, 400) Path (Vector(x: 8, y: 210) > Vector(x: 408, y: 210) > Vector(x: 408, y: 310) > Vector(x: 8, y: 310))
Clip: Path (Vector(x: 8, y: 310) > Vector(x: 408, y: 310) > Vector(x: 408, y: 410) > Vector(x: 8, y: 410))
Repeat: Image ("/tests/assets/image.jpg") [158, 310] Size (100, 100) Path (Vector(x: 8, y: 310) > Vector(x: 408, y: 310) > Vector(x: 408, y: 410) > Vector(x: 8, y: 410))
Clip: Path (Vector(x: 8, y: 410) > Vector(x: 408, y: 410) > Vector(x: 408, y: 510) > Vector(x: 8, y: 510))
Repeat: Image ("/tests/assets/image.jpg") [158, 410] Size (100, 100) Path (Vector(x: 8, y: 410) > Vector(x: 408, y: 410) > Vector(x: 408, y: 510) > Vector(x: 8, y: 510))
Clip: Path (Vector(x: 8, y: 510) > Vector(x: 408, y: 510) > Vector(x: 408, y: 610) > Vector(x: 8, y: 610))
Repeat: Image ("/tests/assets/image.jpg") [171, 523] Size (75, 75) Path (Vector(x: 8, y: 510) > Vector(x: 408, y: 510) > Vector(x: 408, y: 610) > Vector(x: 8, y: 610))
Clip: Path (Vector(x: 592, y: 210) > Vector(x: 792, y: 210) > Vector(x: 792, y: 410) > Vector(x: 592, y: 410))
Repeat: Image ("/tests/assets/image.jpg") [592, 210] Size (200, 200) Path (Vector(x: 592, y: 210) > Vector(x: 792, y: 210) > Vector(x: 792, y: 410) > Vector(x: 592, y: 410))
Clip: Path (Vector(x: 592, y: 410) > Vector(x: 792, y: 410) > Vector(x: 792, y: 610) > Vector(x: 592, y: 610))
Repeat: Image ("/tests/assets/image.jpg") [592, 410] Size (200, 200) Path (Vector(x: 592, y: 410) > Vector(x: 792, y: 410) > Vector(x: 792, y: 610) > Vector(x: 592, y: 610))
Clip: Path (Vector(x: 592, y: 610) > Vector(x: 792, y: 610) > Vector(x: 792, y: 810) > Vector(x: 592, y: 810))
Repeat: Image ("/tests/assets/image.jpg") [592, 610] Size (200, 200) Path (Vector(x: 592, y: 610) > Vector(x: 792, y: 610) > Vector(x: 792, y: 810) > Vector(x: 592, y: 810))
Clip: Path (Vector(x: 592, y: 810) > Vector(x: 792, y: 810) > Vector(x: 792, y: 1010) > Vector(x: 592, y: 1010))
Repeat: Image ("/tests/assets/image.jpg") [655, 873] Size (75, 75) Path (Vector(x: 592, y: 810) > Vector(x: 792, y: 810) > Vector(x: 792, y: 1010) > Vector(x: 592, y: 1010))

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style: dashed;
}
.box1 {
border-width: 1px;
border-color: #00b5e2;
}
.box2 {
border-width: 3px;
border-color: red;
}
.box3 {
border-width: 10px;
}
.box4 {
border-width: 50px;
border-color: green;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
</body>
</html>

View File

@ -0,0 +1,27 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(58,132,195)
Opacity: 1
Clip: Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 18, y: 229))
Fill: rgb(111,66,140)
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 219, y: 28) > Vector(x: 19, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 219, y: 228) > Vector(x: 219, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 229) > Vector(x: 18, y: 229) > Vector(x: 19, y: 228) > Vector(x: 219, y: 228))
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 229) > Vector(x: 18, y: 27) > Vector(x: 19, y: 28) > Vector(x: 19, y: 228))
Clip: Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 244, y: 231))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 447, y: 28) > Vector(x: 247, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 447, y: 228) > Vector(x: 447, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 231) > Vector(x: 244, y: 231) > Vector(x: 247, y: 228) > Vector(x: 447, y: 228))
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 231) > Vector(x: 244, y: 25) > Vector(x: 247, y: 28) > Vector(x: 247, y: 228))
Clip: Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 474, y: 238))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 684, y: 28) > Vector(x: 484, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 684, y: 228) > Vector(x: 684, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 238) > Vector(x: 474, y: 238) > Vector(x: 484, y: 228) > Vector(x: 684, y: 228))
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 238) > Vector(x: 474, y: 18) > Vector(x: 484, y: 28) > Vector(x: 484, y: 228))
Clip: Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 18, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 268, y: 308) > Vector(x: 68, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 268, y: 508) > Vector(x: 268, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 558) > Vector(x: 18, y: 558) > Vector(x: 68, y: 508) > Vector(x: 268, y: 508))
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 558) > Vector(x: 18, y: 258) > Vector(x: 68, y: 308) > Vector(x: 68, y: 508))

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style: dotted;
}
.box1 {
border-width: 1px;
border-color: #00b5e2;
}
.box2 {
border-width: 3px;
border-color: red;
}
.box3 {
border-width: 10px;
}
.box4 {
border-width: 50px;
border-color: green;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
</body>
</html>

View File

@ -0,0 +1,27 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(58,132,195)
Opacity: 1
Clip: Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 18, y: 229))
Fill: rgb(111,66,140)
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 219, y: 28) > Vector(x: 19, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 219, y: 228) > Vector(x: 219, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 229) > Vector(x: 18, y: 229) > Vector(x: 19, y: 228) > Vector(x: 219, y: 228))
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 229) > Vector(x: 18, y: 27) > Vector(x: 19, y: 28) > Vector(x: 19, y: 228))
Clip: Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 244, y: 231))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 447, y: 28) > Vector(x: 247, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 447, y: 228) > Vector(x: 447, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 231) > Vector(x: 244, y: 231) > Vector(x: 247, y: 228) > Vector(x: 447, y: 228))
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 231) > Vector(x: 244, y: 25) > Vector(x: 247, y: 28) > Vector(x: 247, y: 228))
Clip: Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 474, y: 238))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 684, y: 28) > Vector(x: 484, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 684, y: 228) > Vector(x: 684, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 238) > Vector(x: 474, y: 238) > Vector(x: 484, y: 228) > Vector(x: 684, y: 228))
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 238) > Vector(x: 474, y: 18) > Vector(x: 484, y: 28) > Vector(x: 484, y: 228))
Clip: Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 18, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 268, y: 308) > Vector(x: 68, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 268, y: 508) > Vector(x: 268, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 558) > Vector(x: 18, y: 558) > Vector(x: 68, y: 508) > Vector(x: 268, y: 508))
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 558) > Vector(x: 18, y: 258) > Vector(x: 68, y: 308) > Vector(x: 68, y: 508))

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style:double;
}
.box1 {
border-width: 1px;
border-color: #00b5e2;
}
.box2 {
border-width: 3px;
border-color: red;
}
.box3 {
border-width: 10px;
}
.box4 {
border-width: 50px;
border-color: green;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
</body>
</html>

View File

@ -0,0 +1,27 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(58,132,195)
Opacity: 1
Clip: Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 18, y: 229))
Fill: rgb(111,66,140)
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 219, y: 28) > Vector(x: 19, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 219, y: 228) > Vector(x: 219, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 229) > Vector(x: 18, y: 229) > Vector(x: 19, y: 228) > Vector(x: 219, y: 228))
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 229) > Vector(x: 18, y: 27) > Vector(x: 19, y: 28) > Vector(x: 19, y: 228))
Clip: Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 244, y: 231))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 447, y: 28) > Vector(x: 247, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 447, y: 228) > Vector(x: 447, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 231) > Vector(x: 244, y: 231) > Vector(x: 247, y: 228) > Vector(x: 447, y: 228))
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 231) > Vector(x: 244, y: 25) > Vector(x: 247, y: 28) > Vector(x: 247, y: 228))
Clip: Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 474, y: 238))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 684, y: 28) > Vector(x: 484, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 684, y: 228) > Vector(x: 684, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 238) > Vector(x: 474, y: 238) > Vector(x: 484, y: 228) > Vector(x: 684, y: 228))
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 238) > Vector(x: 474, y: 18) > Vector(x: 484, y: 28) > Vector(x: 484, y: 228))
Clip: Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 18, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 268, y: 308) > Vector(x: 68, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 268, y: 508) > Vector(x: 268, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 558) > Vector(x: 18, y: 558) > Vector(x: 68, y: 508) > Vector(x: 268, y: 508))
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 558) > Vector(x: 18, y: 258) > Vector(x: 68, y: 308) > Vector(x: 68, y: 508))

View File

@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style: inset;
}
.box1 {
border-width: 1px;
border-color: #00b5e2;
}
.box2 {
border-width: 3px;
border-color: red;
}
.box3 {
border-width: 10px;
}
.box4 {
border-width: 50px;
border-color: green;
}
.box5 {
border-width: 50px;
border-color: rgb(0, 0, 0);
}
input {
border-width: 50px;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
<div class="box5">&nbsp;</div>
<input type="text" />
</body>
</html>

View File

@ -0,0 +1,39 @@
Window: [800, 693]
Rectangle: [0, 0, 800, 693] rgb(58,132,195)
Opacity: 1
Clip: Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 18, y: 229))
Fill: rgb(111,66,140)
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 219, y: 28) > Vector(x: 19, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 219, y: 228) > Vector(x: 219, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 229) > Vector(x: 18, y: 229) > Vector(x: 19, y: 228) > Vector(x: 219, y: 228))
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 229) > Vector(x: 18, y: 27) > Vector(x: 19, y: 28) > Vector(x: 19, y: 228))
Clip: Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 244, y: 231))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 447, y: 28) > Vector(x: 247, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 447, y: 228) > Vector(x: 447, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 231) > Vector(x: 244, y: 231) > Vector(x: 247, y: 228) > Vector(x: 447, y: 228))
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 231) > Vector(x: 244, y: 25) > Vector(x: 247, y: 28) > Vector(x: 247, y: 228))
Clip: Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 474, y: 238))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 684, y: 28) > Vector(x: 484, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 684, y: 228) > Vector(x: 684, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 238) > Vector(x: 474, y: 238) > Vector(x: 484, y: 228) > Vector(x: 684, y: 228))
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 238) > Vector(x: 474, y: 18) > Vector(x: 484, y: 28) > Vector(x: 484, y: 228))
Clip: Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 18, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 268, y: 308) > Vector(x: 68, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 268, y: 508) > Vector(x: 268, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 558) > Vector(x: 18, y: 558) > Vector(x: 68, y: 508) > Vector(x: 268, y: 508))
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 558) > Vector(x: 18, y: 258) > Vector(x: 68, y: 308) > Vector(x: 68, y: 508))
Clip: Path (Vector(x: 342, y: 258) > Vector(x: 642, y: 258) > Vector(x: 642, y: 558) > Vector(x: 342, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 342, y: 258) > Vector(x: 642, y: 258) > Vector(x: 592, y: 308) > Vector(x: 392, y: 308))
Shape: rgb(0,0,0) Path (Vector(x: 642, y: 258) > Vector(x: 642, y: 558) > Vector(x: 592, y: 508) > Vector(x: 592, y: 308))
Shape: rgb(0,0,0) Path (Vector(x: 642, y: 558) > Vector(x: 342, y: 558) > Vector(x: 392, y: 508) > Vector(x: 592, y: 508))
Shape: rgb(0,0,0) Path (Vector(x: 342, y: 558) > Vector(x: 342, y: 258) > Vector(x: 392, y: 308) > Vector(x: 392, y: 508))
Clip: Path (Vector(x: 8, y: 568) > Vector(x: 273, y: 568) > Vector(x: 273, y: 685) > Vector(x: 8, y: 685))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 568) > Vector(x: 273, y: 568) > Vector(x: 223, y: 618) > Vector(x: 58, y: 618))
Shape: rgb(0,0,0) Path (Vector(x: 273, y: 568) > Vector(x: 273, y: 685) > Vector(x: 223, y: 635) > Vector(x: 223, y: 618))
Shape: rgb(0,0,0) Path (Vector(x: 273, y: 685) > Vector(x: 8, y: 685) > Vector(x: 58, y: 635) > Vector(x: 223, y: 635))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 685) > Vector(x: 8, y: 568) > Vector(x: 58, y: 618) > Vector(x: 58, y: 635))

View File

@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style: solid;
border-radius: 50px;
}
.box1 {
border-width: 1px;
border-left-color: #00b5e2;
border-top-color: red;
border-right-color: green;
}
.box2 {
border-width: 3px;
border-left-color: #00b5e2;
border-top-color: red;
border-right-color: green;
}
.box3 {
border-width: 10px;
border-left-color: transparent;
border-top-color: red;
border-right-color: green;
}
.box4 {
border-width: 50px;
border-left-color: transparent;
border-top-color: red;
border-top-width: 10px;
border-right-color: green;
border-bottom-right-radius: 190px;
background-clip: padding-box;
}
.box5 {
margin: 100px;
border-width: 50px;
border-left-color: transparent;
border-top-color: red;
border-top-width: 10px;
border-right-color: green;
border-radius: 25px;
background-clip: padding-box;
}
.box6 {
height: 200px;
width: 200px;
border-radius: 200px;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
<div class="box5">&nbsp;</div>
<div class="box6">&nbsp;</div>
</body>
</html>

View File

@ -0,0 +1,36 @@
Window: [800, 996]
Rectangle: [0, 0, 800, 996] rgb(58,132,195)
Opacity: 1
Clip: Path (BezierCurve(x0: 18, y0: 77, x1: 68, y1: 27, cx0: 18, cy0: 49, cx1: 40, cy1: 27) > BezierCurve(x0: 170, y0: 27, x1: 220, y1: 77, cx0: 198, cy0: 27, cx1: 220, cy1: 49) > BezierCurve(x0: 220, y0: 179, x1: 170, y1: 229, cx0: 220, cy0: 206, cx1: 198, cy1: 229) > BezierCurve(x0: 68, y0: 229, x1: 18, y1: 179, cx0: 40, cy0: 229, cx1: 18, cy1: 206))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (BezierCurve(x0: 33, y0: 41, x1: 68, y1: 27, cx0: 42, cy0: 32, cx1: 54, cy1: 27) > BezierCurve(x0: 170, y0: 27, x1: 205, y1: 41, cx0: 184, cy0: 27, cx1: 196, cy1: 32) > BezierCurve(x0: 205, y0: 42, x1: 170, y1: 28, cx0: 196, cy0: 33, cx1: 184, cy1: 28) > BezierCurve(x0: 68, y0: 28, x1: 33, y1: 42, cx0: 54, cy0: 28, cx1: 42, cy1: 33))
Shape: rgb(0,128,0) Path (BezierCurve(x0: 205, y0: 41, x1: 220, y1: 77, cx0: 214, cy0: 50, cx1: 220, cy1: 63) > BezierCurve(x0: 220, y0: 179, x1: 205, y1: 214, cx0: 220, cy0: 193, cx1: 214, cy1: 205) > BezierCurve(x0: 205, y0: 213, x1: 219, y1: 179, cx0: 214, cy0: 205, cx1: 219, cy1: 192) > BezierCurve(x0: 219, y0: 77, x1: 205, y1: 42, cx0: 219, cy0: 63, cx1: 214, cy1: 51))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 205, y0: 214, x1: 170, y1: 229, cx0: 196, cy0: 223, cx1: 184, cy1: 229) > BezierCurve(x0: 68, y0: 229, x1: 33, y1: 214, cx0: 54, cy0: 229, cx1: 42, cy1: 223) > BezierCurve(x0: 33, y0: 213, x1: 68, y1: 228, cx0: 42, cy0: 222, cx1: 54, cy1: 228) > BezierCurve(x0: 170, y0: 228, x1: 205, y1: 213, cx0: 184, cy0: 228, cx1: 196, cy1: 222))
Shape: rgb(0,181,226) Path (BezierCurve(x0: 33, y0: 214, x1: 18, y1: 179, cx0: 24, cy0: 205, cx1: 18, cy1: 193) > BezierCurve(x0: 18, y0: 77, x1: 33, y1: 41, cx0: 18, cy0: 63, cx1: 24, cy1: 50) > BezierCurve(x0: 33, y0: 42, x1: 19, y1: 77, cx0: 24, cy0: 51, cx1: 19, cy1: 63) > BezierCurve(x0: 19, y0: 179, x1: 33, y1: 213, cx0: 19, cy0: 192, cx1: 24, cy1: 205))
Clip: Path (BezierCurve(x0: 244, y0: 75, x1: 294, y1: 25, cx0: 244, cy0: 47, cx1: 266, cy1: 25) > BezierCurve(x0: 400, y0: 25, x1: 450, y1: 75, cx0: 428, cy0: 25, cx1: 450, cy1: 47) > BezierCurve(x0: 450, y0: 181, x1: 400, y1: 231, cx0: 450, cy0: 208, cx1: 428, cy1: 231) > BezierCurve(x0: 294, y0: 231, x1: 244, y1: 181, cx0: 266, cy0: 231, cx1: 244, cy1: 208))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (BezierCurve(x0: 259, y0: 39, x1: 294, y1: 25, cx0: 268, cy0: 30, cx1: 280, cy1: 25) > BezierCurve(x0: 400, y0: 25, x1: 435, y1: 39, cx0: 414, cy0: 25, cx1: 426, cy1: 30) > BezierCurve(x0: 433, y0: 42, x1: 400, y1: 28, cx0: 425, cy0: 33, cx1: 413, cy1: 28) > BezierCurve(x0: 294, y0: 28, x1: 261, y1: 42, cx0: 281, cy0: 28, cx1: 269, cy1: 33))
Shape: rgb(0,128,0) Path (BezierCurve(x0: 435, y0: 39, x1: 450, y1: 75, cx0: 444, cy0: 48, cx1: 450, cy1: 61) > BezierCurve(x0: 450, y0: 181, x1: 435, y1: 216, cx0: 450, cy0: 195, cx1: 444, cy1: 207) > BezierCurve(x0: 433, y0: 214, x1: 447, y1: 181, cx0: 442, cy0: 206, cx1: 447, cy1: 194) > BezierCurve(x0: 447, y0: 75, x1: 433, y1: 42, cx0: 447, cy0: 62, cx1: 442, cy1: 50))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 435, y0: 216, x1: 400, y1: 231, cx0: 426, cy0: 225, cx1: 414, cy1: 231) > BezierCurve(x0: 294, y0: 231, x1: 259, y1: 216, cx0: 280, cy0: 231, cx1: 268, cy1: 225) > BezierCurve(x0: 261, y0: 214, x1: 294, y1: 228, cx0: 269, cy0: 223, cx1: 281, cy1: 228) > BezierCurve(x0: 400, y0: 228, x1: 433, y1: 214, cx0: 413, cy0: 228, cx1: 425, cy1: 223))
Shape: rgb(0,181,226) Path (BezierCurve(x0: 259, y0: 216, x1: 244, y1: 181, cx0: 250, cy0: 207, cx1: 244, cy1: 195) > BezierCurve(x0: 244, y0: 75, x1: 259, y1: 39, cx0: 244, cy0: 61, cx1: 250, cy1: 48) > BezierCurve(x0: 261, y0: 42, x1: 247, y1: 75, cx0: 252, cy0: 50, cx1: 247, cy1: 62) > BezierCurve(x0: 247, y0: 181, x1: 261, y1: 214, cx0: 247, cy0: 194, cx1: 252, cy1: 206))
Clip: Path (BezierCurve(x0: 474, y0: 68, x1: 524, y1: 18, cx0: 474, cy0: 40, cx1: 496, cy1: 18) > BezierCurve(x0: 644, y0: 18, x1: 694, y1: 68, cx0: 672, cy0: 18, cx1: 694, cy1: 40) > BezierCurve(x0: 694, y0: 188, x1: 644, y1: 238, cx0: 694, cy0: 216, cx1: 672, cy1: 238) > BezierCurve(x0: 524, y0: 238, x1: 474, y1: 188, cx0: 496, cy0: 238, cx1: 474, cy1: 216))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (BezierCurve(x0: 489, y0: 33, x1: 524, y1: 18, cx0: 498, cy0: 24, cx1: 510, cy1: 18) > BezierCurve(x0: 644, y0: 18, x1: 679, y1: 33, cx0: 658, cy0: 18, cx1: 670, cy1: 24) > BezierCurve(x0: 672, y0: 40, x1: 644, y1: 28, cx0: 665, cy0: 32, cx1: 655, cy1: 28) > BezierCurve(x0: 524, y0: 28, x1: 496, y1: 40, cx0: 513, cy0: 28, cx1: 503, cy1: 32))
Shape: rgb(0,128,0) Path (BezierCurve(x0: 679, y0: 33, x1: 694, y1: 68, cx0: 688, cy0: 42, cx1: 694, cy1: 54) > BezierCurve(x0: 694, y0: 188, x1: 679, y1: 223, cx0: 694, cy0: 202, cx1: 688, cy1: 214) > BezierCurve(x0: 672, y0: 216, x1: 684, y1: 188, cx0: 680, cy0: 209, cx1: 684, cy1: 199) > BezierCurve(x0: 684, y0: 68, x1: 672, y1: 40, cx0: 684, cy0: 57, cx1: 680, cy1: 47))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 679, y0: 223, x1: 644, y1: 238, cx0: 670, cy0: 232, cx1: 658, cy1: 238) > BezierCurve(x0: 524, y0: 238, x1: 489, y1: 223, cx0: 510, cy0: 238, cx1: 498, cy1: 232) > BezierCurve(x0: 496, y0: 216, x1: 524, y1: 228, cx0: 503, cy0: 224, cx1: 513, cy1: 228) > BezierCurve(x0: 644, y0: 228, x1: 672, y1: 216, cx0: 655, cy0: 228, cx1: 665, cy1: 224))
Clip: Path (BezierCurve(x0: 68, y0: 308, x1: 68, y1: 268, cx0: 68, cy0: 286, cx1: 68, cy1: 268) > BezierCurve(x0: 268, y0: 268, x1: 268, y1: 308, cx0: 268, cy0: 268, cx1: 268, cy1: 286) > BezierCurve(x0: 268, y0: 388, x1: 168, y1: 468, cx0: 268, cy0: 432, cx1: 223, cy1: 468) > BezierCurve(x0: 68, y0: 468, x1: 68, y1: 468, cx0: 68, cy0: 468, cx1: 68, cy1: 468))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (BezierCurve(x0: 33, y0: 273, x1: 68, y1: 258, cx0: 42, cy0: 264, cx1: 54, cy1: 258) > BezierCurve(x0: 268, y0: 258, x1: 303, y1: 273, cx0: 282, cy0: 258, cx1: 294, cy1: 264) > BezierCurve(x0: 268, y0: 280, x1: 268, y1: 268, cx0: 268, cy0: 272, cx1: 268, cy1: 268) > BezierCurve(x0: 68, y0: 268, x1: 68, y1: 280, cx0: 68, cy0: 268, cx1: 68, cy1: 272))
Shape: rgb(0,128,0) Path (BezierCurve(x0: 303, y0: 273, x1: 318, y1: 308, cx0: 312, cy0: 282, cx1: 318, cy1: 294) > BezierCurve(x0: 318, y0: 388, x1: 274, y1: 480, cx0: 318, cy0: 424, cx1: 301, cy1: 456) > BezierCurve(x0: 239, y0: 445, x1: 268, y1: 388, cx0: 257, cy0: 430, cx1: 268, cy1: 410) > BezierCurve(x0: 268, y0: 308, x1: 268, y1: 280, cx0: 268, cy0: 297, cx1: 268, cy1: 287))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 274, y0: 480, x1: 168, y1: 518, cx0: 247, cy0: 503, cx1: 209, cy1: 518) > BezierCurve(x0: 68, y0: 518, x1: 33, y1: 503, cx0: 54, cy0: 518, cx1: 42, cy1: 512) > BezierCurve(x0: 68, y0: 468, x1: 68, y1: 468, cx0: 68, cy0: 468, cx1: 68, cy1: 468) > BezierCurve(x0: 168, y0: 468, x1: 239, y1: 445, cx0: 196, cy0: 468, cx1: 221, cy1: 459))
Clip: Path (BezierCurve(x0: 158, y0: 653, x1: 158, y1: 638, cx0: 158, cy0: 645, cx1: 158, cy1: 638) > BezierCurve(x0: 383, y0: 638, x1: 358, y1: 653, cx0: 369, cy0: 638, cx1: 358, cy1: 645) > BezierCurve(x0: 358, y0: 863, x1: 358, y1: 838, cx0: 358, cy0: 849, cx1: 358, cy1: 838) > BezierCurve(x0: 158, y0: 838, x1: 158, y1: 863, cx0: 158, cy0: 838, cx1: 158, cy1: 849))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (BezierCurve(x0: 115, y0: 635, x1: 133, y1: 628, cx0: 120, cy0: 631, cx1: 126, cy1: 628) > BezierCurve(x0: 383, y0: 628, x1: 401, y1: 635, cx0: 390, cy0: 628, cx1: 396, cy1: 631) > BezierCurve(x0: 365, y0: 642, x1: 383, y1: 638, cx0: 370, cy0: 640, cx1: 376, cy1: 638) > BezierCurve(x0: 158, y0: 638, x1: 158, y1: 642, cx0: 158, cy0: 638, cx1: 158, cy1: 640))
Shape: rgb(0,128,0) Path (BezierCurve(x0: 401, y0: 635, x1: 408, y1: 653, cx0: 405, cy0: 640, cx1: 408, cy1: 646) > BezierCurve(x0: 408, y0: 863, x1: 401, y1: 881, cx0: 408, cy0: 870, cx1: 405, cy1: 876) > BezierCurve(x0: 358, y0: 845, x1: 358, y1: 863, cx0: 358, cy0: 850, cx1: 358, cy1: 856) > BezierCurve(x0: 358, y0: 653, x1: 365, y1: 642, cx0: 358, cy0: 649, cx1: 361, cy1: 645))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 401, y0: 881, x1: 383, y1: 888, cx0: 396, cy0: 885, cx1: 390, cy1: 888) > BezierCurve(x0: 133, y0: 888, x1: 115, y1: 881, cx0: 126, cy0: 888, cx1: 120, cy1: 885) > BezierCurve(x0: 158, y0: 845, x1: 158, y1: 838, cx0: 158, cy0: 841, cx1: 158, cy1: 838) > BezierCurve(x0: 358, y0: 838, x1: 358, y1: 845, cx0: 358, cy0: 838, cx1: 358, cy1: 841))
Clip: Path (BezierCurve(x0: 522, y0: 738, x1: 623, y1: 637, cx0: 522, cy0: 682, cx1: 567, cy1: 637) > BezierCurve(x0: 623, y0: 637, x1: 724, y1: 738, cx0: 679, cy0: 637, cx1: 724, cy1: 682) > BezierCurve(x0: 724, y0: 738, x1: 623, y1: 839, cx0: 724, cy0: 794, cx1: 679, cy1: 839) > BezierCurve(x0: 623, y0: 839, x1: 522, y1: 738, cx0: 567, cy0: 839, cx1: 522, cy1: 794))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (BezierCurve(x0: 552, y0: 666, x1: 623, y1: 637, cx0: 570, cy0: 648, cx1: 595, cy1: 637) > BezierCurve(x0: 623, y0: 637, x1: 695, y1: 666, cx0: 651, cy0: 637, cx1: 676, cy1: 648) > BezierCurve(x0: 694, y0: 667, x1: 623, y1: 638, cx0: 676, cy0: 649, cx1: 651, cy1: 638) > BezierCurve(x0: 623, y0: 638, x1: 552, y1: 667, cx0: 596, cy0: 638, cx1: 570, cy1: 649))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 695, y0: 666, x1: 724, y1: 738, cx0: 713, cy0: 685, cx1: 724, cy1: 710) > BezierCurve(x0: 724, y0: 738, x1: 695, y1: 810, cx0: 724, cy0: 766, cx1: 713, cy1: 791) > BezierCurve(x0: 694, y0: 809, x1: 723, y1: 738, cx0: 712, cy0: 791, cx1: 723, cy1: 766) > BezierCurve(x0: 723, y0: 738, x1: 694, y1: 667, cx0: 723, cy0: 710, cx1: 712, cy1: 685))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 695, y0: 810, x1: 623, y1: 839, cx0: 676, cy0: 828, cx1: 651, cy1: 839) > BezierCurve(x0: 623, y0: 839, x1: 552, y1: 810, cx0: 595, cy0: 839, cx1: 570, cy1: 828) > BezierCurve(x0: 552, y0: 809, x1: 623, y1: 838, cx0: 570, cy0: 827, cx1: 596, cy1: 838) > BezierCurve(x0: 623, y0: 838, x1: 694, y1: 809, cx0: 651, cy0: 838, cx1: 676, cy1: 827))
Shape: rgb(0,0,0) Path (BezierCurve(x0: 552, y0: 810, x1: 522, y1: 738, cx0: 533, cy0: 791, cx1: 522, cy1: 766) > BezierCurve(x0: 522, y0: 738, x1: 552, y1: 666, cx0: 522, cy0: 710, cx1: 533, cy1: 685) > BezierCurve(x0: 552, y0: 667, x1: 523, y1: 738, cx0: 534, cy0: 685, cx1: 523, cy1: 710) > BezierCurve(x0: 523, y0: 738, x1: 552, y1: 809, cx0: 523, cy0: 766, cx1: 534, cy1: 791))

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Borders tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style type="text/css">
div {
width: 200px;
height: 200px;
display: inline-block;
margin: 10px;
background:#6F428C;
border-style: solid;
}
.box1 {
border-width: 1px;
border-color: #00b5e2;
}
.box2 {
border-width: 3px;
border-color: red;
}
.box3 {
border-width: 10px;
}
.box4 {
border-width: 50px;
border-color: green;
}
html {
background: #3a84c3;
}
</style>
</head>
<body>
<div class="box1">&nbsp;</div>
<div class="box2">&nbsp;</div>
<div class="box3">&nbsp;</div>
<div class="box4">&nbsp;</div>
</body>
</html>

View File

@ -0,0 +1,27 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgb(58,132,195)
Opacity: 1
Clip: Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 18, y: 229))
Fill: rgb(111,66,140)
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 27) > Vector(x: 220, y: 27) > Vector(x: 219, y: 28) > Vector(x: 19, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 27) > Vector(x: 220, y: 229) > Vector(x: 219, y: 228) > Vector(x: 219, y: 28))
Shape: rgb(0,181,226) Path (Vector(x: 220, y: 229) > Vector(x: 18, y: 229) > Vector(x: 19, y: 228) > Vector(x: 219, y: 228))
Shape: rgb(0,181,226) Path (Vector(x: 18, y: 229) > Vector(x: 18, y: 27) > Vector(x: 19, y: 28) > Vector(x: 19, y: 228))
Clip: Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 244, y: 231))
Fill: rgb(111,66,140)
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 25) > Vector(x: 450, y: 25) > Vector(x: 447, y: 28) > Vector(x: 247, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 25) > Vector(x: 450, y: 231) > Vector(x: 447, y: 228) > Vector(x: 447, y: 28))
Shape: rgb(255,0,0) Path (Vector(x: 450, y: 231) > Vector(x: 244, y: 231) > Vector(x: 247, y: 228) > Vector(x: 447, y: 228))
Shape: rgb(255,0,0) Path (Vector(x: 244, y: 231) > Vector(x: 244, y: 25) > Vector(x: 247, y: 28) > Vector(x: 247, y: 228))
Clip: Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 474, y: 238))
Fill: rgb(111,66,140)
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 18) > Vector(x: 694, y: 18) > Vector(x: 684, y: 28) > Vector(x: 484, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 18) > Vector(x: 694, y: 238) > Vector(x: 684, y: 228) > Vector(x: 684, y: 28))
Shape: rgb(0,0,0) Path (Vector(x: 694, y: 238) > Vector(x: 474, y: 238) > Vector(x: 484, y: 228) > Vector(x: 684, y: 228))
Shape: rgb(0,0,0) Path (Vector(x: 474, y: 238) > Vector(x: 474, y: 18) > Vector(x: 484, y: 28) > Vector(x: 484, y: 228))
Clip: Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 18, y: 558))
Fill: rgb(111,66,140)
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 258) > Vector(x: 318, y: 258) > Vector(x: 268, y: 308) > Vector(x: 68, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 258) > Vector(x: 318, y: 558) > Vector(x: 268, y: 508) > Vector(x: 268, y: 308))
Shape: rgb(0,128,0) Path (Vector(x: 318, y: 558) > Vector(x: 18, y: 558) > Vector(x: 68, y: 508) > Vector(x: 268, y: 508))
Shape: rgb(0,128,0) Path (Vector(x: 18, y: 558) > Vector(x: 18, y: 258) > Vector(x: 68, y: 308) > Vector(x: 68, y: 508))

46
tests/reftests/clip.html Normal file
View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>Inline text in the top element</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../test.js"></script>
<style>
span {
color:blue;
}
p {
background-color: green;
}
div {
background: red;
border: 5px solid blue;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
<div style="clip: rect(0px, 400px, 50px, 200px); ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: relative; ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: fixed; ">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
<div style="clip: rect(0px, 400px, 50px, 200px); position: absolute; top: 250px; left: 500px;">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
</body>
<div style="clip: rect(0px, 400px, 50px, 200px); position: absolute; top: 500px;">Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.</div>
</body>
</html>

178
tests/reftests/clip.txt Normal file
View File

@ -0,0 +1,178 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 792, y: 104) > Vector(x: 8, y: 104))
Fill: rgb(255,0,0)
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 787, y: 13) > Vector(x: 13, y: 13))
Shape: rgb(0,0,255) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 104) > Vector(x: 787, y: 99) > Vector(x: 787, y: 13))
Shape: rgb(0,0,255) Path (Vector(x: 792, y: 104) > Vector(x: 8, y: 104) > Vector(x: 13, y: 99) > Vector(x: 787, y: 99))
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 104) > Vector(x: 8, y: 8) > Vector(x: 13, y: 13) > Vector(x: 13, y: 99))
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 13]: Some
[59, 13]: inline
[101, 13]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[302, 13]: followed
[365, 13]: by
[387, 13]: more
[427, 13]: inline
[469, 13]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 81]: Then
[54, 81]: more
[95, 81]: inline
[137, 81]: text.
Clip: Path (Vector(x: 13, y: 47) > Vector(x: 787, y: 47) > Vector(x: 787, y: 65) > Vector(x: 13, y: 65))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 47]: Then
[54, 47]: a
[67, 47]: block
[109, 47]: level
[147, 47]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[131, 13]: followed
[195, 13]: by
[216, 13]: text
[246, 13]: in
[263, 13]: span
Clip: Path (Vector(x: 8, y: 104) > Vector(x: 792, y: 104) > Vector(x: 792, y: 200) > Vector(x: 8, y: 200))
Fill: rgb(255,0,0)
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 104) > Vector(x: 792, y: 104) > Vector(x: 787, y: 109) > Vector(x: 13, y: 109))
Shape: rgb(0,0,255) Path (Vector(x: 792, y: 104) > Vector(x: 792, y: 200) > Vector(x: 787, y: 195) > Vector(x: 787, y: 109))
Shape: rgb(0,0,255) Path (Vector(x: 792, y: 200) > Vector(x: 8, y: 200) > Vector(x: 13, y: 195) > Vector(x: 787, y: 195))
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 200) > Vector(x: 8, y: 104) > Vector(x: 13, y: 109) > Vector(x: 13, y: 195))
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 109]: Some
[59, 109]: inline
[101, 109]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[302, 109]: followed
[365, 109]: by
[387, 109]: more
[427, 109]: inline
[469, 109]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 177]: Then
[54, 177]: more
[95, 177]: inline
[137, 177]: text.
Clip: Path (Vector(x: 13, y: 143) > Vector(x: 787, y: 143) > Vector(x: 787, y: 161) > Vector(x: 13, y: 161))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 143]: Then
[54, 143]: a
[67, 143]: block
[109, 143]: level
[147, 143]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[131, 109]: followed
[195, 109]: by
[216, 109]: text
[246, 109]: in
[263, 109]: span
Clip: Path (Vector(x: 8, y: 200) > Vector(x: 504, y: 200) > Vector(x: 504, y: 296) > Vector(x: 8, y: 296))
Fill: rgb(255,0,0)
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 200) > Vector(x: 504, y: 200) > Vector(x: 499, y: 205) > Vector(x: 13, y: 205))
Shape: rgb(0,0,255) Path (Vector(x: 504, y: 200) > Vector(x: 504, y: 296) > Vector(x: 499, y: 291) > Vector(x: 499, y: 205))
Shape: rgb(0,0,255) Path (Vector(x: 504, y: 296) > Vector(x: 8, y: 296) > Vector(x: 13, y: 291) > Vector(x: 499, y: 291))
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 296) > Vector(x: 8, y: 200) > Vector(x: 13, y: 205) > Vector(x: 13, y: 291))
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 205]: Some
[59, 205]: inline
[101, 205]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[302, 205]: followed
[365, 205]: by
[387, 205]: more
[427, 205]: inline
[469, 205]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 273]: Then
[54, 273]: more
[95, 273]: inline
[137, 273]: text.
Clip: Path (Vector(x: 13, y: 239) > Vector(x: 499, y: 239) > Vector(x: 499, y: 257) > Vector(x: 13, y: 257))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 239]: Then
[54, 239]: a
[67, 239]: block
[109, 239]: level
[147, 239]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[131, 205]: followed
[195, 205]: by
[216, 205]: text
[246, 205]: in
[263, 205]: span
Clip: Path (Vector(x: 500, y: 250) > Vector(x: 800, y: 250) > Vector(x: 800, y: 364) > Vector(x: 500, y: 364))
Fill: rgb(255,0,0)
Shape: rgb(0,0,255) Path (Vector(x: 500, y: 250) > Vector(x: 800, y: 250) > Vector(x: 795, y: 255) > Vector(x: 505, y: 255))
Shape: rgb(0,0,255) Path (Vector(x: 800, y: 250) > Vector(x: 800, y: 364) > Vector(x: 795, y: 359) > Vector(x: 795, y: 255))
Shape: rgb(0,0,255) Path (Vector(x: 800, y: 364) > Vector(x: 500, y: 364) > Vector(x: 505, y: 359) > Vector(x: 795, y: 359))
Shape: rgb(0,0,255) Path (Vector(x: 500, y: 364) > Vector(x: 500, y: 250) > Vector(x: 505, y: 255) > Vector(x: 505, y: 359))
Text: rgb(0,0,0) normal normal 400 16px Arial
[505, 255]: Some
[551, 255]: inline
[593, 255]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[505, 273]: followed
[568, 273]: by
[589, 273]: more
[630, 273]: inline
[672, 273]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[505, 341]: Then
[546, 341]: more
[587, 341]: inline
[629, 341]: text.
Clip: Path (Vector(x: 505, y: 307) > Vector(x: 795, y: 307) > Vector(x: 795, y: 325) > Vector(x: 505, y: 325))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[505, 307]: Then
[546, 307]: a
[559, 307]: block
[601, 307]: level
[639, 307]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[623, 255]: followed
[687, 255]: by
[708, 255]: text
[738, 255]: in
[755, 255]: span
Clip: Path (Vector(x: 8, y: 500) > Vector(x: 504, y: 500) > Vector(x: 504, y: 596) > Vector(x: 8, y: 596))
Fill: rgb(255,0,0)
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 500) > Vector(x: 504, y: 500) > Vector(x: 499, y: 505) > Vector(x: 13, y: 505))
Shape: rgb(0,0,255) Path (Vector(x: 504, y: 500) > Vector(x: 504, y: 596) > Vector(x: 499, y: 591) > Vector(x: 499, y: 505))
Shape: rgb(0,0,255) Path (Vector(x: 504, y: 596) > Vector(x: 8, y: 596) > Vector(x: 13, y: 591) > Vector(x: 499, y: 591))
Shape: rgb(0,0,255) Path (Vector(x: 8, y: 596) > Vector(x: 8, y: 500) > Vector(x: 13, y: 505) > Vector(x: 13, y: 591))
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 505]: Some
[59, 505]: inline
[101, 505]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[302, 505]: followed
[365, 505]: by
[387, 505]: more
[427, 505]: inline
[469, 505]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 573]: Then
[54, 573]: more
[95, 573]: inline
[137, 573]: text.
Clip: Path (Vector(x: 13, y: 539) > Vector(x: 499, y: 539) > Vector(x: 499, y: 557) > Vector(x: 13, y: 557))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 539]: Then
[54, 539]: a
[67, 539]: block
[109, 539]: level
[147, 539]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[131, 505]: followed
[195, 505]: by
[216, 505]: text
[246, 505]: in
[263, 505]: span

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>cross-origin iframe test</title>
<script>
var h2cOptions = {proxy: "http://localhost:8082"};
</script>
<script type="text/javascript" src="../test.js"></script>
</head>
<body>
<iframe src="http://hertzen.com/" width="800" height="800"></iframe>
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [812, 824]
Rectangle: [0, 0, 812, 824] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 812, y: 8) > Vector(x: 810, y: 10) > Vector(x: 10, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 812, y: 8) > Vector(x: 812, y: 812) > Vector(x: 810, y: 810) > Vector(x: 810, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 812, y: 812) > Vector(x: 8, y: 812) > Vector(x: 10, y: 810) > Vector(x: 810, y: 810))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 812) > Vector(x: 8, y: 8) > Vector(x: 10, y: 10) > Vector(x: 10, y: 810))

81
tests/reftests/forms.html Normal file
View File

@ -0,0 +1,81 @@
<!DOCTYPE html>
<html>
<head>
<title>Form tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../test.js"></script>
<style>
input[type="radio"], input[type="checkbox"] {
margin: 10px;
display: inline-block;
}
</style>
</head>
<body>
<input type="hidden" value="THIS SHOULD NOT BE VISIBLE!" />
<input type="text" value="textbox" />
<input type="password" value="textbox" />
<input type="text" value="textbox" style="border:5px solid navy;" />
<input type="text" value="textbox" style="border:5px solid navy;height:40px;" />
<input type="text" value="textbox" style="border:5px solid navy;height:40px;padding:10px;" />
<input type="text" value="textbox" style="padding:10px;" />
<input type="text" value="textbox" style="padding:10px;text-align:right;" />
<hr />
<select>
<option value="1">Value 1</option>
<option value="2">Value 2</option>
<option value="3">Value 3</option>
</select>
<select>
</select>
<select>
<option value="">2</option>
</select>
<select>
<option value="1">Value 1</option>
<option value="2" selected>Value 2 with something else</option>
<option value="3">Value 3</option>
</select>
<hr />
<input type="submit" value="Submit" />
<input type="Button" value="Button" />
<input type="Reset" value="Reset" />
<input type="submit" value="Submit" style="width:200px;" />
<input type="Button" value="Button" style="width:200px;height:50px;" />
<input type="Reset" value="Reset" style="width:200px;height:50px;text-align:left;" />
<hr />
<textarea> </textarea>
<textarea style="border-width:10px;"></textarea>
<textarea> text </textarea>
<textarea style="border-width:10px;">text</textarea>
<hr />
<input type="radio" value="radio1" />
<input type="radio" value="radio2" style="transform:scale(3)" />
<input type="RADIO" value="radio3" checked />
<input type="radio" value="radio4" style="transform:scale(3)" checked />
<input type="radio" value="radio5" style="transform:scale(3); background: red;" />
<input type="radio" value="radio6" style="width: 200px;" />
<input type="radio" value="radio6" style="width: 200px; height: 200px;" />
<input type="radio" value="radio6" style="width: 200px; height: 200px;" checked />
<input type="checkbox" value="checkbox1" />
<input type="chECKbox" value="checkbox2" style="transform:scale(3)" />
<input type="checkbox" value="checkbox3" checked />
<input type="checkbox" value="checkbox4" style="transform:scale(3)" checked />
<input type="checkbox" value="checkbox5" style="transform:scale(3); background: red;" />
<input type="checkbox" value="checkbox6" style="width: 200px;" />
<input type="checkbox" value="checkbox6" style="width: 200px; height: 200px;" />
<input type="checkbox" value="checkbox6" style="width: 200px; height: 200px;" checked />
<div style="position: absolute; width: 10px; height: 10px; border:1px solid rgb(165,165,165); border-radius: 3px; background: rgb(222,222,222)"></div>
</body>
</html>

310
tests/reftests/forms.txt Normal file
View File

@ -0,0 +1,310 @@
Window: [800, 1003]
Rectangle: [0, 0, 800, 1003] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 138) > Vector(x: 792, y: 138) > Vector(x: 791, y: 139) > Vector(x: 9, y: 139))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 138) > Vector(x: 792, y: 140) > Vector(x: 791, y: 139) > Vector(x: 791, y: 139))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 140) > Vector(x: 8, y: 140) > Vector(x: 9, y: 139) > Vector(x: 791, y: 139))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 140) > Vector(x: 8, y: 138) > Vector(x: 9, y: 139) > Vector(x: 9, y: 139))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 176) > Vector(x: 792, y: 176) > Vector(x: 791, y: 177) > Vector(x: 9, y: 177))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 176) > Vector(x: 792, y: 178) > Vector(x: 791, y: 177) > Vector(x: 791, y: 177))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 178) > Vector(x: 8, y: 178) > Vector(x: 9, y: 177) > Vector(x: 791, y: 177))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 178) > Vector(x: 8, y: 176) > Vector(x: 9, y: 177) > Vector(x: 9, y: 177))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 244) > Vector(x: 792, y: 244) > Vector(x: 791, y: 245) > Vector(x: 9, y: 245))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 244) > Vector(x: 792, y: 246) > Vector(x: 791, y: 245) > Vector(x: 791, y: 245))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 246) > Vector(x: 8, y: 246) > Vector(x: 9, y: 245) > Vector(x: 791, y: 245))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 246) > Vector(x: 8, y: 244) > Vector(x: 9, y: 245) > Vector(x: 9, y: 245))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 321) > Vector(x: 792, y: 321) > Vector(x: 791, y: 322) > Vector(x: 9, y: 322))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 321) > Vector(x: 792, y: 323) > Vector(x: 791, y: 322) > Vector(x: 791, y: 322))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 323) > Vector(x: 8, y: 323) > Vector(x: 9, y: 322) > Vector(x: 791, y: 322))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 323) > Vector(x: 8, y: 321) > Vector(x: 9, y: 322) > Vector(x: 9, y: 322))
Clip: Path (Vector(x: 8, y: 24) > Vector(x: 177, y: 24) > Vector(x: 177, y: 45) > Vector(x: 8, y: 45))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 24) > Vector(x: 177, y: 24) > Vector(x: 175, y: 26) > Vector(x: 10, y: 26))
Shape: rgb(0,0,0) Path (Vector(x: 177, y: 24) > Vector(x: 177, y: 45) > Vector(x: 175, y: 43) > Vector(x: 175, y: 26))
Shape: rgb(0,0,0) Path (Vector(x: 177, y: 45) > Vector(x: 8, y: 45) > Vector(x: 10, y: 43) > Vector(x: 175, y: 43))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 45) > Vector(x: 8, y: 24) > Vector(x: 10, y: 26) > Vector(x: 10, y: 43))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[10, 27]: textbox
Clip: Path (Vector(x: 181, y: 24) > Vector(x: 350, y: 24) > Vector(x: 350, y: 45) > Vector(x: 181, y: 45))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 181, y: 24) > Vector(x: 350, y: 24) > Vector(x: 348, y: 26) > Vector(x: 183, y: 26))
Shape: rgb(0,0,0) Path (Vector(x: 350, y: 24) > Vector(x: 350, y: 45) > Vector(x: 348, y: 43) > Vector(x: 348, y: 26))
Shape: rgb(0,0,0) Path (Vector(x: 350, y: 45) > Vector(x: 181, y: 45) > Vector(x: 183, y: 43) > Vector(x: 348, y: 43))
Shape: rgb(0,0,0) Path (Vector(x: 181, y: 45) > Vector(x: 181, y: 24) > Vector(x: 183, y: 26) > Vector(x: 183, y: 43))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[183, 27]: •
[188, 27]: •
[192, 27]: •
[197, 27]: •
[202, 27]: •
[206, 27]: •
[211, 27]: •
Clip: Path (Vector(x: 354, y: 20) > Vector(x: 528, y: 20) > Vector(x: 528, y: 48) > Vector(x: 354, y: 48))
Fill: rgb(255,255,255)
Shape: rgb(0,0,128) Path (Vector(x: 354, y: 20) > Vector(x: 528, y: 20) > Vector(x: 523, y: 25) > Vector(x: 359, y: 25))
Shape: rgb(0,0,128) Path (Vector(x: 528, y: 20) > Vector(x: 528, y: 48) > Vector(x: 523, y: 43) > Vector(x: 523, y: 25))
Shape: rgb(0,0,128) Path (Vector(x: 528, y: 48) > Vector(x: 354, y: 48) > Vector(x: 359, y: 43) > Vector(x: 523, y: 43))
Shape: rgb(0,0,128) Path (Vector(x: 354, y: 48) > Vector(x: 354, y: 20) > Vector(x: 359, y: 25) > Vector(x: 359, y: 43))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[359, 26]: textbox
Clip: Path (Vector(x: 532, y: 8) > Vector(x: 707, y: 8) > Vector(x: 707, y: 60) > Vector(x: 532, y: 60))
Fill: rgb(255,255,255)
Shape: rgb(0,0,128) Path (Vector(x: 532, y: 8) > Vector(x: 707, y: 8) > Vector(x: 702, y: 13) > Vector(x: 537, y: 13))
Shape: rgb(0,0,128) Path (Vector(x: 707, y: 8) > Vector(x: 707, y: 60) > Vector(x: 702, y: 55) > Vector(x: 702, y: 13))
Shape: rgb(0,0,128) Path (Vector(x: 707, y: 60) > Vector(x: 532, y: 60) > Vector(x: 537, y: 55) > Vector(x: 702, y: 55))
Shape: rgb(0,0,128) Path (Vector(x: 532, y: 60) > Vector(x: 532, y: 8) > Vector(x: 537, y: 13) > Vector(x: 537, y: 55))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[537, 14]: textbox
Clip: Path (Vector(x: 8, y: 60) > Vector(x: 203, y: 60) > Vector(x: 203, y: 130) > Vector(x: 8, y: 130))
Fill: rgb(255,255,255)
Shape: rgb(0,0,128) Path (Vector(x: 8, y: 60) > Vector(x: 203, y: 60) > Vector(x: 198, y: 65) > Vector(x: 13, y: 65))
Shape: rgb(0,0,128) Path (Vector(x: 203, y: 60) > Vector(x: 203, y: 130) > Vector(x: 198, y: 125) > Vector(x: 198, y: 65))
Shape: rgb(0,0,128) Path (Vector(x: 203, y: 130) > Vector(x: 8, y: 130) > Vector(x: 13, y: 125) > Vector(x: 198, y: 125))
Shape: rgb(0,0,128) Path (Vector(x: 8, y: 130) > Vector(x: 8, y: 60) > Vector(x: 13, y: 65) > Vector(x: 13, y: 125))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[23, 75]: textbox
Clip: Path (Vector(x: 207, y: 75) > Vector(x: 396, y: 75) > Vector(x: 396, y: 114) > Vector(x: 207, y: 114))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 207, y: 75) > Vector(x: 396, y: 75) > Vector(x: 394, y: 77) > Vector(x: 209, y: 77))
Shape: rgb(0,0,0) Path (Vector(x: 396, y: 75) > Vector(x: 396, y: 114) > Vector(x: 394, y: 112) > Vector(x: 394, y: 77))
Shape: rgb(0,0,0) Path (Vector(x: 396, y: 114) > Vector(x: 207, y: 114) > Vector(x: 209, y: 112) > Vector(x: 394, y: 112))
Shape: rgb(0,0,0) Path (Vector(x: 207, y: 114) > Vector(x: 207, y: 75) > Vector(x: 209, y: 77) > Vector(x: 209, y: 112))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[219, 87]: textbox
Clip: Path (Vector(x: 400, y: 75) > Vector(x: 588, y: 75) > Vector(x: 588, y: 114) > Vector(x: 400, y: 114))
Fill: rgb(255,255,255)
Shape: rgb(0,0,0) Path (Vector(x: 400, y: 75) > Vector(x: 588, y: 75) > Vector(x: 586, y: 77) > Vector(x: 402, y: 77))
Shape: rgb(0,0,0) Path (Vector(x: 588, y: 75) > Vector(x: 588, y: 114) > Vector(x: 586, y: 112) > Vector(x: 586, y: 77))
Shape: rgb(0,0,0) Path (Vector(x: 588, y: 114) > Vector(x: 400, y: 114) > Vector(x: 402, y: 112) > Vector(x: 586, y: 112))
Shape: rgb(0,0,0) Path (Vector(x: 400, y: 114) > Vector(x: 400, y: 75) > Vector(x: 402, y: 77) > Vector(x: 402, y: 112))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[533, 87]: textbox
Clip: Path (Vector(x: 8, y: 149) > Vector(x: 76, y: 149) > Vector(x: 76, y: 168) > Vector(x: 8, y: 168))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 8, y: 149) > Vector(x: 76, y: 149) > Vector(x: 75, y: 150) > Vector(x: 9, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 76, y: 149) > Vector(x: 76, y: 168) > Vector(x: 75, y: 167) > Vector(x: 75, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 76, y: 168) > Vector(x: 8, y: 168) > Vector(x: 9, y: 167) > Vector(x: 75, y: 167))
Shape: rgb(169,169,169) Path (Vector(x: 8, y: 168) > Vector(x: 8, y: 149) > Vector(x: 9, y: 150) > Vector(x: 9, y: 167))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[9, 150]: Value
[46, 150]: 1
Clip: Path (Vector(x: 80, y: 149) > Vector(x: 104, y: 149) > Vector(x: 104, y: 168) > Vector(x: 80, y: 168))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 80, y: 149) > Vector(x: 104, y: 149) > Vector(x: 103, y: 150) > Vector(x: 81, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 104, y: 149) > Vector(x: 104, y: 168) > Vector(x: 103, y: 167) > Vector(x: 103, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 104, y: 168) > Vector(x: 80, y: 168) > Vector(x: 81, y: 167) > Vector(x: 103, y: 167))
Shape: rgb(169,169,169) Path (Vector(x: 80, y: 168) > Vector(x: 80, y: 149) > Vector(x: 81, y: 150) > Vector(x: 81, y: 167))
Clip: Path (Vector(x: 108, y: 149) > Vector(x: 140, y: 149) > Vector(x: 140, y: 168) > Vector(x: 108, y: 168))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 108, y: 149) > Vector(x: 140, y: 149) > Vector(x: 139, y: 150) > Vector(x: 109, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 140, y: 149) > Vector(x: 140, y: 168) > Vector(x: 139, y: 167) > Vector(x: 139, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 140, y: 168) > Vector(x: 108, y: 168) > Vector(x: 109, y: 167) > Vector(x: 139, y: 167))
Shape: rgb(169,169,169) Path (Vector(x: 108, y: 168) > Vector(x: 108, y: 149) > Vector(x: 109, y: 150) > Vector(x: 109, y: 167))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[109, 150]: 2
Clip: Path (Vector(x: 144, y: 149) > Vector(x: 333, y: 149) > Vector(x: 333, y: 168) > Vector(x: 144, y: 168))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 144, y: 149) > Vector(x: 333, y: 149) > Vector(x: 332, y: 150) > Vector(x: 145, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 333, y: 149) > Vector(x: 333, y: 168) > Vector(x: 332, y: 167) > Vector(x: 332, y: 150))
Shape: rgb(169,169,169) Path (Vector(x: 333, y: 168) > Vector(x: 144, y: 168) > Vector(x: 145, y: 167) > Vector(x: 332, y: 167))
Shape: rgb(169,169,169) Path (Vector(x: 144, y: 168) > Vector(x: 144, y: 149) > Vector(x: 145, y: 150) > Vector(x: 145, y: 167))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[145, 150]: Value
[182, 150]: 2
[193, 150]: with
[220, 150]: something
[286, 150]: else
Clip: Path (Vector(x: 8, y: 200) > Vector(x: 65, y: 200) > Vector(x: 65, y: 221) > Vector(x: 8, y: 221))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 8, y: 200) > Vector(x: 65, y: 200) > Vector(x: 63, y: 202) > Vector(x: 10, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 65, y: 200) > Vector(x: 65, y: 221) > Vector(x: 63, y: 219) > Vector(x: 63, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 65, y: 221) > Vector(x: 8, y: 221) > Vector(x: 10, y: 219) > Vector(x: 63, y: 219))
Shape: rgb(221,221,221) Path (Vector(x: 8, y: 221) > Vector(x: 8, y: 200) > Vector(x: 10, y: 202) > Vector(x: 10, y: 219))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[16, 203]: Submit
Clip: Path (Vector(x: 69, y: 200) > Vector(x: 124, y: 200) > Vector(x: 124, y: 221) > Vector(x: 69, y: 221))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 69, y: 200) > Vector(x: 124, y: 200) > Vector(x: 122, y: 202) > Vector(x: 71, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 124, y: 200) > Vector(x: 124, y: 221) > Vector(x: 122, y: 219) > Vector(x: 122, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 124, y: 221) > Vector(x: 69, y: 221) > Vector(x: 71, y: 219) > Vector(x: 122, y: 219))
Shape: rgb(221,221,221) Path (Vector(x: 69, y: 221) > Vector(x: 69, y: 200) > Vector(x: 71, y: 202) > Vector(x: 71, y: 219))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[77, 203]: Button
Clip: Path (Vector(x: 128, y: 200) > Vector(x: 179, y: 200) > Vector(x: 179, y: 221) > Vector(x: 128, y: 221))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 128, y: 200) > Vector(x: 179, y: 200) > Vector(x: 177, y: 202) > Vector(x: 130, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 179, y: 200) > Vector(x: 179, y: 221) > Vector(x: 177, y: 219) > Vector(x: 177, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 179, y: 221) > Vector(x: 128, y: 221) > Vector(x: 130, y: 219) > Vector(x: 177, y: 219))
Shape: rgb(221,221,221) Path (Vector(x: 128, y: 221) > Vector(x: 128, y: 200) > Vector(x: 130, y: 202) > Vector(x: 130, y: 219))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[136, 203]: Reset
Clip: Path (Vector(x: 183, y: 200) > Vector(x: 383, y: 200) > Vector(x: 383, y: 221) > Vector(x: 183, y: 221))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 183, y: 200) > Vector(x: 383, y: 200) > Vector(x: 381, y: 202) > Vector(x: 185, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 383, y: 200) > Vector(x: 383, y: 221) > Vector(x: 381, y: 219) > Vector(x: 381, y: 202))
Shape: rgb(221,221,221) Path (Vector(x: 383, y: 221) > Vector(x: 183, y: 221) > Vector(x: 185, y: 219) > Vector(x: 381, y: 219))
Shape: rgb(221,221,221) Path (Vector(x: 183, y: 221) > Vector(x: 183, y: 200) > Vector(x: 185, y: 202) > Vector(x: 185, y: 219))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[262, 203]: Submit
Clip: Path (Vector(x: 387, y: 186) > Vector(x: 587, y: 186) > Vector(x: 587, y: 236) > Vector(x: 387, y: 236))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 387, y: 186) > Vector(x: 587, y: 186) > Vector(x: 585, y: 188) > Vector(x: 389, y: 188))
Shape: rgb(221,221,221) Path (Vector(x: 587, y: 186) > Vector(x: 587, y: 236) > Vector(x: 585, y: 234) > Vector(x: 585, y: 188))
Shape: rgb(221,221,221) Path (Vector(x: 587, y: 236) > Vector(x: 387, y: 236) > Vector(x: 389, y: 234) > Vector(x: 585, y: 234))
Shape: rgb(221,221,221) Path (Vector(x: 387, y: 236) > Vector(x: 387, y: 186) > Vector(x: 389, y: 188) > Vector(x: 389, y: 234))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[468, 189]: Button
Clip: Path (Vector(x: 591, y: 186) > Vector(x: 791, y: 186) > Vector(x: 791, y: 236) > Vector(x: 591, y: 236))
Fill: rgb(221,221,221)
Shape: rgb(221,221,221) Path (Vector(x: 591, y: 186) > Vector(x: 791, y: 186) > Vector(x: 789, y: 188) > Vector(x: 593, y: 188))
Shape: rgb(221,221,221) Path (Vector(x: 791, y: 186) > Vector(x: 791, y: 236) > Vector(x: 789, y: 234) > Vector(x: 789, y: 188))
Shape: rgb(221,221,221) Path (Vector(x: 791, y: 236) > Vector(x: 591, y: 236) > Vector(x: 593, y: 234) > Vector(x: 789, y: 234))
Shape: rgb(221,221,221) Path (Vector(x: 591, y: 236) > Vector(x: 591, y: 186) > Vector(x: 593, y: 188) > Vector(x: 593, y: 234))
Text: rgb(0,0,0) normal normal 400 13.3333px Arial
[599, 189]: Reset
Clip: Path (Vector(x: 8, y: 272) > Vector(x: 165, y: 272) > Vector(x: 165, y: 309) > Vector(x: 8, y: 309))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 8, y: 272) > Vector(x: 165, y: 272) > Vector(x: 164, y: 273) > Vector(x: 9, y: 273))
Shape: rgb(169,169,169) Path (Vector(x: 165, y: 272) > Vector(x: 165, y: 309) > Vector(x: 164, y: 308) > Vector(x: 164, y: 273))
Shape: rgb(169,169,169) Path (Vector(x: 165, y: 309) > Vector(x: 8, y: 309) > Vector(x: 9, y: 308) > Vector(x: 164, y: 308))
Shape: rgb(169,169,169) Path (Vector(x: 8, y: 309) > Vector(x: 8, y: 272) > Vector(x: 9, y: 273) > Vector(x: 9, y: 308))
Text: rgb(0,0,0) normal normal 400 13.3333px monospace
Clip: Path (Vector(x: 169, y: 254) > Vector(x: 344, y: 254) > Vector(x: 344, y: 309) > Vector(x: 169, y: 309))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 169, y: 254) > Vector(x: 344, y: 254) > Vector(x: 334, y: 264) > Vector(x: 179, y: 264))
Shape: rgb(169,169,169) Path (Vector(x: 344, y: 254) > Vector(x: 344, y: 309) > Vector(x: 334, y: 299) > Vector(x: 334, y: 264))
Shape: rgb(169,169,169) Path (Vector(x: 344, y: 309) > Vector(x: 169, y: 309) > Vector(x: 179, y: 299) > Vector(x: 334, y: 299))
Shape: rgb(169,169,169) Path (Vector(x: 169, y: 309) > Vector(x: 169, y: 254) > Vector(x: 179, y: 264) > Vector(x: 179, y: 299))
Clip: Path (Vector(x: 348, y: 272) > Vector(x: 504, y: 272) > Vector(x: 504, y: 309) > Vector(x: 348, y: 309))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 348, y: 272) > Vector(x: 504, y: 272) > Vector(x: 503, y: 273) > Vector(x: 349, y: 273))
Shape: rgb(169,169,169) Path (Vector(x: 504, y: 272) > Vector(x: 504, y: 309) > Vector(x: 503, y: 308) > Vector(x: 503, y: 273))
Shape: rgb(169,169,169) Path (Vector(x: 504, y: 309) > Vector(x: 348, y: 309) > Vector(x: 349, y: 308) > Vector(x: 503, y: 308))
Shape: rgb(169,169,169) Path (Vector(x: 348, y: 309) > Vector(x: 348, y: 272) > Vector(x: 349, y: 273) > Vector(x: 349, y: 308))
Text: rgb(0,0,0) normal normal 400 13.3333px monospace
[358, 275]: text
Clip: Path (Vector(x: 508, y: 254) > Vector(x: 683, y: 254) > Vector(x: 683, y: 309) > Vector(x: 508, y: 309))
Fill: rgb(255,255,255)
Shape: rgb(169,169,169) Path (Vector(x: 508, y: 254) > Vector(x: 683, y: 254) > Vector(x: 673, y: 264) > Vector(x: 518, y: 264))
Shape: rgb(169,169,169) Path (Vector(x: 683, y: 254) > Vector(x: 683, y: 309) > Vector(x: 673, y: 299) > Vector(x: 673, y: 264))
Shape: rgb(169,169,169) Path (Vector(x: 683, y: 309) > Vector(x: 508, y: 309) > Vector(x: 518, y: 299) > Vector(x: 673, y: 299))
Shape: rgb(169,169,169) Path (Vector(x: 508, y: 309) > Vector(x: 508, y: 254) > Vector(x: 518, y: 264) > Vector(x: 518, y: 299))
Text: rgb(0,0,0) normal normal 400 13.3333px monospace
[520, 266]: text
Clip: Path (BezierCurve(x0: 19, y0: 534, x1: 24, y1: 529, cx0: 19, cy0: 531, cx1: 21, cy1: 529) > BezierCurve(x0: 24, y0: 529, x1: 30, y1: 534, cx0: 27, cy0: 529, cx1: 30, cy1: 531) > BezierCurve(x0: 30, y0: 534, x1: 24, y1: 540, cx0: 30, cy0: 537, cx1: 27, cy1: 540) > BezierCurve(x0: 24, y0: 540, x1: 19, y1: 534, cx0: 21, cy0: 540, cx1: 19, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 20, y0: 530, x1: 24, y1: 528, cx0: 21, cy0: 529, cx1: 23, cy1: 528) > BezierCurve(x0: 24, y0: 528, x1: 29, y1: 530, cx0: 26, cy0: 528, cx1: 28, cy1: 529) > BezierCurve(x0: 28, y0: 531, x1: 24, y1: 529, cx0: 27, cy0: 530, cx1: 26, cy1: 529) > BezierCurve(x0: 24, y0: 529, x1: 21, y1: 531, cx0: 23, cy0: 529, cx1: 22, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 29, y0: 530, x1: 31, y1: 534, cx0: 30, cy0: 531, cx1: 31, cy1: 533) > BezierCurve(x0: 31, y0: 534, x1: 29, y1: 539, cx0: 31, cy0: 536, cx1: 30, cy1: 538) > BezierCurve(x0: 28, y0: 538, x1: 30, y1: 534, cx0: 29, cy0: 537, cx1: 30, cy1: 536) > BezierCurve(x0: 30, y0: 534, x1: 28, y1: 531, cx0: 30, cy0: 533, cx1: 29, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 29, y0: 539, x1: 24, y1: 541, cx0: 28, cy0: 540, cx1: 26, cy1: 541) > BezierCurve(x0: 24, y0: 541, x1: 20, y1: 539, cx0: 23, cy0: 541, cx1: 21, cy1: 540) > BezierCurve(x0: 21, y0: 538, x1: 24, y1: 540, cx0: 22, cy0: 539, cx1: 23, cy1: 540) > BezierCurve(x0: 24, y0: 540, x1: 28, y1: 538, cx0: 26, cy0: 540, cx1: 27, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 20, y0: 539, x1: 18, y1: 534, cx0: 19, cy0: 538, cx1: 18, cy1: 536) > BezierCurve(x0: 18, y0: 534, x1: 20, y1: 530, cx0: 18, cy0: 533, cx1: 19, cy1: 531) > BezierCurve(x0: 21, y0: 531, x1: 19, y1: 534, cx0: 20, cy0: 532, cx1: 19, cy1: 533) > BezierCurve(x0: 19, y0: 534, x1: 21, y1: 538, cx0: 19, cy0: 536, cx1: 20, cy1: 537))
Clip: Path (BezierCurve(x0: 93, y0: 534, x1: 98, y1: 529, cx0: 93, cy0: 531, cx1: 95, cy1: 529) > BezierCurve(x0: 98, y0: 529, x1: 103, y1: 534, cx0: 101, cy0: 529, cx1: 103, cy1: 531) > BezierCurve(x0: 103, y0: 534, x1: 98, y1: 540, cx0: 103, cy0: 537, cx1: 101, cy1: 540) > BezierCurve(x0: 98, y0: 540, x1: 93, y1: 534, cx0: 95, cy0: 540, cx1: 93, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 93, y0: 530, x1: 98, y1: 528, cx0: 95, cy0: 529, cx1: 96, cy1: 528) > BezierCurve(x0: 98, y0: 528, x1: 103, y1: 530, cx0: 100, cy0: 528, cx1: 101, cy1: 529) > BezierCurve(x0: 102, y0: 531, x1: 98, y1: 529, cx0: 101, cy0: 530, cx1: 99, cy1: 529) > BezierCurve(x0: 98, y0: 529, x1: 94, y1: 531, cx0: 97, cy0: 529, cx1: 95, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 103, y0: 530, x1: 104, y1: 534, cx0: 104, cy0: 531, cx1: 104, cy1: 533) > BezierCurve(x0: 104, y0: 534, x1: 103, y1: 539, cx0: 104, cy0: 536, cx1: 104, cy1: 538) > BezierCurve(x0: 102, y0: 538, x1: 103, y1: 534, cx0: 103, cy0: 537, cx1: 103, cy1: 536) > BezierCurve(x0: 103, y0: 534, x1: 102, y1: 531, cx0: 103, cy0: 533, cx1: 103, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 103, y0: 539, x1: 98, y1: 541, cx0: 101, cy0: 540, cx1: 100, cy1: 541) > BezierCurve(x0: 98, y0: 541, x1: 93, y1: 539, cx0: 96, cy0: 541, cx1: 95, cy1: 540) > BezierCurve(x0: 94, y0: 538, x1: 98, y1: 540, cx0: 95, cy0: 539, cx1: 97, cy1: 540) > BezierCurve(x0: 98, y0: 540, x1: 102, y1: 538, cx0: 99, cy0: 540, cx1: 101, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 93, y0: 539, x1: 92, y1: 534, cx0: 92, cy0: 538, cx1: 92, cy1: 536) > BezierCurve(x0: 92, y0: 534, x1: 93, y1: 530, cx0: 92, cy0: 533, cx1: 92, cy1: 531) > BezierCurve(x0: 94, y0: 531, x1: 93, y1: 534, cx0: 93, cy0: 532, cx1: 93, cy1: 533) > BezierCurve(x0: 93, y0: 534, x1: 94, y1: 538, cx0: 93, cy0: 536, cx1: 93, cy1: 537))
Shape: rgb(42,42,42) Circle(x: 95, y: 531, r: 3)
Clip: Path (BezierCurve(x0: 297, y0: 534, x1: 302, y1: 529, cx0: 297, cy0: 531, cx1: 299, cy1: 529) > BezierCurve(x0: 302, y0: 529, x1: 307, y1: 534, cx0: 305, cy0: 529, cx1: 307, cy1: 531) > BezierCurve(x0: 307, y0: 534, x1: 302, y1: 540, cx0: 307, cy0: 537, cx1: 305, cy1: 540) > BezierCurve(x0: 302, y0: 540, x1: 297, y1: 534, cx0: 299, cy0: 540, cx1: 297, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 297, y0: 530, x1: 302, y1: 528, cx0: 299, cy0: 529, cx1: 300, cy1: 528) > BezierCurve(x0: 302, y0: 528, x1: 307, y1: 530, cx0: 304, cy0: 528, cx1: 305, cy1: 529) > BezierCurve(x0: 306, y0: 531, x1: 302, y1: 529, cx0: 305, cy0: 530, cx1: 303, cy1: 529) > BezierCurve(x0: 302, y0: 529, x1: 298, y1: 531, cx0: 301, cy0: 529, cx1: 299, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 307, y0: 530, x1: 308, y1: 534, cx0: 308, cy0: 531, cx1: 308, cy1: 533) > BezierCurve(x0: 308, y0: 534, x1: 307, y1: 539, cx0: 308, cy0: 536, cx1: 308, cy1: 538) > BezierCurve(x0: 306, y0: 538, x1: 307, y1: 534, cx0: 307, cy0: 537, cx1: 307, cy1: 536) > BezierCurve(x0: 307, y0: 534, x1: 306, y1: 531, cx0: 307, cy0: 533, cx1: 307, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 307, y0: 539, x1: 302, y1: 541, cx0: 305, cy0: 540, cx1: 304, cy1: 541) > BezierCurve(x0: 302, y0: 541, x1: 297, y1: 539, cx0: 300, cy0: 541, cx1: 299, cy1: 540) > BezierCurve(x0: 298, y0: 538, x1: 302, y1: 540, cx0: 299, cy0: 539, cx1: 301, cy1: 540) > BezierCurve(x0: 302, y0: 540, x1: 306, y1: 538, cx0: 303, cy0: 540, cx1: 305, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 297, y0: 539, x1: 296, y1: 534, cx0: 296, cy0: 538, cx1: 296, cy1: 536) > BezierCurve(x0: 296, y0: 534, x1: 297, y1: 530, cx0: 296, cy0: 533, cx1: 296, cy1: 531) > BezierCurve(x0: 298, y0: 531, x1: 297, y1: 534, cx0: 297, cy0: 532, cx1: 297, cy1: 533) > BezierCurve(x0: 297, y0: 534, x1: 298, y1: 538, cx0: 297, cy0: 536, cx1: 297, cy1: 537))
Clip: Path (BezierCurve(x0: 427, y0: 441, x1: 526, y1: 342, cx0: 427, cy0: 386, cx1: 471, cy1: 342) > BezierCurve(x0: 526, y0: 342, x1: 625, y1: 441, cx0: 581, cy0: 342, cx1: 625, cy1: 386) > BezierCurve(x0: 625, y0: 441, x1: 526, y1: 540, cx0: 625, cy0: 495, cx1: 581, cy1: 540) > BezierCurve(x0: 526, y0: 540, x1: 427, y1: 441, cx0: 471, cy0: 540, cx1: 427, cy1: 495))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 455, y0: 370, x1: 526, y1: 341, cx0: 473, cy0: 352, cx1: 498, cy1: 341) > BezierCurve(x0: 526, y0: 341, x1: 597, y1: 370, cx0: 554, cy0: 341, cx1: 579, cy1: 352) > BezierCurve(x0: 596, y0: 371, x1: 526, y1: 342, cx0: 578, cy0: 353, cx1: 553, cy1: 342) > BezierCurve(x0: 526, y0: 342, x1: 456, y1: 371, cx0: 499, cy0: 342, cx1: 474, cy1: 353))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 597, y0: 370, x1: 626, y1: 441, cx0: 615, cy0: 388, cx1: 626, cy1: 413) > BezierCurve(x0: 626, y0: 441, x1: 597, y1: 512, cx0: 626, cy0: 468, cx1: 615, cy1: 493) > BezierCurve(x0: 596, y0: 511, x1: 625, y1: 441, cx0: 614, cy0: 493, cx1: 625, cy1: 468) > BezierCurve(x0: 625, y0: 441, x1: 596, y1: 371, cx0: 625, cy0: 413, cx1: 614, cy1: 389))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 597, y0: 512, x1: 526, y1: 541, cx0: 579, cy0: 530, cx1: 554, cy1: 541) > BezierCurve(x0: 526, y0: 541, x1: 455, y1: 512, cx0: 498, cy0: 541, cx1: 473, cy1: 530) > BezierCurve(x0: 456, y0: 511, x1: 526, y1: 540, cx0: 474, cy0: 529, cx1: 499, cy1: 540) > BezierCurve(x0: 526, y0: 540, x1: 596, y1: 511, cx0: 553, cy0: 540, cx1: 578, cy1: 529))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 455, y0: 512, x1: 426, y1: 441, cx0: 437, cy0: 493, cx1: 426, cy1: 468) > BezierCurve(x0: 426, y0: 441, x1: 455, y1: 370, cx0: 426, cy0: 413, cx1: 437, cy1: 388) > BezierCurve(x0: 456, y0: 371, x1: 427, y1: 441, cx0: 438, cy0: 389, cx1: 427, cy1: 413) > BezierCurve(x0: 427, y0: 441, x1: 456, y1: 511, cx0: 427, cy0: 468, cx1: 438, cy1: 493))
Clip: Path (BezierCurve(x0: 19, y0: 661, x1: 118, y1: 562, cx0: 19, cy0: 606, cx1: 63, cy1: 562) > BezierCurve(x0: 118, y0: 562, x1: 217, y1: 661, cx0: 173, cy0: 562, cx1: 217, cy1: 606) > BezierCurve(x0: 217, y0: 661, x1: 118, y1: 760, cx0: 217, cy0: 715, cx1: 173, cy1: 760) > BezierCurve(x0: 118, y0: 760, x1: 19, y1: 661, cx0: 63, cy0: 760, cx1: 19, cy1: 715))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 47, y0: 590, x1: 118, y1: 561, cx0: 65, cy0: 572, cx1: 90, cy1: 561) > BezierCurve(x0: 118, y0: 561, x1: 189, y1: 590, cx0: 146, cy0: 561, cx1: 171, cy1: 572) > BezierCurve(x0: 188, y0: 591, x1: 118, y1: 562, cx0: 170, cy0: 573, cx1: 145, cy1: 562) > BezierCurve(x0: 118, y0: 562, x1: 48, y1: 591, cx0: 91, cy0: 562, cx1: 66, cy1: 573))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 189, y0: 590, x1: 218, y1: 661, cx0: 207, cy0: 608, cx1: 218, cy1: 633) > BezierCurve(x0: 218, y0: 661, x1: 189, y1: 732, cx0: 218, cy0: 688, cx1: 207, cy1: 713) > BezierCurve(x0: 188, y0: 731, x1: 217, y1: 661, cx0: 206, cy0: 713, cx1: 217, cy1: 688) > BezierCurve(x0: 217, y0: 661, x1: 188, y1: 591, cx0: 217, cy0: 633, cx1: 206, cy1: 609))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 189, y0: 732, x1: 118, y1: 761, cx0: 171, cy0: 750, cx1: 146, cy1: 761) > BezierCurve(x0: 118, y0: 761, x1: 47, y1: 732, cx0: 90, cy0: 761, cx1: 65, cy1: 750) > BezierCurve(x0: 48, y0: 731, x1: 118, y1: 760, cx0: 66, cy0: 749, cx1: 91, cy1: 760) > BezierCurve(x0: 118, y0: 760, x1: 188, y1: 731, cx0: 145, cy0: 760, cx1: 170, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 47, y0: 732, x1: 18, y1: 661, cx0: 29, cy0: 713, cx1: 18, cy1: 688) > BezierCurve(x0: 18, y0: 661, x1: 47, y1: 590, cx0: 18, cy0: 633, cx1: 29, cy1: 608) > BezierCurve(x0: 48, y0: 591, x1: 19, y1: 661, cx0: 30, cy0: 609, cx1: 19, cy1: 633) > BezierCurve(x0: 19, y0: 661, x1: 48, y1: 731, cx0: 19, cy0: 688, cx1: 30, cy1: 713))
Shape: rgb(42,42,42) Circle(x: 68, y: 611, r: 50)
Clip: Path (BezierCurve(x0: 243, y0: 751, x1: 245, y1: 749, cx0: 243, cy0: 750, cx1: 244, cy1: 749) > BezierCurve(x0: 252, y0: 749, x1: 254, y1: 751, cx0: 253, cy0: 749, cx1: 254, cy1: 750) > BezierCurve(x0: 254, y0: 758, x1: 252, y1: 760, cx0: 254, cy0: 759, cx1: 253, cy1: 760) > BezierCurve(x0: 245, y0: 760, x1: 243, y1: 758, cx0: 244, cy0: 760, cx1: 243, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 243, y0: 749, x1: 245, y1: 748, cx0: 243, cy0: 748, cx1: 244, cy1: 748) > BezierCurve(x0: 252, y0: 748, x1: 254, y1: 749, cx0: 253, cy0: 748, cx1: 253, cy1: 748) > BezierCurve(x0: 253, y0: 750, x1: 252, y1: 749, cx0: 253, cy0: 749, cx1: 252, cy1: 749) > BezierCurve(x0: 245, y0: 749, x1: 244, y1: 750, cx0: 244, cy0: 749, cx1: 244, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 254, y0: 749, x1: 255, y1: 751, cx0: 254, cy0: 749, cx1: 255, cy1: 750) > BezierCurve(x0: 255, y0: 758, x1: 254, y1: 760, cx0: 255, cy0: 759, cx1: 254, cy1: 759) > BezierCurve(x0: 253, y0: 759, x1: 254, y1: 758, cx0: 254, cy0: 759, cx1: 254, cy1: 758) > BezierCurve(x0: 254, y0: 751, x1: 253, y1: 750, cx0: 254, cy0: 750, cx1: 254, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 254, y0: 760, x1: 252, y1: 761, cx0: 253, cy0: 760, cx1: 253, cy1: 761) > BezierCurve(x0: 245, y0: 761, x1: 243, y1: 760, cx0: 244, cy0: 761, cx1: 243, cy1: 760) > BezierCurve(x0: 244, y0: 759, x1: 245, y1: 760, cx0: 244, cy0: 760, cx1: 244, cy1: 760) > BezierCurve(x0: 252, y0: 760, x1: 253, y1: 759, cx0: 252, cy0: 760, cx1: 253, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 243, y0: 760, x1: 242, y1: 758, cx0: 242, cy0: 759, cx1: 242, cy1: 759) > BezierCurve(x0: 242, y0: 751, x1: 243, y1: 749, cx0: 242, cy0: 750, cx1: 242, cy1: 749) > BezierCurve(x0: 244, y0: 750, x1: 243, y1: 751, cx0: 243, cy0: 750, cx1: 243, cy1: 750) > BezierCurve(x0: 243, y0: 758, x1: 244, y1: 759, cx0: 243, cy0: 758, cx1: 243, cy1: 759))
Clip: Path (BezierCurve(x0: 317, y0: 751, x1: 319, y1: 749, cx0: 317, cy0: 750, cx1: 317, cy1: 749) > BezierCurve(x0: 325, y0: 749, x1: 327, y1: 751, cx0: 327, cy0: 749, cx1: 327, cy1: 750) > BezierCurve(x0: 327, y0: 758, x1: 325, y1: 760, cx0: 327, cy0: 759, cx1: 327, cy1: 760) > BezierCurve(x0: 319, y0: 760, x1: 317, y1: 758, cx0: 317, cy0: 760, cx1: 317, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 316, y0: 749, x1: 319, y1: 748, cx0: 317, cy0: 748, cx1: 318, cy1: 748) > BezierCurve(x0: 325, y0: 748, x1: 328, y1: 749, cx0: 326, cy0: 748, cx1: 327, cy1: 748) > BezierCurve(x0: 327, y0: 750, x1: 325, y1: 749, cx0: 326, cy0: 749, cx1: 326, cy1: 749) > BezierCurve(x0: 319, y0: 749, x1: 317, y1: 750, cx0: 318, cy0: 749, cx1: 318, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 328, y0: 749, x1: 328, y1: 751, cx0: 328, cy0: 749, cx1: 328, cy1: 750) > BezierCurve(x0: 328, y0: 758, x1: 328, y1: 760, cx0: 328, cy0: 759, cx1: 328, cy1: 759) > BezierCurve(x0: 327, y0: 759, x1: 327, y1: 758, cx0: 327, cy0: 759, cx1: 327, cy1: 758) > BezierCurve(x0: 327, y0: 751, x1: 327, y1: 750, cx0: 327, cy0: 750, cx1: 327, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 328, y0: 760, x1: 325, y1: 761, cx0: 327, cy0: 760, cx1: 326, cy1: 761) > BezierCurve(x0: 319, y0: 761, x1: 316, y1: 760, cx0: 318, cy0: 761, cx1: 317, cy1: 760) > BezierCurve(x0: 317, y0: 759, x1: 319, y1: 760, cx0: 318, cy0: 760, cx1: 318, cy1: 760) > BezierCurve(x0: 325, y0: 760, x1: 327, y1: 759, cx0: 326, cy0: 760, cx1: 326, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 316, y0: 760, x1: 316, y1: 758, cx0: 316, cy0: 759, cx1: 316, cy1: 759) > BezierCurve(x0: 316, y0: 751, x1: 316, y1: 749, cx0: 316, cy0: 750, cx1: 316, cy1: 749) > BezierCurve(x0: 317, y0: 750, x1: 317, y1: 751, cx0: 317, cy0: 750, cx1: 317, cy1: 750) > BezierCurve(x0: 317, y0: 758, x1: 317, y1: 759, cx0: 317, cy0: 758, cx1: 317, cy1: 759))
Text: rgb(42,42,42) normal normal 400 9.800000190734863px Arial
[318, 760]: ✔
Clip: Path (BezierCurve(x0: 521, y0: 751, x1: 523, y1: 749, cx0: 521, cy0: 750, cx1: 521, cy1: 749) > BezierCurve(x0: 529, y0: 749, x1: 531, y1: 751, cx0: 531, cy0: 749, cx1: 531, cy1: 750) > BezierCurve(x0: 531, y0: 758, x1: 529, y1: 760, cx0: 531, cy0: 759, cx1: 531, cy1: 760) > BezierCurve(x0: 523, y0: 760, x1: 521, y1: 758, cx0: 521, cy0: 760, cx1: 521, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 520, y0: 749, x1: 523, y1: 748, cx0: 521, cy0: 748, cx1: 522, cy1: 748) > BezierCurve(x0: 529, y0: 748, x1: 532, y1: 749, cx0: 530, cy0: 748, cx1: 531, cy1: 748) > BezierCurve(x0: 531, y0: 750, x1: 529, y1: 749, cx0: 530, cy0: 749, cx1: 530, cy1: 749) > BezierCurve(x0: 523, y0: 749, x1: 521, y1: 750, cx0: 522, cy0: 749, cx1: 522, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 532, y0: 749, x1: 532, y1: 751, cx0: 532, cy0: 749, cx1: 532, cy1: 750) > BezierCurve(x0: 532, y0: 758, x1: 532, y1: 760, cx0: 532, cy0: 759, cx1: 532, cy1: 759) > BezierCurve(x0: 531, y0: 759, x1: 531, y1: 758, cx0: 531, cy0: 759, cx1: 531, cy1: 758) > BezierCurve(x0: 531, y0: 751, x1: 531, y1: 750, cx0: 531, cy0: 750, cx1: 531, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 532, y0: 760, x1: 529, y1: 761, cx0: 531, cy0: 760, cx1: 530, cy1: 761) > BezierCurve(x0: 523, y0: 761, x1: 520, y1: 760, cx0: 522, cy0: 761, cx1: 521, cy1: 760) > BezierCurve(x0: 521, y0: 759, x1: 523, y1: 760, cx0: 522, cy0: 760, cx1: 522, cy1: 760) > BezierCurve(x0: 529, y0: 760, x1: 531, y1: 759, cx0: 530, cy0: 760, cx1: 530, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 520, y0: 760, x1: 520, y1: 758, cx0: 520, cy0: 759, cx1: 520, cy1: 759) > BezierCurve(x0: 520, y0: 751, x1: 520, y1: 749, cx0: 520, cy0: 750, cx1: 520, cy1: 749) > BezierCurve(x0: 521, y0: 750, x1: 521, y1: 751, cx0: 521, cy0: 750, cx1: 521, cy1: 750) > BezierCurve(x0: 521, y0: 758, x1: 521, y1: 759, cx0: 521, cy0: 758, cx1: 521, cy1: 759))
Clip: Path (BezierCurve(x0: 19, y0: 784, x1: 21, y1: 782, cx0: 19, cy0: 783, cx1: 20, cy1: 782) > BezierCurve(x0: 215, y0: 782, x1: 217, y1: 784, cx0: 216, cy0: 782, cx1: 217, cy1: 783) > BezierCurve(x0: 217, y0: 978, x1: 215, y1: 980, cx0: 217, cy0: 979, cx1: 216, cy1: 980) > BezierCurve(x0: 21, y0: 980, x1: 19, y1: 978, cx0: 20, cy0: 980, cx1: 19, cy1: 979))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 19, y0: 782, x1: 21, y1: 781, cx0: 19, cy0: 781, cx1: 20, cy1: 781) > BezierCurve(x0: 215, y0: 781, x1: 217, y1: 782, cx0: 216, cy0: 781, cx1: 217, cy1: 781) > BezierCurve(x0: 216, y0: 782, x1: 215, y1: 782, cx0: 216, cy0: 782, cx1: 216, cy1: 782) > BezierCurve(x0: 21, y0: 782, x1: 20, y1: 782, cx0: 20, cy0: 782, cx1: 20, cy1: 782))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 217, y0: 782, x1: 218, y1: 784, cx0: 218, cy0: 782, cx1: 218, cy1: 783) > BezierCurve(x0: 218, y0: 978, x1: 217, y1: 980, cx0: 218, cy0: 979, cx1: 218, cy1: 979) > BezierCurve(x0: 216, y0: 979, x1: 217, y1: 978, cx0: 217, cy0: 979, cx1: 217, cy1: 978) > BezierCurve(x0: 217, y0: 784, x1: 216, y1: 782, cx0: 217, cy0: 783, cx1: 217, cy1: 783))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 217, y0: 980, x1: 215, y1: 981, cx0: 217, cy0: 980, cx1: 216, cy1: 981) > BezierCurve(x0: 21, y0: 981, x1: 19, y1: 980, cx0: 20, cy0: 981, cx1: 19, cy1: 980) > BezierCurve(x0: 20, y0: 979, x1: 21, y1: 980, cx0: 20, cy0: 980, cx1: 20, cy1: 980) > BezierCurve(x0: 215, y0: 980, x1: 216, y1: 979, cx0: 216, cy0: 980, cx1: 216, cy1: 980))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 19, y0: 980, x1: 18, y1: 978, cx0: 18, cy0: 979, cx1: 18, cy1: 979) > BezierCurve(x0: 18, y0: 784, x1: 19, y1: 782, cx0: 18, cy0: 783, cx1: 18, cy1: 782) > BezierCurve(x0: 20, y0: 782, x1: 19, y1: 784, cx0: 19, cy0: 783, cx1: 19, cy1: 783) > BezierCurve(x0: 19, y0: 978, x1: 20, y1: 979, cx0: 19, cy0: 978, cx1: 19, cy1: 979))
Clip: Path (BezierCurve(x0: 243, y0: 784, x1: 245, y1: 782, cx0: 243, cy0: 783, cx1: 244, cy1: 782) > BezierCurve(x0: 439, y0: 782, x1: 441, y1: 784, cx0: 440, cy0: 782, cx1: 441, cy1: 783) > BezierCurve(x0: 441, y0: 978, x1: 439, y1: 980, cx0: 441, cy0: 979, cx1: 440, cy1: 980) > BezierCurve(x0: 245, y0: 980, x1: 243, y1: 978, cx0: 244, cy0: 980, cx1: 243, cy1: 979))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 243, y0: 782, x1: 245, y1: 781, cx0: 243, cy0: 781, cx1: 244, cy1: 781) > BezierCurve(x0: 439, y0: 781, x1: 441, y1: 782, cx0: 440, cy0: 781, cx1: 441, cy1: 781) > BezierCurve(x0: 440, y0: 782, x1: 439, y1: 782, cx0: 440, cy0: 782, cx1: 440, cy1: 782) > BezierCurve(x0: 245, y0: 782, x1: 244, y1: 782, cx0: 244, cy0: 782, cx1: 244, cy1: 782))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 441, y0: 782, x1: 442, y1: 784, cx0: 442, cy0: 782, cx1: 442, cy1: 783) > BezierCurve(x0: 442, y0: 978, x1: 441, y1: 980, cx0: 442, cy0: 979, cx1: 442, cy1: 979) > BezierCurve(x0: 440, y0: 979, x1: 441, y1: 978, cx0: 441, cy0: 979, cx1: 441, cy1: 978) > BezierCurve(x0: 441, y0: 784, x1: 440, y1: 782, cx0: 441, cy0: 783, cx1: 441, cy1: 783))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 441, y0: 980, x1: 439, y1: 981, cx0: 441, cy0: 980, cx1: 440, cy1: 981) > BezierCurve(x0: 245, y0: 981, x1: 243, y1: 980, cx0: 244, cy0: 981, cx1: 243, cy1: 980) > BezierCurve(x0: 244, y0: 979, x1: 245, y1: 980, cx0: 244, cy0: 980, cx1: 244, cy1: 980) > BezierCurve(x0: 439, y0: 980, x1: 440, y1: 979, cx0: 440, cy0: 980, cx1: 440, cy1: 980))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 243, y0: 980, x1: 242, y1: 978, cx0: 242, cy0: 979, cx1: 242, cy1: 979) > BezierCurve(x0: 242, y0: 784, x1: 243, y1: 782, cx0: 242, cy0: 783, cx1: 242, cy1: 782) > BezierCurve(x0: 244, y0: 782, x1: 243, y1: 784, cx0: 243, cy0: 783, cx1: 243, cy1: 783) > BezierCurve(x0: 243, y0: 978, x1: 244, y1: 979, cx0: 243, cy0: 978, cx1: 243, cy1: 979))
Text: rgb(42,42,42) normal normal 400 197px Arial
[275, 980]: ✔
Transform: (61, 534) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 56, y0: 534, x1: 61, y1: 529, cx0: 56, cy0: 531, cx1: 58, cy1: 529) > BezierCurve(x0: 61, y0: 529, x1: 67, y1: 534, cx0: 64, cy0: 529, cx1: 67, cy1: 531) > BezierCurve(x0: 67, y0: 534, x1: 61, y1: 540, cx0: 67, cy0: 537, cx1: 64, cy1: 540) > BezierCurve(x0: 61, y0: 540, x1: 56, y1: 534, cx0: 58, cy0: 540, cx1: 56, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 57, y0: 530, x1: 61, y1: 528, cx0: 58, cy0: 529, cx1: 59, cy1: 528) > BezierCurve(x0: 61, y0: 528, x1: 66, y1: 530, cx0: 63, cy0: 528, cx1: 65, cy1: 529) > BezierCurve(x0: 65, y0: 531, x1: 61, y1: 529, cx0: 64, cy0: 530, cx1: 63, cy1: 529) > BezierCurve(x0: 61, y0: 529, x1: 57, y1: 531, cx0: 60, cy0: 529, cx1: 58, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 66, y0: 530, x1: 68, y1: 534, cx0: 67, cy0: 531, cx1: 68, cy1: 533) > BezierCurve(x0: 68, y0: 534, x1: 66, y1: 539, cx0: 68, cy0: 536, cx1: 67, cy1: 538) > BezierCurve(x0: 65, y0: 538, x1: 67, y1: 534, cx0: 66, cy0: 537, cx1: 67, cy1: 536) > BezierCurve(x0: 67, y0: 534, x1: 65, y1: 531, cx0: 67, cy0: 533, cx1: 66, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 66, y0: 539, x1: 61, y1: 541, cx0: 65, cy0: 540, cx1: 63, cy1: 541) > BezierCurve(x0: 61, y0: 541, x1: 57, y1: 539, cx0: 59, cy0: 541, cx1: 58, cy1: 540) > BezierCurve(x0: 57, y0: 538, x1: 61, y1: 540, cx0: 58, cy0: 539, cx1: 60, cy1: 540) > BezierCurve(x0: 61, y0: 540, x1: 65, y1: 538, cx0: 63, cy0: 540, cx1: 64, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 57, y0: 539, x1: 55, y1: 534, cx0: 56, cy0: 538, cx1: 55, cy1: 536) > BezierCurve(x0: 55, y0: 534, x1: 57, y1: 530, cx0: 55, cy0: 533, cx1: 56, cy1: 531) > BezierCurve(x0: 57, y0: 531, x1: 56, y1: 534, cx0: 56, cy0: 532, cx1: 56, cy1: 533) > BezierCurve(x0: 56, y0: 534, x1: 57, y1: 538, cx0: 56, cy0: 536, cx1: 56, cy1: 537))
Transform: (135, 534) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 129, y0: 534, x1: 135, y1: 529, cx0: 129, cy0: 531, cx1: 132, cy1: 529) > BezierCurve(x0: 135, y0: 529, x1: 140, y1: 534, cx0: 138, cy0: 529, cx1: 140, cy1: 531) > BezierCurve(x0: 140, y0: 534, x1: 135, y1: 540, cx0: 140, cy0: 537, cx1: 138, cy1: 540) > BezierCurve(x0: 135, y0: 540, x1: 129, y1: 534, cx0: 132, cy0: 540, cx1: 129, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 130, y0: 530, x1: 135, y1: 528, cx0: 131, cy0: 529, cx1: 133, cy1: 528) > BezierCurve(x0: 135, y0: 528, x1: 139, y1: 530, cx0: 137, cy0: 528, cx1: 138, cy1: 529) > BezierCurve(x0: 139, y0: 531, x1: 135, y1: 529, cx0: 138, cy0: 530, cx1: 136, cy1: 529) > BezierCurve(x0: 135, y0: 529, x1: 131, y1: 531, cx0: 133, cy0: 529, cx1: 132, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 139, y0: 530, x1: 141, y1: 534, cx0: 140, cy0: 531, cx1: 141, cy1: 533) > BezierCurve(x0: 141, y0: 534, x1: 139, y1: 539, cx0: 141, cy0: 536, cx1: 140, cy1: 538) > BezierCurve(x0: 139, y0: 538, x1: 140, y1: 534, cx0: 140, cy0: 537, cx1: 140, cy1: 536) > BezierCurve(x0: 140, y0: 534, x1: 139, y1: 531, cx0: 140, cy0: 533, cx1: 140, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 139, y0: 539, x1: 135, y1: 541, cx0: 138, cy0: 540, cx1: 137, cy1: 541) > BezierCurve(x0: 135, y0: 541, x1: 130, y1: 539, cx0: 133, cy0: 541, cx1: 131, cy1: 540) > BezierCurve(x0: 131, y0: 538, x1: 135, y1: 540, cx0: 132, cy0: 539, cx1: 133, cy1: 540) > BezierCurve(x0: 135, y0: 540, x1: 139, y1: 538, cx0: 136, cy0: 540, cx1: 138, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 130, y0: 539, x1: 128, y1: 534, cx0: 129, cy0: 538, cx1: 128, cy1: 536) > BezierCurve(x0: 128, y0: 534, x1: 130, y1: 530, cx0: 128, cy0: 533, cx1: 129, cy1: 531) > BezierCurve(x0: 131, y0: 531, x1: 129, y1: 534, cx0: 130, cy0: 532, cx1: 129, cy1: 533) > BezierCurve(x0: 129, y0: 534, x1: 131, y1: 538, cx0: 129, cy0: 536, cx1: 130, cy1: 537))
Shape: rgb(42,42,42) Circle(x: 132, y: 531, r: 3)
Transform: (172, 534) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 166, y0: 534, x1: 172, y1: 529, cx0: 166, cy0: 531, cx1: 169, cy1: 529) > BezierCurve(x0: 172, y0: 529, x1: 177, y1: 534, cx0: 175, cy0: 529, cx1: 177, cy1: 531) > BezierCurve(x0: 177, y0: 534, x1: 172, y1: 540, cx0: 177, cy0: 537, cx1: 175, cy1: 540) > BezierCurve(x0: 172, y0: 540, x1: 166, y1: 534, cx0: 169, cy0: 540, cx1: 166, cy1: 537))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 167, y0: 530, x1: 172, y1: 528, cx0: 168, cy0: 529, cx1: 170, cy1: 528) > BezierCurve(x0: 172, y0: 528, x1: 176, y1: 530, cx0: 173, cy0: 528, cx1: 175, cy1: 529) > BezierCurve(x0: 175, y0: 531, x1: 172, y1: 529, cx0: 174, cy0: 530, cx1: 173, cy1: 529) > BezierCurve(x0: 172, y0: 529, x1: 168, y1: 531, cx0: 170, cy0: 529, cx1: 169, cy1: 530))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 176, y0: 530, x1: 178, y1: 534, cx0: 177, cy0: 531, cx1: 178, cy1: 533) > BezierCurve(x0: 178, y0: 534, x1: 176, y1: 539, cx0: 178, cy0: 536, cx1: 177, cy1: 538) > BezierCurve(x0: 175, y0: 538, x1: 177, y1: 534, cx0: 176, cy0: 537, cx1: 177, cy1: 536) > BezierCurve(x0: 177, y0: 534, x1: 175, y1: 531, cx0: 177, cy0: 533, cx1: 176, cy1: 532))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 176, y0: 539, x1: 172, y1: 541, cx0: 175, cy0: 540, cx1: 173, cy1: 541) > BezierCurve(x0: 172, y0: 541, x1: 167, y1: 539, cx0: 170, cy0: 541, cx1: 168, cy1: 540) > BezierCurve(x0: 168, y0: 538, x1: 172, y1: 540, cx0: 169, cy0: 539, cx1: 170, cy1: 540) > BezierCurve(x0: 172, y0: 540, x1: 175, y1: 538, cx0: 173, cy0: 540, cx1: 174, cy1: 539))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 167, y0: 539, x1: 165, y1: 534, cx0: 166, cy0: 538, cx1: 165, cy1: 536) > BezierCurve(x0: 165, y0: 534, x1: 167, y1: 530, cx0: 165, cy0: 533, cx1: 166, cy1: 531) > BezierCurve(x0: 168, y0: 531, x1: 166, y1: 534, cx0: 167, cy0: 532, cx1: 166, cy1: 533) > BezierCurve(x0: 166, y0: 534, x1: 168, y1: 538, cx0: 166, cy0: 536, cx1: 167, cy1: 537))
Transform: (285, 754) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 280, y0: 751, x1: 282, y1: 749, cx0: 280, cy0: 750, cx1: 281, cy1: 749) > BezierCurve(x0: 289, y0: 749, x1: 291, y1: 751, cx0: 290, cy0: 749, cx1: 291, cy1: 750) > BezierCurve(x0: 291, y0: 758, x1: 289, y1: 760, cx0: 291, cy0: 759, cx1: 290, cy1: 760) > BezierCurve(x0: 282, y0: 760, x1: 280, y1: 758, cx0: 281, cy0: 760, cx1: 280, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 280, y0: 749, x1: 282, y1: 748, cx0: 280, cy0: 748, cx1: 281, cy1: 748) > BezierCurve(x0: 289, y0: 748, x1: 291, y1: 749, cx0: 289, cy0: 748, cx1: 290, cy1: 748) > BezierCurve(x0: 290, y0: 750, x1: 289, y1: 749, cx0: 290, cy0: 749, cx1: 289, cy1: 749) > BezierCurve(x0: 282, y0: 749, x1: 280, y1: 750, cx0: 281, cy0: 749, cx1: 281, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 291, y0: 749, x1: 292, y1: 751, cx0: 291, cy0: 749, cx1: 292, cy1: 750) > BezierCurve(x0: 292, y0: 758, x1: 291, y1: 760, cx0: 292, cy0: 759, cx1: 291, cy1: 759) > BezierCurve(x0: 290, y0: 759, x1: 291, y1: 758, cx0: 290, cy0: 759, cx1: 291, cy1: 758) > BezierCurve(x0: 291, y0: 751, x1: 290, y1: 750, cx0: 291, cy0: 750, cx1: 290, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 291, y0: 760, x1: 289, y1: 761, cx0: 290, cy0: 760, cx1: 289, cy1: 761) > BezierCurve(x0: 282, y0: 761, x1: 280, y1: 760, cx0: 281, cy0: 761, cx1: 280, cy1: 760) > BezierCurve(x0: 280, y0: 759, x1: 282, y1: 760, cx0: 281, cy0: 760, cx1: 281, cy1: 760) > BezierCurve(x0: 289, y0: 760, x1: 290, y1: 759, cx0: 289, cy0: 760, cx1: 290, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 280, y0: 760, x1: 279, y1: 758, cx0: 279, cy0: 759, cx1: 279, cy1: 759) > BezierCurve(x0: 279, y0: 751, x1: 280, y1: 749, cx0: 279, cy0: 750, cx1: 279, cy1: 749) > BezierCurve(x0: 280, y0: 750, x1: 280, y1: 751, cx0: 280, cy0: 750, cx1: 280, cy1: 750) > BezierCurve(x0: 280, y0: 758, x1: 280, y1: 759, cx0: 280, cy0: 758, cx1: 280, cy1: 759))
Transform: (359, 754) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 353, y0: 751, x1: 355, y1: 749, cx0: 353, cy0: 750, cx1: 354, cy1: 749) > BezierCurve(x0: 362, y0: 749, x1: 364, y1: 751, cx0: 363, cy0: 749, cx1: 364, cy1: 750) > BezierCurve(x0: 364, y0: 758, x1: 362, y1: 760, cx0: 364, cy0: 759, cx1: 363, cy1: 760) > BezierCurve(x0: 355, y0: 760, x1: 353, y1: 758, cx0: 354, cy0: 760, cx1: 353, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 353, y0: 749, x1: 355, y1: 748, cx0: 354, cy0: 748, cx1: 355, cy1: 748) > BezierCurve(x0: 362, y0: 748, x1: 364, y1: 749, cx0: 363, cy0: 748, cx1: 364, cy1: 748) > BezierCurve(x0: 364, y0: 750, x1: 362, y1: 749, cx0: 363, cy0: 749, cx1: 363, cy1: 749) > BezierCurve(x0: 355, y0: 749, x1: 354, y1: 750, cx0: 355, cy0: 749, cx1: 354, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 364, y0: 749, x1: 365, y1: 751, cx0: 365, cy0: 749, cx1: 365, cy1: 750) > BezierCurve(x0: 365, y0: 758, x1: 364, y1: 760, cx0: 365, cy0: 759, cx1: 365, cy1: 759) > BezierCurve(x0: 364, y0: 759, x1: 364, y1: 758, cx0: 364, cy0: 759, cx1: 364, cy1: 758) > BezierCurve(x0: 364, y0: 751, x1: 364, y1: 750, cx0: 364, cy0: 750, cx1: 364, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 364, y0: 760, x1: 362, y1: 761, cx0: 364, cy0: 760, cx1: 363, cy1: 761) > BezierCurve(x0: 355, y0: 761, x1: 353, y1: 760, cx0: 355, cy0: 761, cx1: 354, cy1: 760) > BezierCurve(x0: 354, y0: 759, x1: 355, y1: 760, cx0: 354, cy0: 760, cx1: 355, cy1: 760) > BezierCurve(x0: 362, y0: 760, x1: 364, y1: 759, cx0: 363, cy0: 760, cx1: 363, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 353, y0: 760, x1: 352, y1: 758, cx0: 353, cy0: 759, cx1: 352, cy1: 759) > BezierCurve(x0: 352, y0: 751, x1: 353, y1: 749, cx0: 352, cy0: 750, cx1: 353, cy1: 749) > BezierCurve(x0: 354, y0: 750, x1: 353, y1: 751, cx0: 354, cy0: 750, cx1: 353, cy1: 750) > BezierCurve(x0: 353, y0: 758, x1: 354, y1: 759, cx0: 353, cy0: 758, cx1: 354, cy1: 759))
Text: rgb(42,42,42) normal normal 400 9.800000190734863px Arial
[355, 760]: ✔
Transform: (396, 754) [3, 0, 0, 3, 0, 0]
Clip: Path (BezierCurve(x0: 390, y0: 751, x1: 392, y1: 749, cx0: 390, cy0: 750, cx1: 391, cy1: 749) > BezierCurve(x0: 399, y0: 749, x1: 401, y1: 751, cx0: 400, cy0: 749, cx1: 401, cy1: 750) > BezierCurve(x0: 401, y0: 758, x1: 399, y1: 760, cx0: 401, cy0: 759, cx1: 400, cy1: 760) > BezierCurve(x0: 392, y0: 760, x1: 390, y1: 758, cx0: 391, cy0: 760, cx1: 390, cy1: 759))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 390, y0: 749, x1: 392, y1: 748, cx0: 391, cy0: 748, cx1: 391, cy1: 748) > BezierCurve(x0: 399, y0: 748, x1: 401, y1: 749, cx0: 400, cy0: 748, cx1: 401, cy1: 748) > BezierCurve(x0: 400, y0: 750, x1: 399, y1: 749, cx0: 400, cy0: 749, cx1: 400, cy1: 749) > BezierCurve(x0: 392, y0: 749, x1: 391, y1: 750, cx0: 392, cy0: 749, cx1: 391, cy1: 749))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 401, y0: 749, x1: 402, y1: 751, cx0: 402, cy0: 749, cx1: 402, cy1: 750) > BezierCurve(x0: 402, y0: 758, x1: 401, y1: 760, cx0: 402, cy0: 759, cx1: 402, cy1: 759) > BezierCurve(x0: 400, y0: 759, x1: 401, y1: 758, cx0: 401, cy0: 759, cx1: 401, cy1: 758) > BezierCurve(x0: 401, y0: 751, x1: 400, y1: 750, cx0: 401, cy0: 750, cx1: 401, cy1: 750))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 401, y0: 760, x1: 399, y1: 761, cx0: 401, cy0: 760, cx1: 400, cy1: 761) > BezierCurve(x0: 392, y0: 761, x1: 390, y1: 760, cx0: 391, cy0: 761, cx1: 391, cy1: 760) > BezierCurve(x0: 391, y0: 759, x1: 392, y1: 760, cx0: 391, cy0: 760, cx1: 392, cy1: 760) > BezierCurve(x0: 399, y0: 760, x1: 400, y1: 759, cx0: 400, cy0: 760, cx1: 400, cy1: 760))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 390, y0: 760, x1: 389, y1: 758, cx0: 390, cy0: 759, cx1: 389, cy1: 759) > BezierCurve(x0: 389, y0: 751, x1: 390, y1: 749, cx0: 389, cy0: 750, cx1: 390, cy1: 749) > BezierCurve(x0: 391, y0: 750, x1: 390, y1: 751, cx0: 390, cy0: 750, cx1: 390, cy1: 750) > BezierCurve(x0: 390, y0: 758, x1: 391, y1: 759, cx0: 390, cy0: 758, cx1: 390, cy1: 759))
Clip: Path (BezierCurve(x0: 8, y0: 994, x1: 11, y1: 991, cx0: 8, cy0: 992, cx1: 9, cy1: 991) > BezierCurve(x0: 17, y0: 991, x1: 20, y1: 994, cx0: 19, cy0: 991, cx1: 20, cy1: 992) > BezierCurve(x0: 20, y0: 1000, x1: 17, y1: 1003, cx0: 20, cy0: 1001, cx1: 19, cy1: 1003) > BezierCurve(x0: 11, y0: 1003, x1: 8, y1: 1000, cx0: 9, cy0: 1003, cx1: 8, cy1: 1001))
Fill: rgb(222,222,222)
Shape: rgb(165,165,165) Path (BezierCurve(x0: 9, y0: 992, x1: 11, y1: 991, cx0: 9, cy0: 991, cx1: 10, cy1: 991) > BezierCurve(x0: 17, y0: 991, x1: 19, y1: 992, cx0: 18, cy0: 991, cx1: 19, cy1: 991) > BezierCurve(x0: 18, y0: 992, x1: 17, y1: 992, cx0: 18, cy0: 992, cx1: 18, cy1: 992) > BezierCurve(x0: 11, y0: 992, x1: 10, y1: 992, cx0: 10, cy0: 992, cx1: 10, cy1: 992))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 19, y0: 992, x1: 20, y1: 994, cx0: 20, cy0: 992, cx1: 20, cy1: 993) > BezierCurve(x0: 20, y0: 1000, x1: 19, y1: 1002, cx0: 20, cy0: 1001, cx1: 20, cy1: 1001) > BezierCurve(x0: 18, y0: 1001, x1: 19, y1: 1000, cx0: 19, cy0: 1001, cx1: 19, cy1: 1000) > BezierCurve(x0: 19, y0: 994, x1: 18, y1: 992, cx0: 19, cy0: 993, cx1: 19, cy1: 993))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 19, y0: 1002, x1: 17, y1: 1003, cx0: 19, cy0: 1002, cx1: 18, cy1: 1003) > BezierCurve(x0: 11, y0: 1003, x1: 9, y1: 1002, cx0: 10, cy0: 1003, cx1: 9, cy1: 1002) > BezierCurve(x0: 10, y0: 1001, x1: 11, y1: 1002, cx0: 10, cy0: 1002, cx1: 10, cy1: 1002) > BezierCurve(x0: 17, y0: 1002, x1: 18, y1: 1001, cx0: 18, cy0: 1002, cx1: 18, cy1: 1002))
Shape: rgb(165,165,165) Path (BezierCurve(x0: 9, y0: 1002, x1: 8, y1: 1000, cx0: 8, cy0: 1001, cx1: 8, cy1: 1001) > BezierCurve(x0: 8, y0: 994, x1: 9, y1: 992, cx0: 8, cy0: 993, cx1: 8, cy1: 992) > BezierCurve(x0: 10, y0: 992, x1: 9, y1: 994, cx0: 9, cy0: 993, cx1: 9, cy1: 993) > BezierCurve(x0: 9, y0: 1000, x1: 10, y1: 1001, cx0: 9, cy0: 1000, cx1: 9, cy1: 1001))

View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>iframe test</title>
<script type="text/javascript" src="../test.js"></script>
</head>
<body>
<iframe src="/tests/assets/iframe/frame1.html" width="500" height="500"></iframe>
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 512, y: 8) > Vector(x: 510, y: 10) > Vector(x: 10, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 512, y: 8) > Vector(x: 512, y: 512) > Vector(x: 510, y: 510) > Vector(x: 510, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 512, y: 512) > Vector(x: 8, y: 512) > Vector(x: 10, y: 510) > Vector(x: 510, y: 510))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 512) > Vector(x: 8, y: 8) > Vector(x: 10, y: 10) > Vector(x: 10, y: 510))

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>External content tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
<base href="http://www.google.com/" />
</head>
<body>
<h1>External image</h1>
<img src="http://www.google.com/logos/2011/gregormendel11-hp.jpg" style="border:5px solid black;" />
<h1>External image (using &lt;base&gt; href)</h1>
<img src="/logos/2011/gregormendel11-res.jpg" />
</body>
</html>

View File

@ -0,0 +1,16 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 700 32px Arial
[8, 22]: External
[143, 22]: image
Text: rgb(0,0,0) normal normal 700 32px Arial
[8, 278]: External
[143, 278]: image
[244, 278]: (using
[350, 278]: <base>
[469, 278]: href)
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 80) > Vector(x: 439, y: 80) > Vector(x: 434, y: 85) > Vector(x: 13, y: 85))
Shape: rgb(0,0,0) Path (Vector(x: 439, y: 80) > Vector(x: 439, y: 253) > Vector(x: 434, y: 248) > Vector(x: 434, y: 85))
Shape: rgb(0,0,0) Path (Vector(x: 439, y: 253) > Vector(x: 8, y: 253) > Vector(x: 13, y: 248) > Vector(x: 434, y: 248))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 253) > Vector(x: 8, y: 80) > Vector(x: 13, y: 85) > Vector(x: 13, y: 248))

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Image tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
if ($('#testcanvas')[0].getContext) {
var ctx = $('#testcanvas')[0].getContext('2d');
ctx.fillStyle = "rgb(200,0,0)";
ctx.fillRect (10, 10, 55, 50);
ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
ctx.fillRect (30, 30, 55, 50);
} else {
$('#testcanvas').remove();
}
};
</script>
</head>
<body>
<canvas id="testcanvas" style="width:700px;height:300px;"></canvas>
</body>
</html>

View File

@ -0,0 +1,5 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 708, y: 8) > Vector(x: 708, y: 308) > Vector(x: 8, y: 308))
Draw image: Canvas (source: [0, 0, 300, 150]) (destination: [0, 0, 300, 150])

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>External content tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script>
h2cOptions = {useCORS: true, proxy: null};
</script>
<script type="text/javascript" src="../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
<h1>External image (CORS)</h1>
<img src="http://localhost:8081/tests/assets/image2.jpg" />
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 700 32px Arial
[8, 22]: External
[143, 22]: image
[244, 22]: (CORS)

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Image tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
Image without src attribute, should not crash:
<img style="width:50px;height:50px;border:1px solid red;display:block;" />
Image with broken src attribute, should not crash:
<img src="404" style="width:50px;height:50px;border:1px solid red;display:block;" />
<img src="404_2" style="width:50px;height:50px;border:1px solid red;display:block;" />
</body>
</html>

View File

@ -0,0 +1,32 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: Image
[57, 8]: without
[112, 8]: src
[138, 8]: attribute,
[204, 8]: should
[256, 8]: not
[283, 8]: crash:
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 78]: Image
[57, 78]: with
[90, 78]: broken
[143, 78]: src
[169, 78]: attribute,
[236, 78]: should
[287, 78]: not
[314, 78]: crash:
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 26) > Vector(x: 60, y: 26) > Vector(x: 59, y: 27) > Vector(x: 9, y: 27))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 26) > Vector(x: 60, y: 78) > Vector(x: 59, y: 77) > Vector(x: 59, y: 27))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 78) > Vector(x: 8, y: 78) > Vector(x: 9, y: 77) > Vector(x: 59, y: 77))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 78) > Vector(x: 8, y: 26) > Vector(x: 9, y: 27) > Vector(x: 9, y: 77))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 96) > Vector(x: 60, y: 96) > Vector(x: 59, y: 97) > Vector(x: 9, y: 97))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 96) > Vector(x: 60, y: 148) > Vector(x: 59, y: 147) > Vector(x: 59, y: 97))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 148) > Vector(x: 8, y: 148) > Vector(x: 9, y: 147) > Vector(x: 59, y: 147))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 148) > Vector(x: 8, y: 96) > Vector(x: 9, y: 97) > Vector(x: 9, y: 147))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 148) > Vector(x: 60, y: 148) > Vector(x: 59, y: 149) > Vector(x: 9, y: 149))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 148) > Vector(x: 60, y: 200) > Vector(x: 59, y: 199) > Vector(x: 59, y: 149))
Shape: rgb(255,0,0) Path (Vector(x: 60, y: 200) > Vector(x: 8, y: 200) > Vector(x: 9, y: 199) > Vector(x: 59, y: 199))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 200) > Vector(x: 8, y: 148) > Vector(x: 9, y: 149) > Vector(x: 9, y: 199))

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Image tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
</head>
<body>
<img src="../../assets/image.jpg" />
<img src="../../assets/image.jpg" style="width:50px;height:400px;" />
<img src="../../assets/image.jpg" style="width:500px;" />
<img src="../../assets/image.jpg" style="width:100px;border-radius:50px;" />
<img src="../../assets/image.jpg" style="width:500px;height:40px;" />
<img src="../../assets/image.jpg" style="padding:20px;border:5px solid black;" />
<img src="../../assets/image.jpg" style="padding-bottom:20px;border-top:5px solid black;clear:both;" />
<img src="../../assets/image.jpg" style="padding-top:20px;border-top:5px solid black;clear:both;width:50px;" />
<img src="../../assets/image.jpg" style="padding-top:20px;border-top:5px solid black;clear:both;width:50px;height:25px;" />
<img src="../../assets/image.jpg" style="width:0px;height:0px;border:1px solid black" />
<img src="../../assets/image.jpg" style="width:0px;height:0px;" />
</body>
</html>

View File

@ -0,0 +1,36 @@
Window: [800, 703]
Rectangle: [0, 0, 800, 703] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 433) > Vector(x: 83, y: 433) > Vector(x: 83, y: 508) > Vector(x: 8, y: 508))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (Vector(x: 87, y: 108) > Vector(x: 137, y: 108) > Vector(x: 137, y: 508) > Vector(x: 87, y: 508))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (Vector(x: 141, y: 8) > Vector(x: 641, y: 8) > Vector(x: 641, y: 508) > Vector(x: 141, y: 508))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (BezierCurve(x0: 645, y0: 458, x1: 695, y1: 408, cx0: 645, cy0: 430, cx1: 667, cy1: 408) > BezierCurve(x0: 695, y0: 408, x1: 745, y1: 458, cx0: 723, cy0: 408, cx1: 745, cy1: 430) > BezierCurve(x0: 745, y0: 458, x1: 695, y1: 508, cx0: 745, cy0: 486, cx1: 723, cy1: 508) > BezierCurve(x0: 695, y0: 508, x1: 645, y1: 458, cx0: 667, cy0: 508, cx1: 645, cy1: 486))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (Vector(x: 8, y: 597) > Vector(x: 508, y: 597) > Vector(x: 508, y: 637) > Vector(x: 8, y: 637))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Shape: rgb(0,0,0) Path (Vector(x: 512, y: 512) > Vector(x: 637, y: 512) > Vector(x: 632, y: 517) > Vector(x: 517, y: 517))
Shape: rgb(0,0,0) Path (Vector(x: 637, y: 512) > Vector(x: 637, y: 637) > Vector(x: 632, y: 632) > Vector(x: 632, y: 517))
Shape: rgb(0,0,0) Path (Vector(x: 637, y: 637) > Vector(x: 512, y: 637) > Vector(x: 517, y: 632) > Vector(x: 632, y: 632))
Shape: rgb(0,0,0) Path (Vector(x: 512, y: 637) > Vector(x: 512, y: 512) > Vector(x: 517, y: 517) > Vector(x: 517, y: 632))
Clip: Path (Vector(x: 517, y: 517) > Vector(x: 632, y: 517) > Vector(x: 632, y: 632) > Vector(x: 517, y: 632))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Shape: rgb(0,0,0) Path (Vector(x: 641, y: 537) > Vector(x: 716, y: 537) > Vector(x: 716, y: 542) > Vector(x: 641, y: 542))
Clip: Path (Vector(x: 641, y: 542) > Vector(x: 716, y: 542) > Vector(x: 716, y: 637) > Vector(x: 641, y: 637))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Shape: rgb(0,0,0) Path (Vector(x: 720, y: 562) > Vector(x: 770, y: 562) > Vector(x: 770, y: 567) > Vector(x: 720, y: 567))
Clip: Path (Vector(x: 720, y: 567) > Vector(x: 770, y: 567) > Vector(x: 770, y: 637) > Vector(x: 720, y: 637))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 641) > Vector(x: 58, y: 641) > Vector(x: 58, y: 646) > Vector(x: 8, y: 646))
Clip: Path (Vector(x: 8, y: 646) > Vector(x: 58, y: 646) > Vector(x: 58, y: 691) > Vector(x: 8, y: 691))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Shape: rgb(0,0,0) Path (Vector(x: 62, y: 689) > Vector(x: 64, y: 689) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690))
Shape: rgb(0,0,0) Path (Vector(x: 64, y: 689) > Vector(x: 64, y: 691) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690))
Shape: rgb(0,0,0) Path (Vector(x: 64, y: 691) > Vector(x: 62, y: 691) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690))
Shape: rgb(0,0,0) Path (Vector(x: 62, y: 691) > Vector(x: 62, y: 689) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690))
Clip: Path (Vector(x: 63, y: 690) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690) > Vector(x: 63, y: 690))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (Vector(x: 68, y: 691) > Vector(x: 68, y: 691) > Vector(x: 68, y: 691) > Vector(x: 68, y: 691))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])

View File

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Base64 svg</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
<div>
Inline svg image: <br />
<img width="200" height="200" src="data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjMwNiIgaGVpZ2h0PSIyOTYiPjxkZWZzIGlkPSJkZWZzNCIgLz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYyLjQ2OTk1LC00NzcuMjg2MykiIGlkPSJsYXllcjEiPjxwYXRoIGQ9Im0gMzE0LjE1NzQ1LDQ4MS42OTU1OCBjIC01OS4yMDA4OSwwLjUzNzc0IC0xMTQuODA5NzksMzYuNzIyMTkgLTEzNy4zMTI1LDk1LjM0Mzc1IC0yOS4zOTEyOSw3Ni41NjY5MyA4LjgzOTMyLDE2Mi40NTI0NiA4NS40MDYyNSwxOTEuODQzNzUgbCAzNC4wMzEyNSwtODguNjg3NSBjIC0yMC4wNjc4LC03LjcxMzU4IC0zNC4zMTI1LC0yNy4xNTMyNCAtMzQuMzEyNSwtNDkuOTM3NSAwLC0yOS41NDcyMyAyMy45NTI3NywtNTMuNSA1My41LC01My41IDI5LjU0NzIzLDAgNTMuNSwyMy45NTI3NyA1My41LDUzLjUgMCwyMi43ODQyNiAtMTQuMjQ0Nyw0Mi4yMjM5MiAtMzQuMzEyNSw0OS45Mzc1IGwgMzQuMDMxMjUsODguNjg3NSBjIDM5LjI5MDg1LC0xNS4wODIzNCA3MC4zMjM5LC00Ni4xMTU0IDg1LjQwNjI1LC04NS40MDYyNSAyOS4zOTEyOSwtNzYuNTY2OTMgLTguODM5MzIsLTE2Mi40ODM3MSAtODUuNDA2MjUsLTE5MS44NzUgLTE3Ljk0NTM3LC02Ljg4ODU5IC0zNi40MDg1MywtMTAuMDcwODcgLTU0LjUzMTI1LC05LjkwNjI1IHoiIGlkPSJwYXRoMjgzMCIgc3R5bGU9ImZpbGw6IzQwYWE1NDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6IzIwNTUyYTtzdHJva2Utd2lkdGg6Ny45OTk5OTk1MjtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1vcGFjaXR5OjE7c3Ryb2tlLWRhc2hhcnJheTpub25lIiAvPjwvZz48L3N2Zz4=" /></div>
</body>
</html>

View File

@ -0,0 +1,9 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: Inline
[51, 8]: svg
[80, 8]: image:
Clip: Path (Vector(x: 8, y: 26) > Vector(x: 208, y: 26) > Vector(x: 208, y: 226) > Vector(x: 8, y: 226))
Draw image: Image ("/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53") (source: [0, 0, 306, 296]) (destination: [0, 0, 306, 296])

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>Image tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
SVG taints image:<br /> <!-- http://fi.wikipedia.org/wiki/Tiedosto:Svg.svg -->
<img src="../../../assets/image.svg" />
</body>
</html>

View File

@ -0,0 +1,9 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: SVG
[46, 8]: taints
[89, 8]: image:
Clip: Path (Vector(x: 8, y: 26) > Vector(x: 666, y: 26) > Vector(x: 666, y: 363) > Vector(x: 8, y: 363))
Draw image: Image ("/tests/assets/image.svg") (source: [0, 0, 658, 337]) (destination: [0, 0, 658, 337])

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>Inline svg</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
<div>
Inline svg image: <br />
<img width="200" height="200" src='data:image/svg+xml,<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="306" height="296"><defs id="defs4" /><g transform="translate(-162.46995,-477.2863)" id="layer1"><path d="m 314.15745,481.69558 c -59.20089,0.53774 -114.80979,36.72219 -137.3125,95.34375 -29.39129,76.56693 8.83932,162.45246 85.40625,191.84375 l 34.03125,-88.6875 c -20.0678,-7.71358 -34.3125,-27.15324 -34.3125,-49.9375 0,-29.54723 23.95277,-53.5 53.5,-53.5 29.54723,0 53.5,23.95277 53.5,53.5 0,22.78426 -14.2447,42.22392 -34.3125,49.9375 l 34.03125,88.6875 c 39.29085,-15.08234 70.3239,-46.1154 85.40625,-85.40625 29.39129,-76.56693 -8.83932,-162.48371 -85.40625,-191.875 -17.94537,-6.88859 -36.40853,-10.07087 -54.53125,-9.90625 z" id="path2830" style="fill:#40aa54;fill-opacity:1;stroke:#20552a;stroke-width:7.99999952;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></svg>' />
</div>
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: Inline
[51, 8]: svg
[80, 8]: image:

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Native svg only</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script>
var noFabric = true;
</script>
<script type="text/javascript" src="../../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body>
<div>
<img src="../../../assets/image.svg" />
<img width="200" height="200" src='data:image/svg+xml,<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="306" height="296"><defs id="defs4" /><g transform="translate(-162.46995,-477.2863)" id="layer1"><path d="m 314.15745,481.69558 c -59.20089,0.53774 -114.80979,36.72219 -137.3125,95.34375 -29.39129,76.56693 8.83932,162.45246 85.40625,191.84375 l 34.03125,-88.6875 c -20.0678,-7.71358 -34.3125,-27.15324 -34.3125,-49.9375 0,-29.54723 23.95277,-53.5 53.5,-53.5 29.54723,0 53.5,23.95277 53.5,53.5 0,22.78426 -14.2447,42.22392 -34.3125,49.9375 l 34.03125,88.6875 c 39.29085,-15.08234 70.3239,-46.1154 85.40625,-85.40625 29.39129,-76.56693 -8.83932,-162.48371 -85.40625,-191.875 -17.94537,-6.88859 -36.40853,-10.07087 -54.53125,-9.90625 z" id="path2830" style="fill:#40aa54;fill-opacity:1;stroke:#20552a;stroke-width:7.99999952;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /></g></svg>' />
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="306" height="296" id="svg2">
<defs id="defs4"/>
<g transform="translate(-162.46995,-477.2863)" id="layer1">
<path d="m 314.15745,481.69558 c -59.20089,0.53774 -114.80979,36.72219 -137.3125,95.34375 -29.39129,76.56693 8.83932,162.45246 85.40625,191.84375 l 34.03125,-88.6875 c -20.0678,-7.71358 -34.3125,-27.15324 -34.3125,-49.9375 0,-29.54723 23.95277,-53.5 53.5,-53.5 29.54723,0 53.5,23.95277 53.5,53.5 0,22.78426 -14.2447,42.22392 -34.3125,49.9375 l 34.03125,88.6875 c 39.29085,-15.08234 70.3239,-46.1154 85.40625,-85.40625 29.39129,-76.56693 -8.83932,-162.48371 -85.40625,-191.875 -17.94537,-6.88859 -36.40853,-10.07087 -54.53125,-9.90625 z"
id="path2830"
style="fill:#40aa54;fill-opacity:1;stroke:#20552a;stroke-width:7.99999952;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
</g>
</svg>
<img width="200" height="200" src="data:image/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjMwNiIgaGVpZ2h0PSIyOTYiPjxkZWZzIGlkPSJkZWZzNCIgLz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYyLjQ2OTk1LC00NzcuMjg2MykiIGlkPSJsYXllcjEiPjxwYXRoIGQ9Im0gMzE0LjE1NzQ1LDQ4MS42OTU1OCBjIC01OS4yMDA4OSwwLjUzNzc0IC0xMTQuODA5NzksMzYuNzIyMTkgLTEzNy4zMTI1LDk1LjM0Mzc1IC0yOS4zOTEyOSw3Ni41NjY5MyA4LjgzOTMyLDE2Mi40NTI0NiA4NS40MDYyNSwxOTEuODQzNzUgbCAzNC4wMzEyNSwtODguNjg3NSBjIC0yMC4wNjc4LC03LjcxMzU4IC0zNC4zMTI1LC0yNy4xNTMyNCAtMzQuMzEyNSwtNDkuOTM3NSAwLC0yOS41NDcyMyAyMy45NTI3NywtNTMuNSA1My41LC01My41IDI5LjU0NzIzLDAgNTMuNSwyMy45NTI3NyA1My41LDUzLjUgMCwyMi43ODQyNiAtMTQuMjQ0Nyw0Mi4yMjM5MiAtMzQuMzEyNSw0OS45Mzc1IGwgMzQuMDMxMjUsODguNjg3NSBjIDM5LjI5MDg1LC0xNS4wODIzNCA3MC4zMjM5LC00Ni4xMTU0IDg1LjQwNjI1LC04NS40MDYyNSAyOS4zOTEyOSwtNzYuNTY2OTMgLTguODM5MzIsLTE2Mi40ODM3MSAtODUuNDA2MjUsLTE5MS44NzUgLTE3Ljk0NTM3LC02Ljg4ODU5IC0zNi40MDg1MywtMTAuMDcwODcgLTU0LjUzMTI1LC05LjkwNjI1IHoiIGlkPSJwYXRoMjgzMCIgc3R5bGU9ImZpbGw6IzQwYWE1NDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6IzIwNTUyYTtzdHJva2Utd2lkdGg6Ny45OTk5OTk1MjtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1vcGFjaXR5OjE7c3Ryb2tlLWRhc2hhcnJheTpub25lIiAvPjwvZz48L3N2Zz4=" /></div>
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [800, 656]
Rectangle: [0, 0, 800, 656] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 8) > Vector(x: 666, y: 8) > Vector(x: 666, y: 345) > Vector(x: 8, y: 345))
Draw image: Image ("/tests/assets/image.svg") (source: [0, 0, 658, 337]) (destination: [0, 0, 658, 337])
Clip: Path (Vector(x: 523, y: 445) > Vector(x: 723, y: 445) > Vector(x: 723, y: 645) > Vector(x: 523, y: 645))
Draw image: Image ("/svg+xml;base64,PHN2ZyB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxucz0iaHR0cDovL3d3dy53") (source: [0, 0, 306, 296]) (destination: [0, 0, 306, 296])

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>SVG node</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../../test.js"></script>
<style>
body {
font-family: Arial;
}
</style>
</head>
<body><div>
SVG node image: <br/>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="306" height="296" id="svg2">
<defs id="defs4"/>
<g transform="translate(-162.46995,-477.2863)" id="layer1">
<path d="m 314.15745,481.69558 c -59.20089,0.53774 -114.80979,36.72219 -137.3125,95.34375 -29.39129,76.56693 8.83932,162.45246 85.40625,191.84375 l 34.03125,-88.6875 c -20.0678,-7.71358 -34.3125,-27.15324 -34.3125,-49.9375 0,-29.54723 23.95277,-53.5 53.5,-53.5 29.54723,0 53.5,23.95277 53.5,53.5 0,22.78426 -14.2447,42.22392 -34.3125,49.9375 l 34.03125,88.6875 c 39.29085,-15.08234 70.3239,-46.1154 85.40625,-85.40625 29.39129,-76.56693 -8.83932,-162.48371 -85.40625,-191.875 -17.94537,-6.88859 -36.40853,-10.07087 -54.53125,-9.90625 z"
id="path2830"
style="fill:#40aa54;fill-opacity:1;stroke:#20552a;stroke-width:7.99999952;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
</g>
</svg>
</div>
</body>
</html>

View File

@ -0,0 +1,7 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: SVG
[46, 8]: node
[86, 8]: image:

View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>List tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
var supportedTypes = ["decimal","decimal-leading-zero","upper-roman","lower-roman","lower-alpha","upper-alpha"];
for (var i = 1;i<=100;i++){
$('#dynamic').append($('<li />').text(i).css('list-style-type',supportedTypes[1]));
}
}
</script>
<style>
#dynamic{
list-style-type:decimal;
list-style-position: inside;
font-size:20px;
line-height:50px;
}
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
float:left;
}
h2 {
clear:both;
}
li{
border:1px solid black;
width:100px;
margin:0;
}
ol{
margin:0;
}
</style>
</head>
<body>
<ol id="dynamic"></ol>
</body>
</html>

View File

@ -0,0 +1,603 @@
Window: [800, 5216]
Rectangle: [0, 0, 800, 5216] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 8) > Vector(x: 150, y: 8) > Vector(x: 149, y: 9) > Vector(x: 49, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 8) > Vector(x: 150, y: 60) > Vector(x: 149, y: 59) > Vector(x: 149, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 48, y: 60) > Vector(x: 49, y: 59) > Vector(x: 149, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 48, y: 8) > Vector(x: 49, y: 9) > Vector(x: 49, y: 59))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 23]: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 150, y: 60) > Vector(x: 149, y: 61) > Vector(x: 49, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 150, y: 112) > Vector(x: 149, y: 111) > Vector(x: 149, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 48, y: 112) > Vector(x: 49, y: 111) > Vector(x: 149, y: 111))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 48, y: 60) > Vector(x: 49, y: 61) > Vector(x: 49, y: 111))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 75]: 2
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 150, y: 112) > Vector(x: 149, y: 113) > Vector(x: 49, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 150, y: 164) > Vector(x: 149, y: 163) > Vector(x: 149, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 48, y: 164) > Vector(x: 49, y: 163) > Vector(x: 149, y: 163))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 48, y: 112) > Vector(x: 49, y: 113) > Vector(x: 49, y: 163))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 127]: 3
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 150, y: 164) > Vector(x: 149, y: 165) > Vector(x: 49, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 150, y: 216) > Vector(x: 149, y: 215) > Vector(x: 149, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 48, y: 216) > Vector(x: 49, y: 215) > Vector(x: 149, y: 215))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 48, y: 164) > Vector(x: 49, y: 165) > Vector(x: 49, y: 215))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 179]: 4
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 150, y: 216) > Vector(x: 149, y: 217) > Vector(x: 49, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 150, y: 268) > Vector(x: 149, y: 267) > Vector(x: 149, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 48, y: 268) > Vector(x: 49, y: 267) > Vector(x: 149, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 48, y: 216) > Vector(x: 49, y: 217) > Vector(x: 49, y: 267))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 231]: 5
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 150, y: 268) > Vector(x: 149, y: 269) > Vector(x: 49, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 150, y: 320) > Vector(x: 149, y: 319) > Vector(x: 149, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 48, y: 320) > Vector(x: 49, y: 319) > Vector(x: 149, y: 319))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 48, y: 268) > Vector(x: 49, y: 269) > Vector(x: 49, y: 319))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 283]: 6
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 150, y: 320) > Vector(x: 149, y: 321) > Vector(x: 49, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 150, y: 372) > Vector(x: 149, y: 371) > Vector(x: 149, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 48, y: 372) > Vector(x: 49, y: 371) > Vector(x: 149, y: 371))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 48, y: 320) > Vector(x: 49, y: 321) > Vector(x: 49, y: 371))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 335]: 7
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 150, y: 372) > Vector(x: 149, y: 373) > Vector(x: 49, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 150, y: 424) > Vector(x: 149, y: 423) > Vector(x: 149, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 48, y: 424) > Vector(x: 49, y: 423) > Vector(x: 149, y: 423))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 48, y: 372) > Vector(x: 49, y: 373) > Vector(x: 49, y: 423))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 387]: 8
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 150, y: 424) > Vector(x: 149, y: 425) > Vector(x: 49, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 150, y: 476) > Vector(x: 149, y: 475) > Vector(x: 149, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 48, y: 476) > Vector(x: 49, y: 475) > Vector(x: 149, y: 475))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 48, y: 424) > Vector(x: 49, y: 425) > Vector(x: 49, y: 475))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 439]: 9
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 150, y: 476) > Vector(x: 149, y: 477) > Vector(x: 49, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 150, y: 528) > Vector(x: 149, y: 527) > Vector(x: 149, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 48, y: 528) > Vector(x: 49, y: 527) > Vector(x: 149, y: 527))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 48, y: 476) > Vector(x: 49, y: 477) > Vector(x: 49, y: 527))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 491]: 10
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 150, y: 528) > Vector(x: 149, y: 529) > Vector(x: 49, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 150, y: 580) > Vector(x: 149, y: 579) > Vector(x: 149, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 48, y: 580) > Vector(x: 49, y: 579) > Vector(x: 149, y: 579))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 48, y: 528) > Vector(x: 49, y: 529) > Vector(x: 49, y: 579))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 543]: 11
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 150, y: 580) > Vector(x: 149, y: 581) > Vector(x: 49, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 150, y: 632) > Vector(x: 149, y: 631) > Vector(x: 149, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 48, y: 632) > Vector(x: 49, y: 631) > Vector(x: 149, y: 631))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 48, y: 580) > Vector(x: 49, y: 581) > Vector(x: 49, y: 631))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 595]: 12
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 150, y: 632) > Vector(x: 149, y: 633) > Vector(x: 49, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 150, y: 684) > Vector(x: 149, y: 683) > Vector(x: 149, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 48, y: 684) > Vector(x: 49, y: 683) > Vector(x: 149, y: 683))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 48, y: 632) > Vector(x: 49, y: 633) > Vector(x: 49, y: 683))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 647]: 13
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 150, y: 684) > Vector(x: 149, y: 685) > Vector(x: 49, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 150, y: 736) > Vector(x: 149, y: 735) > Vector(x: 149, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 48, y: 736) > Vector(x: 49, y: 735) > Vector(x: 149, y: 735))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 48, y: 684) > Vector(x: 49, y: 685) > Vector(x: 49, y: 735))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 699]: 14
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 150, y: 736) > Vector(x: 149, y: 737) > Vector(x: 49, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 150, y: 788) > Vector(x: 149, y: 787) > Vector(x: 149, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 48, y: 788) > Vector(x: 49, y: 787) > Vector(x: 149, y: 787))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 48, y: 736) > Vector(x: 49, y: 737) > Vector(x: 49, y: 787))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 751]: 15
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 150, y: 788) > Vector(x: 149, y: 789) > Vector(x: 49, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 150, y: 840) > Vector(x: 149, y: 839) > Vector(x: 149, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 48, y: 840) > Vector(x: 49, y: 839) > Vector(x: 149, y: 839))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 48, y: 788) > Vector(x: 49, y: 789) > Vector(x: 49, y: 839))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 803]: 16
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 150, y: 840) > Vector(x: 149, y: 841) > Vector(x: 49, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 150, y: 892) > Vector(x: 149, y: 891) > Vector(x: 149, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 48, y: 892) > Vector(x: 49, y: 891) > Vector(x: 149, y: 891))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 48, y: 840) > Vector(x: 49, y: 841) > Vector(x: 49, y: 891))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 855]: 17
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 150, y: 892) > Vector(x: 149, y: 893) > Vector(x: 49, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 150, y: 944) > Vector(x: 149, y: 943) > Vector(x: 149, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 48, y: 944) > Vector(x: 49, y: 943) > Vector(x: 149, y: 943))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 48, y: 892) > Vector(x: 49, y: 893) > Vector(x: 49, y: 943))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 907]: 18
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 150, y: 944) > Vector(x: 149, y: 945) > Vector(x: 49, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 150, y: 996) > Vector(x: 149, y: 995) > Vector(x: 149, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 48, y: 996) > Vector(x: 49, y: 995) > Vector(x: 149, y: 995))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 48, y: 944) > Vector(x: 49, y: 945) > Vector(x: 49, y: 995))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 959]: 19
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 150, y: 996) > Vector(x: 149, y: 997) > Vector(x: 49, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1047) > Vector(x: 149, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1047) > Vector(x: 149, y: 1047))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 48, y: 996) > Vector(x: 49, y: 997) > Vector(x: 49, y: 1047))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1011]: 20
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1049) > Vector(x: 49, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1099) > Vector(x: 149, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1099) > Vector(x: 149, y: 1099))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1049) > Vector(x: 49, y: 1099))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1063]: 21
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1101) > Vector(x: 49, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1151) > Vector(x: 149, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1151) > Vector(x: 149, y: 1151))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1101) > Vector(x: 49, y: 1151))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1115]: 22
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1153) > Vector(x: 49, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1203) > Vector(x: 149, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1203) > Vector(x: 149, y: 1203))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1153) > Vector(x: 49, y: 1203))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1167]: 23
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1205) > Vector(x: 49, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1255) > Vector(x: 149, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1255) > Vector(x: 149, y: 1255))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1205) > Vector(x: 49, y: 1255))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1219]: 24
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1257) > Vector(x: 49, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1307) > Vector(x: 149, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1307) > Vector(x: 149, y: 1307))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1257) > Vector(x: 49, y: 1307))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1271]: 25
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1309) > Vector(x: 49, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1359) > Vector(x: 149, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1359) > Vector(x: 149, y: 1359))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1309) > Vector(x: 49, y: 1359))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1323]: 26
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1361) > Vector(x: 49, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1411) > Vector(x: 149, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1411) > Vector(x: 149, y: 1411))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1361) > Vector(x: 49, y: 1411))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1375]: 27
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1413) > Vector(x: 49, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1463) > Vector(x: 149, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1463) > Vector(x: 149, y: 1463))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1413) > Vector(x: 49, y: 1463))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1427]: 28
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1465) > Vector(x: 49, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1515) > Vector(x: 149, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1515) > Vector(x: 149, y: 1515))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1465) > Vector(x: 49, y: 1515))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1479]: 29
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1517) > Vector(x: 49, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1567) > Vector(x: 149, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1567) > Vector(x: 149, y: 1567))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1517) > Vector(x: 49, y: 1567))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1531]: 30
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1569) > Vector(x: 49, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1619) > Vector(x: 149, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1619) > Vector(x: 149, y: 1619))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1569) > Vector(x: 49, y: 1619))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1583]: 31
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1621) > Vector(x: 49, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1671) > Vector(x: 149, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1671) > Vector(x: 149, y: 1671))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1621) > Vector(x: 49, y: 1671))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1635]: 32
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1673) > Vector(x: 49, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1723) > Vector(x: 149, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1723) > Vector(x: 149, y: 1723))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1673) > Vector(x: 49, y: 1723))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1687]: 33
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1725) > Vector(x: 49, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1775) > Vector(x: 149, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1775) > Vector(x: 149, y: 1775))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1725) > Vector(x: 49, y: 1775))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1739]: 34
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1777) > Vector(x: 49, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1827) > Vector(x: 149, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1827) > Vector(x: 149, y: 1827))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1777) > Vector(x: 49, y: 1827))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1791]: 35
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1829) > Vector(x: 49, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1879) > Vector(x: 149, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1879) > Vector(x: 149, y: 1879))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1829) > Vector(x: 49, y: 1879))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1843]: 36
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1881) > Vector(x: 49, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1931) > Vector(x: 149, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1931) > Vector(x: 149, y: 1931))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1881) > Vector(x: 49, y: 1931))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1895]: 37
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1933) > Vector(x: 49, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1983) > Vector(x: 149, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1983) > Vector(x: 149, y: 1983))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1933) > Vector(x: 49, y: 1983))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1947]: 38
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1985) > Vector(x: 49, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2035) > Vector(x: 149, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2035) > Vector(x: 149, y: 2035))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1985) > Vector(x: 49, y: 2035))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1999]: 39
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2037) > Vector(x: 49, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2087) > Vector(x: 149, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2087) > Vector(x: 149, y: 2087))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2037) > Vector(x: 49, y: 2087))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2051]: 40
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2089) > Vector(x: 49, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2139) > Vector(x: 149, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2139) > Vector(x: 149, y: 2139))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2089) > Vector(x: 49, y: 2139))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2103]: 41
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2141) > Vector(x: 49, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2191) > Vector(x: 149, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2191) > Vector(x: 149, y: 2191))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2141) > Vector(x: 49, y: 2191))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2155]: 42
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2193) > Vector(x: 49, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2243) > Vector(x: 149, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2243) > Vector(x: 149, y: 2243))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2193) > Vector(x: 49, y: 2243))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2207]: 43
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2245) > Vector(x: 49, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2295) > Vector(x: 149, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2295) > Vector(x: 149, y: 2295))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2245) > Vector(x: 49, y: 2295))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2259]: 44
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2297) > Vector(x: 49, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2347) > Vector(x: 149, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2347) > Vector(x: 149, y: 2347))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2297) > Vector(x: 49, y: 2347))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2311]: 45
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2349) > Vector(x: 49, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2399) > Vector(x: 149, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2399) > Vector(x: 149, y: 2399))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2349) > Vector(x: 49, y: 2399))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2363]: 46
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2401) > Vector(x: 49, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2451) > Vector(x: 149, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2451) > Vector(x: 149, y: 2451))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2401) > Vector(x: 49, y: 2451))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2415]: 47
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2453) > Vector(x: 49, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2503) > Vector(x: 149, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2503) > Vector(x: 149, y: 2503))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2453) > Vector(x: 49, y: 2503))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2467]: 48
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2505) > Vector(x: 49, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2555) > Vector(x: 149, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2555) > Vector(x: 149, y: 2555))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2505) > Vector(x: 49, y: 2555))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2519]: 49
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2557) > Vector(x: 49, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2607) > Vector(x: 149, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2607) > Vector(x: 149, y: 2607))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2557) > Vector(x: 49, y: 2607))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2571]: 50
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2609) > Vector(x: 49, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2659) > Vector(x: 149, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2659) > Vector(x: 149, y: 2659))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2609) > Vector(x: 49, y: 2659))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2623]: 51
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2661) > Vector(x: 49, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2711) > Vector(x: 149, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2711) > Vector(x: 149, y: 2711))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2661) > Vector(x: 49, y: 2711))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2675]: 52
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2713) > Vector(x: 49, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2763) > Vector(x: 149, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2763) > Vector(x: 149, y: 2763))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2713) > Vector(x: 49, y: 2763))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2727]: 53
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2765) > Vector(x: 49, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2815) > Vector(x: 149, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2815) > Vector(x: 149, y: 2815))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2765) > Vector(x: 49, y: 2815))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2779]: 54
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2817) > Vector(x: 49, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2867) > Vector(x: 149, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2867) > Vector(x: 149, y: 2867))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2817) > Vector(x: 49, y: 2867))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2831]: 55
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2869) > Vector(x: 49, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2919) > Vector(x: 149, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2919) > Vector(x: 149, y: 2919))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2869) > Vector(x: 49, y: 2919))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2883]: 56
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2921) > Vector(x: 49, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2971) > Vector(x: 149, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2971) > Vector(x: 149, y: 2971))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2921) > Vector(x: 49, y: 2971))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2935]: 57
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2973) > Vector(x: 49, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3023) > Vector(x: 149, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3023) > Vector(x: 149, y: 3023))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2973) > Vector(x: 49, y: 3023))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2987]: 58
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3025) > Vector(x: 49, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3075) > Vector(x: 149, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3075) > Vector(x: 149, y: 3075))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3025) > Vector(x: 49, y: 3075))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3039]: 59
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3077) > Vector(x: 49, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3127) > Vector(x: 149, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3127) > Vector(x: 149, y: 3127))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3077) > Vector(x: 49, y: 3127))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3091]: 60
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3129) > Vector(x: 49, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3179) > Vector(x: 149, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3179) > Vector(x: 149, y: 3179))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3129) > Vector(x: 49, y: 3179))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3143]: 61
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3181) > Vector(x: 49, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3231) > Vector(x: 149, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3231) > Vector(x: 149, y: 3231))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3181) > Vector(x: 49, y: 3231))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3195]: 62
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3233) > Vector(x: 49, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3283) > Vector(x: 149, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3283) > Vector(x: 149, y: 3283))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3233) > Vector(x: 49, y: 3283))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3247]: 63
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3285) > Vector(x: 49, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3335) > Vector(x: 149, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3335) > Vector(x: 149, y: 3335))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3285) > Vector(x: 49, y: 3335))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3299]: 64
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3337) > Vector(x: 49, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3387) > Vector(x: 149, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3387) > Vector(x: 149, y: 3387))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3337) > Vector(x: 49, y: 3387))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3351]: 65
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3389) > Vector(x: 49, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3439) > Vector(x: 149, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3439) > Vector(x: 149, y: 3439))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3389) > Vector(x: 49, y: 3439))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3403]: 66
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3441) > Vector(x: 49, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3491) > Vector(x: 149, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3491) > Vector(x: 149, y: 3491))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3441) > Vector(x: 49, y: 3491))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3455]: 67
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3493) > Vector(x: 49, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3543) > Vector(x: 149, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3543) > Vector(x: 149, y: 3543))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3493) > Vector(x: 49, y: 3543))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3507]: 68
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3545) > Vector(x: 49, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3595) > Vector(x: 149, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3595) > Vector(x: 149, y: 3595))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3545) > Vector(x: 49, y: 3595))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3559]: 69
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3597) > Vector(x: 49, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3647) > Vector(x: 149, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3647) > Vector(x: 149, y: 3647))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3597) > Vector(x: 49, y: 3647))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3611]: 70
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3649) > Vector(x: 49, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3699) > Vector(x: 149, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3699) > Vector(x: 149, y: 3699))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3649) > Vector(x: 49, y: 3699))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3663]: 71
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3701) > Vector(x: 49, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3751) > Vector(x: 149, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3751) > Vector(x: 149, y: 3751))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3701) > Vector(x: 49, y: 3751))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3715]: 72
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3753) > Vector(x: 49, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3803) > Vector(x: 149, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3803) > Vector(x: 149, y: 3803))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3753) > Vector(x: 49, y: 3803))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3767]: 73
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3805) > Vector(x: 49, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3855) > Vector(x: 149, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3855) > Vector(x: 149, y: 3855))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3805) > Vector(x: 49, y: 3855))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3819]: 74
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3857) > Vector(x: 49, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3907) > Vector(x: 149, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3907) > Vector(x: 149, y: 3907))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3857) > Vector(x: 49, y: 3907))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3871]: 75
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3909) > Vector(x: 49, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3959) > Vector(x: 149, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3959) > Vector(x: 149, y: 3959))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3909) > Vector(x: 49, y: 3959))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3923]: 76
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3961) > Vector(x: 49, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4011) > Vector(x: 149, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4011) > Vector(x: 149, y: 4011))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3961) > Vector(x: 49, y: 4011))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3975]: 77
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4013) > Vector(x: 49, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4063) > Vector(x: 149, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4063) > Vector(x: 149, y: 4063))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4013) > Vector(x: 49, y: 4063))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4027]: 78
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4065) > Vector(x: 49, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4115) > Vector(x: 149, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4115) > Vector(x: 149, y: 4115))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4065) > Vector(x: 49, y: 4115))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4079]: 79
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4117) > Vector(x: 49, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4167) > Vector(x: 149, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4167) > Vector(x: 149, y: 4167))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4117) > Vector(x: 49, y: 4167))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4131]: 80
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4169) > Vector(x: 49, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4219) > Vector(x: 149, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4219) > Vector(x: 149, y: 4219))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4169) > Vector(x: 49, y: 4219))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4183]: 81
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4221) > Vector(x: 49, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4271) > Vector(x: 149, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4271) > Vector(x: 149, y: 4271))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4221) > Vector(x: 49, y: 4271))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4235]: 82
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4273) > Vector(x: 49, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4323) > Vector(x: 149, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4323) > Vector(x: 149, y: 4323))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4273) > Vector(x: 49, y: 4323))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4287]: 83
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4325) > Vector(x: 49, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4375) > Vector(x: 149, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4375) > Vector(x: 149, y: 4375))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4325) > Vector(x: 49, y: 4375))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4339]: 84
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4377) > Vector(x: 49, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4427) > Vector(x: 149, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4427) > Vector(x: 149, y: 4427))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4377) > Vector(x: 49, y: 4427))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4391]: 85
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4429) > Vector(x: 49, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4479) > Vector(x: 149, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4479) > Vector(x: 149, y: 4479))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4429) > Vector(x: 49, y: 4479))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4443]: 86
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4481) > Vector(x: 49, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4531) > Vector(x: 149, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4531) > Vector(x: 149, y: 4531))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4481) > Vector(x: 49, y: 4531))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4495]: 87
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4533) > Vector(x: 49, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4583) > Vector(x: 149, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4583) > Vector(x: 149, y: 4583))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4533) > Vector(x: 49, y: 4583))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4547]: 88
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4585) > Vector(x: 49, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4635) > Vector(x: 149, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4635) > Vector(x: 149, y: 4635))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4585) > Vector(x: 49, y: 4635))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4599]: 89
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4637) > Vector(x: 49, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4687) > Vector(x: 149, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4687) > Vector(x: 149, y: 4687))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4637) > Vector(x: 49, y: 4687))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4651]: 90
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4689) > Vector(x: 49, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4739) > Vector(x: 149, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4739) > Vector(x: 149, y: 4739))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4689) > Vector(x: 49, y: 4739))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4703]: 91
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4741) > Vector(x: 49, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4791) > Vector(x: 149, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4791) > Vector(x: 149, y: 4791))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4741) > Vector(x: 49, y: 4791))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4755]: 92
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4793) > Vector(x: 49, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4843) > Vector(x: 149, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4843) > Vector(x: 149, y: 4843))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4793) > Vector(x: 49, y: 4843))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4807]: 93
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4845) > Vector(x: 49, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4895) > Vector(x: 149, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4895) > Vector(x: 149, y: 4895))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4845) > Vector(x: 49, y: 4895))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4859]: 94
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4897) > Vector(x: 49, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4947) > Vector(x: 149, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4947) > Vector(x: 149, y: 4947))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4897) > Vector(x: 49, y: 4947))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4911]: 95
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4949) > Vector(x: 49, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 4999) > Vector(x: 149, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 4999) > Vector(x: 149, y: 4999))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4949) > Vector(x: 49, y: 4999))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4963]: 96
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 5001) > Vector(x: 49, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5051) > Vector(x: 149, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5051) > Vector(x: 149, y: 5051))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 5001) > Vector(x: 49, y: 5051))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5015]: 97
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5053) > Vector(x: 49, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5103) > Vector(x: 149, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5103) > Vector(x: 149, y: 5103))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5053) > Vector(x: 49, y: 5103))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5067]: 98
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5105) > Vector(x: 49, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5155) > Vector(x: 149, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5155) > Vector(x: 149, y: 5155))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5105) > Vector(x: 49, y: 5155))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5119]: 99
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5157) > Vector(x: 49, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 150, y: 5208) > Vector(x: 149, y: 5207) > Vector(x: 149, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5208) > Vector(x: 48, y: 5208) > Vector(x: 49, y: 5207) > Vector(x: 149, y: 5207))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5208) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5157) > Vector(x: 49, y: 5207))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[89, 5171]: 100

View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title>List tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
var supportedTypes = ["decimal","decimal-leading-zero","upper-roman","lower-roman","lower-alpha","upper-alpha"];
for (var i = 1;i<=100;i++){
$('#dynamic').append($('<li />').text(i).css('list-style-type',supportedTypes[0]));
}
}
</script>
<style>
#dynamic{
list-style-type:decimal;
list-style-position: inside;
font-size:20px;
line-height:50px;
}
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
float:left;
}
h2 {
clear:both;
}
li{
border:1px solid black;
width:100px;
margin:0;
}
ol{
margin:0;
}
</style>
</head>
<body>
<ol id="dynamic"></ol>
</body>
</html>

View File

@ -0,0 +1,603 @@
Window: [800, 5216]
Rectangle: [0, 0, 800, 5216] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 8) > Vector(x: 150, y: 8) > Vector(x: 149, y: 9) > Vector(x: 49, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 8) > Vector(x: 150, y: 60) > Vector(x: 149, y: 59) > Vector(x: 149, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 48, y: 60) > Vector(x: 49, y: 59) > Vector(x: 149, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 48, y: 8) > Vector(x: 49, y: 9) > Vector(x: 49, y: 59))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 23]: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 150, y: 60) > Vector(x: 149, y: 61) > Vector(x: 49, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 150, y: 112) > Vector(x: 149, y: 111) > Vector(x: 149, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 48, y: 112) > Vector(x: 49, y: 111) > Vector(x: 149, y: 111))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 48, y: 60) > Vector(x: 49, y: 61) > Vector(x: 49, y: 111))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 75]: 2
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 150, y: 112) > Vector(x: 149, y: 113) > Vector(x: 49, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 150, y: 164) > Vector(x: 149, y: 163) > Vector(x: 149, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 48, y: 164) > Vector(x: 49, y: 163) > Vector(x: 149, y: 163))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 48, y: 112) > Vector(x: 49, y: 113) > Vector(x: 49, y: 163))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 127]: 3
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 150, y: 164) > Vector(x: 149, y: 165) > Vector(x: 49, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 150, y: 216) > Vector(x: 149, y: 215) > Vector(x: 149, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 48, y: 216) > Vector(x: 49, y: 215) > Vector(x: 149, y: 215))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 48, y: 164) > Vector(x: 49, y: 165) > Vector(x: 49, y: 215))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 179]: 4
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 150, y: 216) > Vector(x: 149, y: 217) > Vector(x: 49, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 150, y: 268) > Vector(x: 149, y: 267) > Vector(x: 149, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 48, y: 268) > Vector(x: 49, y: 267) > Vector(x: 149, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 48, y: 216) > Vector(x: 49, y: 217) > Vector(x: 49, y: 267))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 231]: 5
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 150, y: 268) > Vector(x: 149, y: 269) > Vector(x: 49, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 150, y: 320) > Vector(x: 149, y: 319) > Vector(x: 149, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 48, y: 320) > Vector(x: 49, y: 319) > Vector(x: 149, y: 319))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 48, y: 268) > Vector(x: 49, y: 269) > Vector(x: 49, y: 319))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 283]: 6
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 150, y: 320) > Vector(x: 149, y: 321) > Vector(x: 49, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 150, y: 372) > Vector(x: 149, y: 371) > Vector(x: 149, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 48, y: 372) > Vector(x: 49, y: 371) > Vector(x: 149, y: 371))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 48, y: 320) > Vector(x: 49, y: 321) > Vector(x: 49, y: 371))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 335]: 7
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 150, y: 372) > Vector(x: 149, y: 373) > Vector(x: 49, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 150, y: 424) > Vector(x: 149, y: 423) > Vector(x: 149, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 48, y: 424) > Vector(x: 49, y: 423) > Vector(x: 149, y: 423))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 48, y: 372) > Vector(x: 49, y: 373) > Vector(x: 49, y: 423))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 387]: 8
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 150, y: 424) > Vector(x: 149, y: 425) > Vector(x: 49, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 150, y: 476) > Vector(x: 149, y: 475) > Vector(x: 149, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 48, y: 476) > Vector(x: 49, y: 475) > Vector(x: 149, y: 475))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 48, y: 424) > Vector(x: 49, y: 425) > Vector(x: 49, y: 475))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 439]: 9
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 150, y: 476) > Vector(x: 149, y: 477) > Vector(x: 49, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 150, y: 528) > Vector(x: 149, y: 527) > Vector(x: 149, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 48, y: 528) > Vector(x: 49, y: 527) > Vector(x: 149, y: 527))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 48, y: 476) > Vector(x: 49, y: 477) > Vector(x: 49, y: 527))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 491]: 10
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 150, y: 528) > Vector(x: 149, y: 529) > Vector(x: 49, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 150, y: 580) > Vector(x: 149, y: 579) > Vector(x: 149, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 48, y: 580) > Vector(x: 49, y: 579) > Vector(x: 149, y: 579))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 48, y: 528) > Vector(x: 49, y: 529) > Vector(x: 49, y: 579))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 543]: 11
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 150, y: 580) > Vector(x: 149, y: 581) > Vector(x: 49, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 150, y: 632) > Vector(x: 149, y: 631) > Vector(x: 149, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 48, y: 632) > Vector(x: 49, y: 631) > Vector(x: 149, y: 631))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 48, y: 580) > Vector(x: 49, y: 581) > Vector(x: 49, y: 631))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 595]: 12
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 150, y: 632) > Vector(x: 149, y: 633) > Vector(x: 49, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 150, y: 684) > Vector(x: 149, y: 683) > Vector(x: 149, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 48, y: 684) > Vector(x: 49, y: 683) > Vector(x: 149, y: 683))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 48, y: 632) > Vector(x: 49, y: 633) > Vector(x: 49, y: 683))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 647]: 13
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 150, y: 684) > Vector(x: 149, y: 685) > Vector(x: 49, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 150, y: 736) > Vector(x: 149, y: 735) > Vector(x: 149, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 48, y: 736) > Vector(x: 49, y: 735) > Vector(x: 149, y: 735))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 48, y: 684) > Vector(x: 49, y: 685) > Vector(x: 49, y: 735))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 699]: 14
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 150, y: 736) > Vector(x: 149, y: 737) > Vector(x: 49, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 150, y: 788) > Vector(x: 149, y: 787) > Vector(x: 149, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 48, y: 788) > Vector(x: 49, y: 787) > Vector(x: 149, y: 787))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 48, y: 736) > Vector(x: 49, y: 737) > Vector(x: 49, y: 787))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 751]: 15
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 150, y: 788) > Vector(x: 149, y: 789) > Vector(x: 49, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 150, y: 840) > Vector(x: 149, y: 839) > Vector(x: 149, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 48, y: 840) > Vector(x: 49, y: 839) > Vector(x: 149, y: 839))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 48, y: 788) > Vector(x: 49, y: 789) > Vector(x: 49, y: 839))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 803]: 16
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 150, y: 840) > Vector(x: 149, y: 841) > Vector(x: 49, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 150, y: 892) > Vector(x: 149, y: 891) > Vector(x: 149, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 48, y: 892) > Vector(x: 49, y: 891) > Vector(x: 149, y: 891))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 48, y: 840) > Vector(x: 49, y: 841) > Vector(x: 49, y: 891))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 855]: 17
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 150, y: 892) > Vector(x: 149, y: 893) > Vector(x: 49, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 150, y: 944) > Vector(x: 149, y: 943) > Vector(x: 149, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 48, y: 944) > Vector(x: 49, y: 943) > Vector(x: 149, y: 943))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 48, y: 892) > Vector(x: 49, y: 893) > Vector(x: 49, y: 943))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 907]: 18
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 150, y: 944) > Vector(x: 149, y: 945) > Vector(x: 49, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 150, y: 996) > Vector(x: 149, y: 995) > Vector(x: 149, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 48, y: 996) > Vector(x: 49, y: 995) > Vector(x: 149, y: 995))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 48, y: 944) > Vector(x: 49, y: 945) > Vector(x: 49, y: 995))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 959]: 19
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 150, y: 996) > Vector(x: 149, y: 997) > Vector(x: 49, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1047) > Vector(x: 149, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1047) > Vector(x: 149, y: 1047))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 48, y: 996) > Vector(x: 49, y: 997) > Vector(x: 49, y: 1047))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1011]: 20
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1049) > Vector(x: 49, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1099) > Vector(x: 149, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1099) > Vector(x: 149, y: 1099))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1049) > Vector(x: 49, y: 1099))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1063]: 21
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1101) > Vector(x: 49, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1151) > Vector(x: 149, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1151) > Vector(x: 149, y: 1151))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1101) > Vector(x: 49, y: 1151))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1115]: 22
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1153) > Vector(x: 49, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1203) > Vector(x: 149, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1203) > Vector(x: 149, y: 1203))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1153) > Vector(x: 49, y: 1203))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1167]: 23
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1205) > Vector(x: 49, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1255) > Vector(x: 149, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1255) > Vector(x: 149, y: 1255))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1205) > Vector(x: 49, y: 1255))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1219]: 24
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1257) > Vector(x: 49, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1307) > Vector(x: 149, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1307) > Vector(x: 149, y: 1307))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1257) > Vector(x: 49, y: 1307))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1271]: 25
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1309) > Vector(x: 49, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1359) > Vector(x: 149, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1359) > Vector(x: 149, y: 1359))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1309) > Vector(x: 49, y: 1359))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1323]: 26
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1361) > Vector(x: 49, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1411) > Vector(x: 149, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1411) > Vector(x: 149, y: 1411))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1361) > Vector(x: 49, y: 1411))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1375]: 27
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1413) > Vector(x: 49, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1463) > Vector(x: 149, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1463) > Vector(x: 149, y: 1463))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1413) > Vector(x: 49, y: 1463))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1427]: 28
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1465) > Vector(x: 49, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1515) > Vector(x: 149, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1515) > Vector(x: 149, y: 1515))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1465) > Vector(x: 49, y: 1515))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1479]: 29
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1517) > Vector(x: 49, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1567) > Vector(x: 149, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1567) > Vector(x: 149, y: 1567))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1517) > Vector(x: 49, y: 1567))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1531]: 30
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1569) > Vector(x: 49, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1619) > Vector(x: 149, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1619) > Vector(x: 149, y: 1619))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1569) > Vector(x: 49, y: 1619))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1583]: 31
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1621) > Vector(x: 49, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1671) > Vector(x: 149, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1671) > Vector(x: 149, y: 1671))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1621) > Vector(x: 49, y: 1671))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1635]: 32
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1673) > Vector(x: 49, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1723) > Vector(x: 149, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1723) > Vector(x: 149, y: 1723))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1673) > Vector(x: 49, y: 1723))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1687]: 33
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1725) > Vector(x: 49, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1775) > Vector(x: 149, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1775) > Vector(x: 149, y: 1775))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1725) > Vector(x: 49, y: 1775))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1739]: 34
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1777) > Vector(x: 49, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1827) > Vector(x: 149, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1827) > Vector(x: 149, y: 1827))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1777) > Vector(x: 49, y: 1827))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1791]: 35
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1829) > Vector(x: 49, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1879) > Vector(x: 149, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1879) > Vector(x: 149, y: 1879))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1829) > Vector(x: 49, y: 1879))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1843]: 36
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1881) > Vector(x: 49, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1931) > Vector(x: 149, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1931) > Vector(x: 149, y: 1931))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1881) > Vector(x: 49, y: 1931))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1895]: 37
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1933) > Vector(x: 49, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1983) > Vector(x: 149, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1983) > Vector(x: 149, y: 1983))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1933) > Vector(x: 49, y: 1983))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1947]: 38
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1985) > Vector(x: 49, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2035) > Vector(x: 149, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2035) > Vector(x: 149, y: 2035))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1985) > Vector(x: 49, y: 2035))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 1999]: 39
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2037) > Vector(x: 49, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2087) > Vector(x: 149, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2087) > Vector(x: 149, y: 2087))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2037) > Vector(x: 49, y: 2087))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2051]: 40
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2089) > Vector(x: 49, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2139) > Vector(x: 149, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2139) > Vector(x: 149, y: 2139))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2089) > Vector(x: 49, y: 2139))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2103]: 41
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2141) > Vector(x: 49, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2191) > Vector(x: 149, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2191) > Vector(x: 149, y: 2191))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2141) > Vector(x: 49, y: 2191))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2155]: 42
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2193) > Vector(x: 49, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2243) > Vector(x: 149, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2243) > Vector(x: 149, y: 2243))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2193) > Vector(x: 49, y: 2243))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2207]: 43
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2245) > Vector(x: 49, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2295) > Vector(x: 149, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2295) > Vector(x: 149, y: 2295))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2245) > Vector(x: 49, y: 2295))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2259]: 44
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2297) > Vector(x: 49, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2347) > Vector(x: 149, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2347) > Vector(x: 149, y: 2347))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2297) > Vector(x: 49, y: 2347))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2311]: 45
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2349) > Vector(x: 49, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2399) > Vector(x: 149, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2399) > Vector(x: 149, y: 2399))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2349) > Vector(x: 49, y: 2399))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2363]: 46
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2401) > Vector(x: 49, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2451) > Vector(x: 149, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2451) > Vector(x: 149, y: 2451))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2401) > Vector(x: 49, y: 2451))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2415]: 47
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2453) > Vector(x: 49, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2503) > Vector(x: 149, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2503) > Vector(x: 149, y: 2503))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2453) > Vector(x: 49, y: 2503))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2467]: 48
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2505) > Vector(x: 49, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2555) > Vector(x: 149, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2555) > Vector(x: 149, y: 2555))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2505) > Vector(x: 49, y: 2555))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2519]: 49
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2557) > Vector(x: 49, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2607) > Vector(x: 149, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2607) > Vector(x: 149, y: 2607))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2557) > Vector(x: 49, y: 2607))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2571]: 50
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2609) > Vector(x: 49, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2659) > Vector(x: 149, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2659) > Vector(x: 149, y: 2659))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2609) > Vector(x: 49, y: 2659))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2623]: 51
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2661) > Vector(x: 49, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2711) > Vector(x: 149, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2711) > Vector(x: 149, y: 2711))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2661) > Vector(x: 49, y: 2711))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2675]: 52
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2713) > Vector(x: 49, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2763) > Vector(x: 149, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2763) > Vector(x: 149, y: 2763))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2713) > Vector(x: 49, y: 2763))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2727]: 53
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2765) > Vector(x: 49, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2815) > Vector(x: 149, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2815) > Vector(x: 149, y: 2815))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2765) > Vector(x: 49, y: 2815))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2779]: 54
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2817) > Vector(x: 49, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2867) > Vector(x: 149, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2867) > Vector(x: 149, y: 2867))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2817) > Vector(x: 49, y: 2867))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2831]: 55
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2869) > Vector(x: 49, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2919) > Vector(x: 149, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2919) > Vector(x: 149, y: 2919))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2869) > Vector(x: 49, y: 2919))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2883]: 56
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2921) > Vector(x: 49, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2971) > Vector(x: 149, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2971) > Vector(x: 149, y: 2971))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2921) > Vector(x: 49, y: 2971))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2935]: 57
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2973) > Vector(x: 49, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3023) > Vector(x: 149, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3023) > Vector(x: 149, y: 3023))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2973) > Vector(x: 49, y: 3023))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2987]: 58
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3025) > Vector(x: 49, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3075) > Vector(x: 149, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3075) > Vector(x: 149, y: 3075))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3025) > Vector(x: 49, y: 3075))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3039]: 59
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3077) > Vector(x: 49, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3127) > Vector(x: 149, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3127) > Vector(x: 149, y: 3127))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3077) > Vector(x: 49, y: 3127))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3091]: 60
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3129) > Vector(x: 49, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3179) > Vector(x: 149, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3179) > Vector(x: 149, y: 3179))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3129) > Vector(x: 49, y: 3179))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3143]: 61
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3181) > Vector(x: 49, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3231) > Vector(x: 149, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3231) > Vector(x: 149, y: 3231))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3181) > Vector(x: 49, y: 3231))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3195]: 62
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3233) > Vector(x: 49, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3283) > Vector(x: 149, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3283) > Vector(x: 149, y: 3283))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3233) > Vector(x: 49, y: 3283))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3247]: 63
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3285) > Vector(x: 49, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3335) > Vector(x: 149, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3335) > Vector(x: 149, y: 3335))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3285) > Vector(x: 49, y: 3335))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3299]: 64
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3337) > Vector(x: 49, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3387) > Vector(x: 149, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3387) > Vector(x: 149, y: 3387))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3337) > Vector(x: 49, y: 3387))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3351]: 65
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3389) > Vector(x: 49, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3439) > Vector(x: 149, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3439) > Vector(x: 149, y: 3439))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3389) > Vector(x: 49, y: 3439))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3403]: 66
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3441) > Vector(x: 49, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3491) > Vector(x: 149, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3491) > Vector(x: 149, y: 3491))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3441) > Vector(x: 49, y: 3491))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3455]: 67
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3493) > Vector(x: 49, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3543) > Vector(x: 149, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3543) > Vector(x: 149, y: 3543))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3493) > Vector(x: 49, y: 3543))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3507]: 68
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3545) > Vector(x: 49, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3595) > Vector(x: 149, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3595) > Vector(x: 149, y: 3595))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3545) > Vector(x: 49, y: 3595))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3559]: 69
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3597) > Vector(x: 49, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3647) > Vector(x: 149, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3647) > Vector(x: 149, y: 3647))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3597) > Vector(x: 49, y: 3647))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3611]: 70
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3649) > Vector(x: 49, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3699) > Vector(x: 149, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3699) > Vector(x: 149, y: 3699))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3649) > Vector(x: 49, y: 3699))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3663]: 71
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3701) > Vector(x: 49, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3751) > Vector(x: 149, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3751) > Vector(x: 149, y: 3751))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3701) > Vector(x: 49, y: 3751))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3715]: 72
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3753) > Vector(x: 49, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3803) > Vector(x: 149, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3803) > Vector(x: 149, y: 3803))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3753) > Vector(x: 49, y: 3803))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3767]: 73
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3805) > Vector(x: 49, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3855) > Vector(x: 149, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3855) > Vector(x: 149, y: 3855))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3805) > Vector(x: 49, y: 3855))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3819]: 74
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3857) > Vector(x: 49, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3907) > Vector(x: 149, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3907) > Vector(x: 149, y: 3907))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3857) > Vector(x: 49, y: 3907))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3871]: 75
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3909) > Vector(x: 49, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3959) > Vector(x: 149, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3959) > Vector(x: 149, y: 3959))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3909) > Vector(x: 49, y: 3959))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3923]: 76
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3961) > Vector(x: 49, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4011) > Vector(x: 149, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4011) > Vector(x: 149, y: 4011))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3961) > Vector(x: 49, y: 4011))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3975]: 77
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4013) > Vector(x: 49, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4063) > Vector(x: 149, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4063) > Vector(x: 149, y: 4063))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4013) > Vector(x: 49, y: 4063))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4027]: 78
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4065) > Vector(x: 49, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4115) > Vector(x: 149, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4115) > Vector(x: 149, y: 4115))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4065) > Vector(x: 49, y: 4115))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4079]: 79
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4117) > Vector(x: 49, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4167) > Vector(x: 149, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4167) > Vector(x: 149, y: 4167))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4117) > Vector(x: 49, y: 4167))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4131]: 80
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4169) > Vector(x: 49, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4219) > Vector(x: 149, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4219) > Vector(x: 149, y: 4219))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4169) > Vector(x: 49, y: 4219))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4183]: 81
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4221) > Vector(x: 49, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4271) > Vector(x: 149, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4271) > Vector(x: 149, y: 4271))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4221) > Vector(x: 49, y: 4271))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4235]: 82
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4273) > Vector(x: 49, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4323) > Vector(x: 149, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4323) > Vector(x: 149, y: 4323))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4273) > Vector(x: 49, y: 4323))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4287]: 83
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4325) > Vector(x: 49, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4375) > Vector(x: 149, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4375) > Vector(x: 149, y: 4375))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4325) > Vector(x: 49, y: 4375))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4339]: 84
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4377) > Vector(x: 49, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4427) > Vector(x: 149, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4427) > Vector(x: 149, y: 4427))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4377) > Vector(x: 49, y: 4427))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4391]: 85
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4429) > Vector(x: 49, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4479) > Vector(x: 149, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4479) > Vector(x: 149, y: 4479))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4429) > Vector(x: 49, y: 4479))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4443]: 86
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4481) > Vector(x: 49, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4531) > Vector(x: 149, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4531) > Vector(x: 149, y: 4531))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4481) > Vector(x: 49, y: 4531))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4495]: 87
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4533) > Vector(x: 49, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4583) > Vector(x: 149, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4583) > Vector(x: 149, y: 4583))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4533) > Vector(x: 49, y: 4583))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4547]: 88
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4585) > Vector(x: 49, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4635) > Vector(x: 149, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4635) > Vector(x: 149, y: 4635))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4585) > Vector(x: 49, y: 4635))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4599]: 89
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4637) > Vector(x: 49, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4687) > Vector(x: 149, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4687) > Vector(x: 149, y: 4687))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4637) > Vector(x: 49, y: 4687))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4651]: 90
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4689) > Vector(x: 49, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4739) > Vector(x: 149, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4739) > Vector(x: 149, y: 4739))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4689) > Vector(x: 49, y: 4739))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4703]: 91
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4741) > Vector(x: 49, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4791) > Vector(x: 149, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4791) > Vector(x: 149, y: 4791))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4741) > Vector(x: 49, y: 4791))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4755]: 92
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4793) > Vector(x: 49, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4843) > Vector(x: 149, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4843) > Vector(x: 149, y: 4843))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4793) > Vector(x: 49, y: 4843))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4807]: 93
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4845) > Vector(x: 49, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4895) > Vector(x: 149, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4895) > Vector(x: 149, y: 4895))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4845) > Vector(x: 49, y: 4895))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4859]: 94
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4897) > Vector(x: 49, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4947) > Vector(x: 149, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4947) > Vector(x: 149, y: 4947))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4897) > Vector(x: 49, y: 4947))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4911]: 95
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4949) > Vector(x: 49, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 4999) > Vector(x: 149, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 4999) > Vector(x: 149, y: 4999))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4949) > Vector(x: 49, y: 4999))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 4963]: 96
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 5001) > Vector(x: 49, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5051) > Vector(x: 149, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5051) > Vector(x: 149, y: 5051))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 5001) > Vector(x: 49, y: 5051))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5015]: 97
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5053) > Vector(x: 49, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5103) > Vector(x: 149, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5103) > Vector(x: 149, y: 5103))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5053) > Vector(x: 49, y: 5103))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5067]: 98
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5105) > Vector(x: 49, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5155) > Vector(x: 149, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5155) > Vector(x: 149, y: 5155))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5105) > Vector(x: 49, y: 5155))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 5119]: 99
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5157) > Vector(x: 49, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 150, y: 5208) > Vector(x: 149, y: 5207) > Vector(x: 149, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5208) > Vector(x: 48, y: 5208) > Vector(x: 49, y: 5207) > Vector(x: 149, y: 5207))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5208) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5157) > Vector(x: 49, y: 5207))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[89, 5171]: 100

View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title>List tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
var supportedTypes = ["decimal","decimal-leading-zero","upper-roman","lower-roman","lower-alpha","upper-alpha"];
for (var i = 1;i<=100;i++){
$('#dynamic').append($('<li />').text(i).css('list-style-type',supportedTypes[4]));
}
}
</script>
<style>
#dynamic{
list-style-type:decimal;
list-style-position: inside;
font-size:20px;
line-height:50px;
}
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
float:left;
}
h2 {
clear:both;
}
li{
border:1px solid black;
width:100px;
margin:0;
}
ol{
margin:0;
}
</style>
</head>
<body>
<ol id="dynamic"></ol>
</body>
</html>

View File

@ -0,0 +1,603 @@
Window: [800, 5216]
Rectangle: [0, 0, 800, 5216] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 8) > Vector(x: 150, y: 8) > Vector(x: 149, y: 9) > Vector(x: 49, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 8) > Vector(x: 150, y: 60) > Vector(x: 149, y: 59) > Vector(x: 149, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 48, y: 60) > Vector(x: 49, y: 59) > Vector(x: 149, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 48, y: 8) > Vector(x: 49, y: 9) > Vector(x: 49, y: 59))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[68, 23]: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 150, y: 60) > Vector(x: 149, y: 61) > Vector(x: 49, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 150, y: 112) > Vector(x: 149, y: 111) > Vector(x: 149, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 48, y: 112) > Vector(x: 49, y: 111) > Vector(x: 149, y: 111))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 48, y: 60) > Vector(x: 49, y: 61) > Vector(x: 49, y: 111))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 75]: 2
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 150, y: 112) > Vector(x: 149, y: 113) > Vector(x: 49, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 150, y: 164) > Vector(x: 149, y: 163) > Vector(x: 149, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 48, y: 164) > Vector(x: 49, y: 163) > Vector(x: 149, y: 163))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 48, y: 112) > Vector(x: 49, y: 113) > Vector(x: 49, y: 163))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[68, 127]: 3
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 150, y: 164) > Vector(x: 149, y: 165) > Vector(x: 49, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 150, y: 216) > Vector(x: 149, y: 215) > Vector(x: 149, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 48, y: 216) > Vector(x: 49, y: 215) > Vector(x: 149, y: 215))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 48, y: 164) > Vector(x: 49, y: 165) > Vector(x: 49, y: 215))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 179]: 4
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 150, y: 216) > Vector(x: 149, y: 217) > Vector(x: 49, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 150, y: 268) > Vector(x: 149, y: 267) > Vector(x: 149, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 48, y: 268) > Vector(x: 49, y: 267) > Vector(x: 149, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 48, y: 216) > Vector(x: 49, y: 217) > Vector(x: 49, y: 267))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[68, 231]: 5
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 150, y: 268) > Vector(x: 149, y: 269) > Vector(x: 49, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 150, y: 320) > Vector(x: 149, y: 319) > Vector(x: 149, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 48, y: 320) > Vector(x: 49, y: 319) > Vector(x: 149, y: 319))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 48, y: 268) > Vector(x: 49, y: 269) > Vector(x: 49, y: 319))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[66, 283]: 6
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 150, y: 320) > Vector(x: 149, y: 321) > Vector(x: 49, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 150, y: 372) > Vector(x: 149, y: 371) > Vector(x: 149, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 48, y: 372) > Vector(x: 49, y: 371) > Vector(x: 149, y: 371))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 48, y: 320) > Vector(x: 49, y: 321) > Vector(x: 49, y: 371))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 335]: 7
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 150, y: 372) > Vector(x: 149, y: 373) > Vector(x: 49, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 150, y: 424) > Vector(x: 149, y: 423) > Vector(x: 149, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 48, y: 424) > Vector(x: 49, y: 423) > Vector(x: 149, y: 423))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 48, y: 372) > Vector(x: 49, y: 373) > Vector(x: 49, y: 423))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 387]: 8
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 150, y: 424) > Vector(x: 149, y: 425) > Vector(x: 49, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 150, y: 476) > Vector(x: 149, y: 475) > Vector(x: 149, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 48, y: 476) > Vector(x: 49, y: 475) > Vector(x: 149, y: 475))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 48, y: 424) > Vector(x: 49, y: 425) > Vector(x: 49, y: 475))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[65, 439]: 9
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 150, y: 476) > Vector(x: 149, y: 477) > Vector(x: 49, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 150, y: 528) > Vector(x: 149, y: 527) > Vector(x: 149, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 48, y: 528) > Vector(x: 49, y: 527) > Vector(x: 149, y: 527))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 48, y: 476) > Vector(x: 49, y: 477) > Vector(x: 49, y: 527))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[65, 491]: 10
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 150, y: 528) > Vector(x: 149, y: 529) > Vector(x: 49, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 150, y: 580) > Vector(x: 149, y: 579) > Vector(x: 149, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 48, y: 580) > Vector(x: 49, y: 579) > Vector(x: 149, y: 579))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 48, y: 528) > Vector(x: 49, y: 529) > Vector(x: 49, y: 579))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 543]: 11
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 150, y: 580) > Vector(x: 149, y: 581) > Vector(x: 49, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 150, y: 632) > Vector(x: 149, y: 631) > Vector(x: 149, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 48, y: 632) > Vector(x: 49, y: 631) > Vector(x: 149, y: 631))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 48, y: 580) > Vector(x: 49, y: 581) > Vector(x: 49, y: 631))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[65, 595]: 12
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 150, y: 632) > Vector(x: 149, y: 633) > Vector(x: 49, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 150, y: 684) > Vector(x: 149, y: 683) > Vector(x: 149, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 48, y: 684) > Vector(x: 49, y: 683) > Vector(x: 149, y: 683))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 48, y: 632) > Vector(x: 49, y: 633) > Vector(x: 49, y: 683))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 647]: 13
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 150, y: 684) > Vector(x: 149, y: 685) > Vector(x: 49, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 150, y: 736) > Vector(x: 149, y: 735) > Vector(x: 149, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 48, y: 736) > Vector(x: 49, y: 735) > Vector(x: 149, y: 735))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 48, y: 684) > Vector(x: 49, y: 685) > Vector(x: 49, y: 735))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 699]: 14
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 150, y: 736) > Vector(x: 149, y: 737) > Vector(x: 49, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 150, y: 788) > Vector(x: 149, y: 787) > Vector(x: 149, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 48, y: 788) > Vector(x: 49, y: 787) > Vector(x: 149, y: 787))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 48, y: 736) > Vector(x: 49, y: 737) > Vector(x: 49, y: 787))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 751]: 15
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 150, y: 788) > Vector(x: 149, y: 789) > Vector(x: 49, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 150, y: 840) > Vector(x: 149, y: 839) > Vector(x: 149, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 48, y: 840) > Vector(x: 49, y: 839) > Vector(x: 149, y: 839))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 48, y: 788) > Vector(x: 49, y: 789) > Vector(x: 49, y: 839))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 803]: 16
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 150, y: 840) > Vector(x: 149, y: 841) > Vector(x: 49, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 150, y: 892) > Vector(x: 149, y: 891) > Vector(x: 149, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 48, y: 892) > Vector(x: 49, y: 891) > Vector(x: 149, y: 891))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 48, y: 840) > Vector(x: 49, y: 841) > Vector(x: 49, y: 891))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 855]: 17
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 150, y: 892) > Vector(x: 149, y: 893) > Vector(x: 49, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 150, y: 944) > Vector(x: 149, y: 943) > Vector(x: 149, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 48, y: 944) > Vector(x: 49, y: 943) > Vector(x: 149, y: 943))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 48, y: 892) > Vector(x: 49, y: 893) > Vector(x: 49, y: 943))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[66, 907]: 18
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 150, y: 944) > Vector(x: 149, y: 945) > Vector(x: 49, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 150, y: 996) > Vector(x: 149, y: 995) > Vector(x: 149, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 48, y: 996) > Vector(x: 49, y: 995) > Vector(x: 149, y: 995))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 48, y: 944) > Vector(x: 49, y: 945) > Vector(x: 49, y: 995))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[67, 959]: 19
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 150, y: 996) > Vector(x: 149, y: 997) > Vector(x: 49, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1047) > Vector(x: 149, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1047) > Vector(x: 149, y: 1047))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 48, y: 996) > Vector(x: 49, y: 997) > Vector(x: 49, y: 1047))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[65, 1011]: 20
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1049) > Vector(x: 49, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1099) > Vector(x: 149, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1099) > Vector(x: 149, y: 1099))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1049) > Vector(x: 49, y: 1099))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 1063]: 21
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1101) > Vector(x: 49, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1151) > Vector(x: 149, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1151) > Vector(x: 149, y: 1151))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1101) > Vector(x: 49, y: 1151))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 1115]: 22
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1153) > Vector(x: 49, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1203) > Vector(x: 149, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1203) > Vector(x: 149, y: 1203))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1153) > Vector(x: 49, y: 1203))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 1167]: 23
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1205) > Vector(x: 49, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1255) > Vector(x: 149, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1255) > Vector(x: 149, y: 1255))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1205) > Vector(x: 49, y: 1255))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 1219]: 24
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1257) > Vector(x: 49, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1307) > Vector(x: 149, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1307) > Vector(x: 149, y: 1307))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1257) > Vector(x: 49, y: 1307))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[69, 1271]: 25
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1309) > Vector(x: 49, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1359) > Vector(x: 149, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1359) > Vector(x: 149, y: 1359))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1309) > Vector(x: 49, y: 1359))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[68, 1323]: 26
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1361) > Vector(x: 49, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1411) > Vector(x: 149, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1411) > Vector(x: 149, y: 1411))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1361) > Vector(x: 49, y: 1411))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 1375]: 27
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1413) > Vector(x: 49, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1463) > Vector(x: 149, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1463) > Vector(x: 149, y: 1463))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1413) > Vector(x: 49, y: 1463))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 1427]: 28
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1465) > Vector(x: 49, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1515) > Vector(x: 149, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1515) > Vector(x: 149, y: 1515))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1465) > Vector(x: 49, y: 1515))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 1479]: 29
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1517) > Vector(x: 49, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1567) > Vector(x: 149, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1567) > Vector(x: 149, y: 1567))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1517) > Vector(x: 49, y: 1567))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 1531]: 30
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1569) > Vector(x: 49, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1619) > Vector(x: 149, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1619) > Vector(x: 149, y: 1619))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1569) > Vector(x: 49, y: 1619))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 1583]: 31
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1621) > Vector(x: 49, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1671) > Vector(x: 149, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1671) > Vector(x: 149, y: 1671))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1621) > Vector(x: 49, y: 1671))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 1635]: 32
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1673) > Vector(x: 49, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1723) > Vector(x: 149, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1723) > Vector(x: 149, y: 1723))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1673) > Vector(x: 49, y: 1723))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 1687]: 33
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1725) > Vector(x: 49, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1775) > Vector(x: 149, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1775) > Vector(x: 149, y: 1775))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1725) > Vector(x: 49, y: 1775))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 1739]: 34
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1777) > Vector(x: 49, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1827) > Vector(x: 149, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1827) > Vector(x: 149, y: 1827))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1777) > Vector(x: 49, y: 1827))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 1791]: 35
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1829) > Vector(x: 49, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1879) > Vector(x: 149, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1879) > Vector(x: 149, y: 1879))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1829) > Vector(x: 49, y: 1879))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 1843]: 36
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1881) > Vector(x: 49, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1931) > Vector(x: 149, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1931) > Vector(x: 149, y: 1931))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1881) > Vector(x: 49, y: 1931))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 1895]: 37
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1932) > Vector(x: 150, y: 1932) > Vector(x: 149, y: 1933) > Vector(x: 49, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1932) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1983) > Vector(x: 149, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1983) > Vector(x: 149, y: 1983))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 48, y: 1932) > Vector(x: 49, y: 1933) > Vector(x: 49, y: 1983))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 1947]: 38
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1984) > Vector(x: 150, y: 1984) > Vector(x: 149, y: 1985) > Vector(x: 49, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1984) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2035) > Vector(x: 149, y: 1985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2035) > Vector(x: 149, y: 2035))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 48, y: 1984) > Vector(x: 49, y: 1985) > Vector(x: 49, y: 2035))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[83, 1999]: 39
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2036) > Vector(x: 150, y: 2036) > Vector(x: 149, y: 2037) > Vector(x: 49, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2036) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2087) > Vector(x: 149, y: 2037))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2087) > Vector(x: 149, y: 2087))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 48, y: 2036) > Vector(x: 49, y: 2037) > Vector(x: 49, y: 2087))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2051]: 40
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2088) > Vector(x: 150, y: 2088) > Vector(x: 149, y: 2089) > Vector(x: 49, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2088) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2139) > Vector(x: 149, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2139) > Vector(x: 149, y: 2139))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 48, y: 2088) > Vector(x: 49, y: 2089) > Vector(x: 49, y: 2139))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2103]: 41
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2140) > Vector(x: 150, y: 2140) > Vector(x: 149, y: 2141) > Vector(x: 49, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2140) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2191) > Vector(x: 149, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2191) > Vector(x: 149, y: 2191))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 48, y: 2140) > Vector(x: 49, y: 2141) > Vector(x: 49, y: 2191))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2155]: 42
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2192) > Vector(x: 150, y: 2192) > Vector(x: 149, y: 2193) > Vector(x: 49, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2192) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2243) > Vector(x: 149, y: 2193))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2243) > Vector(x: 149, y: 2243))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 48, y: 2192) > Vector(x: 49, y: 2193) > Vector(x: 49, y: 2243))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2207]: 43
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2244) > Vector(x: 150, y: 2244) > Vector(x: 149, y: 2245) > Vector(x: 49, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2244) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2295) > Vector(x: 149, y: 2245))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2295) > Vector(x: 149, y: 2295))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 48, y: 2244) > Vector(x: 49, y: 2245) > Vector(x: 49, y: 2295))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 2259]: 44
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2296) > Vector(x: 150, y: 2296) > Vector(x: 149, y: 2297) > Vector(x: 49, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2296) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2347) > Vector(x: 149, y: 2297))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2347) > Vector(x: 149, y: 2347))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 48, y: 2296) > Vector(x: 49, y: 2297) > Vector(x: 49, y: 2347))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[76, 2311]: 45
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2348) > Vector(x: 150, y: 2348) > Vector(x: 149, y: 2349) > Vector(x: 49, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2348) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2399) > Vector(x: 149, y: 2349))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2399) > Vector(x: 149, y: 2399))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 48, y: 2348) > Vector(x: 49, y: 2349) > Vector(x: 49, y: 2399))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 2363]: 46
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2400) > Vector(x: 150, y: 2400) > Vector(x: 149, y: 2401) > Vector(x: 49, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2400) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2451) > Vector(x: 149, y: 2401))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2451) > Vector(x: 149, y: 2451))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 48, y: 2400) > Vector(x: 49, y: 2401) > Vector(x: 49, y: 2451))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2415]: 47
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2452) > Vector(x: 150, y: 2452) > Vector(x: 149, y: 2453) > Vector(x: 49, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2452) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2503) > Vector(x: 149, y: 2453))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2503) > Vector(x: 149, y: 2503))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 48, y: 2452) > Vector(x: 49, y: 2453) > Vector(x: 49, y: 2503))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2467]: 48
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2504) > Vector(x: 150, y: 2504) > Vector(x: 149, y: 2505) > Vector(x: 49, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2504) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2555) > Vector(x: 149, y: 2505))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2555) > Vector(x: 149, y: 2555))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 48, y: 2504) > Vector(x: 49, y: 2505) > Vector(x: 49, y: 2555))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[82, 2519]: 49
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2556) > Vector(x: 150, y: 2556) > Vector(x: 149, y: 2557) > Vector(x: 49, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2556) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2607) > Vector(x: 149, y: 2557))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2607) > Vector(x: 149, y: 2607))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 48, y: 2556) > Vector(x: 49, y: 2557) > Vector(x: 49, y: 2607))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2571]: 50
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2608) > Vector(x: 150, y: 2608) > Vector(x: 149, y: 2609) > Vector(x: 49, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2608) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2659) > Vector(x: 149, y: 2609))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2659) > Vector(x: 149, y: 2659))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 48, y: 2608) > Vector(x: 49, y: 2609) > Vector(x: 49, y: 2659))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2623]: 51
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2660) > Vector(x: 150, y: 2660) > Vector(x: 149, y: 2661) > Vector(x: 49, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2660) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2711) > Vector(x: 149, y: 2661))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2711) > Vector(x: 149, y: 2711))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 48, y: 2660) > Vector(x: 49, y: 2661) > Vector(x: 49, y: 2711))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 2675]: 52
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2712) > Vector(x: 150, y: 2712) > Vector(x: 149, y: 2713) > Vector(x: 49, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2712) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2763) > Vector(x: 149, y: 2713))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2763) > Vector(x: 149, y: 2763))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 48, y: 2712) > Vector(x: 49, y: 2713) > Vector(x: 49, y: 2763))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2727]: 53
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2764) > Vector(x: 150, y: 2764) > Vector(x: 149, y: 2765) > Vector(x: 49, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2764) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2815) > Vector(x: 149, y: 2765))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2815) > Vector(x: 149, y: 2815))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 48, y: 2764) > Vector(x: 49, y: 2765) > Vector(x: 49, y: 2815))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2779]: 54
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2816) > Vector(x: 150, y: 2816) > Vector(x: 149, y: 2817) > Vector(x: 49, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2816) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2867) > Vector(x: 149, y: 2817))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2867) > Vector(x: 149, y: 2867))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 48, y: 2816) > Vector(x: 49, y: 2817) > Vector(x: 49, y: 2867))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2831]: 55
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2868) > Vector(x: 150, y: 2868) > Vector(x: 149, y: 2869) > Vector(x: 49, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2868) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2919) > Vector(x: 149, y: 2869))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2919) > Vector(x: 149, y: 2919))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 48, y: 2868) > Vector(x: 49, y: 2869) > Vector(x: 49, y: 2919))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 2883]: 56
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2920) > Vector(x: 150, y: 2920) > Vector(x: 149, y: 2921) > Vector(x: 49, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2920) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2971) > Vector(x: 149, y: 2921))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2971) > Vector(x: 149, y: 2971))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 48, y: 2920) > Vector(x: 49, y: 2921) > Vector(x: 49, y: 2971))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2935]: 57
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2972) > Vector(x: 150, y: 2972) > Vector(x: 149, y: 2973) > Vector(x: 49, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2972) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3023) > Vector(x: 149, y: 2973))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3023) > Vector(x: 149, y: 3023))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 48, y: 2972) > Vector(x: 49, y: 2973) > Vector(x: 49, y: 3023))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[76, 2987]: 58
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3024) > Vector(x: 150, y: 3024) > Vector(x: 149, y: 3025) > Vector(x: 49, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3024) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3075) > Vector(x: 149, y: 3025))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3075) > Vector(x: 149, y: 3075))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 48, y: 3024) > Vector(x: 49, y: 3025) > Vector(x: 49, y: 3075))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3039]: 59
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3076) > Vector(x: 150, y: 3076) > Vector(x: 149, y: 3077) > Vector(x: 49, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3076) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3127) > Vector(x: 149, y: 3077))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3127) > Vector(x: 149, y: 3127))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 48, y: 3076) > Vector(x: 49, y: 3077) > Vector(x: 49, y: 3127))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3091]: 60
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3128) > Vector(x: 150, y: 3128) > Vector(x: 149, y: 3129) > Vector(x: 49, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3128) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3179) > Vector(x: 149, y: 3129))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3179) > Vector(x: 149, y: 3179))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 48, y: 3128) > Vector(x: 49, y: 3129) > Vector(x: 49, y: 3179))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 3143]: 61
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3180) > Vector(x: 150, y: 3180) > Vector(x: 149, y: 3181) > Vector(x: 49, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3180) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3231) > Vector(x: 149, y: 3181))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3231) > Vector(x: 149, y: 3231))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 48, y: 3180) > Vector(x: 49, y: 3181) > Vector(x: 49, y: 3231))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 3195]: 62
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3232) > Vector(x: 150, y: 3232) > Vector(x: 149, y: 3233) > Vector(x: 49, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3232) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3283) > Vector(x: 149, y: 3233))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3283) > Vector(x: 149, y: 3283))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 48, y: 3232) > Vector(x: 49, y: 3233) > Vector(x: 49, y: 3283))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3247]: 63
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3284) > Vector(x: 150, y: 3284) > Vector(x: 149, y: 3285) > Vector(x: 49, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3284) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3335) > Vector(x: 149, y: 3285))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3335) > Vector(x: 149, y: 3335))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 48, y: 3284) > Vector(x: 49, y: 3285) > Vector(x: 49, y: 3335))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 3299]: 64
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3336) > Vector(x: 150, y: 3336) > Vector(x: 149, y: 3337) > Vector(x: 49, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3336) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3387) > Vector(x: 149, y: 3337))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3387) > Vector(x: 149, y: 3387))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 48, y: 3336) > Vector(x: 49, y: 3337) > Vector(x: 49, y: 3387))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[85, 3351]: 65
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3388) > Vector(x: 150, y: 3388) > Vector(x: 149, y: 3389) > Vector(x: 49, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3388) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3439) > Vector(x: 149, y: 3389))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3439) > Vector(x: 149, y: 3439))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 48, y: 3388) > Vector(x: 49, y: 3389) > Vector(x: 49, y: 3439))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3403]: 66
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3440) > Vector(x: 150, y: 3440) > Vector(x: 149, y: 3441) > Vector(x: 49, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3440) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3491) > Vector(x: 149, y: 3441))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3491) > Vector(x: 149, y: 3491))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 48, y: 3440) > Vector(x: 49, y: 3441) > Vector(x: 49, y: 3491))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3455]: 67
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3492) > Vector(x: 150, y: 3492) > Vector(x: 149, y: 3493) > Vector(x: 49, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3492) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3543) > Vector(x: 149, y: 3493))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3543) > Vector(x: 149, y: 3543))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 48, y: 3492) > Vector(x: 49, y: 3493) > Vector(x: 49, y: 3543))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3507]: 68
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3544) > Vector(x: 150, y: 3544) > Vector(x: 149, y: 3545) > Vector(x: 49, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3544) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3595) > Vector(x: 149, y: 3545))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3595) > Vector(x: 149, y: 3595))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 48, y: 3544) > Vector(x: 49, y: 3545) > Vector(x: 49, y: 3595))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3559]: 69
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3596) > Vector(x: 150, y: 3596) > Vector(x: 149, y: 3597) > Vector(x: 49, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3596) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3647) > Vector(x: 149, y: 3597))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3647) > Vector(x: 149, y: 3647))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 48, y: 3596) > Vector(x: 49, y: 3597) > Vector(x: 49, y: 3647))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[76, 3611]: 70
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3648) > Vector(x: 150, y: 3648) > Vector(x: 149, y: 3649) > Vector(x: 49, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3648) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3699) > Vector(x: 149, y: 3649))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3699) > Vector(x: 149, y: 3699))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 48, y: 3648) > Vector(x: 49, y: 3649) > Vector(x: 49, y: 3699))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 3663]: 71
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3700) > Vector(x: 150, y: 3700) > Vector(x: 149, y: 3701) > Vector(x: 49, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3700) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3751) > Vector(x: 149, y: 3701))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3751) > Vector(x: 149, y: 3751))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 48, y: 3700) > Vector(x: 49, y: 3701) > Vector(x: 49, y: 3751))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 3715]: 72
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3752) > Vector(x: 150, y: 3752) > Vector(x: 149, y: 3753) > Vector(x: 49, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3752) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3803) > Vector(x: 149, y: 3753))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3803) > Vector(x: 149, y: 3803))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 48, y: 3752) > Vector(x: 49, y: 3753) > Vector(x: 49, y: 3803))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3767]: 73
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3804) > Vector(x: 150, y: 3804) > Vector(x: 149, y: 3805) > Vector(x: 49, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3804) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3855) > Vector(x: 149, y: 3805))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3855) > Vector(x: 149, y: 3855))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 48, y: 3804) > Vector(x: 49, y: 3805) > Vector(x: 49, y: 3855))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3819]: 74
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3856) > Vector(x: 150, y: 3856) > Vector(x: 149, y: 3857) > Vector(x: 49, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3856) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3907) > Vector(x: 149, y: 3857))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3907) > Vector(x: 149, y: 3907))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 48, y: 3856) > Vector(x: 49, y: 3857) > Vector(x: 49, y: 3907))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[83, 3871]: 75
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3908) > Vector(x: 150, y: 3908) > Vector(x: 149, y: 3909) > Vector(x: 49, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3908) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3959) > Vector(x: 149, y: 3909))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3959) > Vector(x: 149, y: 3959))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 48, y: 3908) > Vector(x: 49, y: 3909) > Vector(x: 49, y: 3959))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3923]: 76
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3960) > Vector(x: 150, y: 3960) > Vector(x: 149, y: 3961) > Vector(x: 49, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3960) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4011) > Vector(x: 149, y: 3961))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4011) > Vector(x: 149, y: 4011))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 48, y: 3960) > Vector(x: 49, y: 3961) > Vector(x: 49, y: 4011))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 3975]: 77
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4012) > Vector(x: 150, y: 4012) > Vector(x: 149, y: 4013) > Vector(x: 49, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4012) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4063) > Vector(x: 149, y: 4013))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4063) > Vector(x: 149, y: 4063))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 48, y: 4012) > Vector(x: 49, y: 4013) > Vector(x: 49, y: 4063))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4027]: 78
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4064) > Vector(x: 150, y: 4064) > Vector(x: 149, y: 4065) > Vector(x: 49, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4064) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4115) > Vector(x: 149, y: 4065))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4115) > Vector(x: 149, y: 4115))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 48, y: 4064) > Vector(x: 49, y: 4065) > Vector(x: 49, y: 4115))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 4079]: 79
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4116) > Vector(x: 150, y: 4116) > Vector(x: 149, y: 4117) > Vector(x: 49, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4116) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4167) > Vector(x: 149, y: 4117))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4167) > Vector(x: 149, y: 4167))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 48, y: 4116) > Vector(x: 49, y: 4117) > Vector(x: 49, y: 4167))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4131]: 80
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4168) > Vector(x: 150, y: 4168) > Vector(x: 149, y: 4169) > Vector(x: 49, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4168) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4219) > Vector(x: 149, y: 4169))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4219) > Vector(x: 149, y: 4219))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 48, y: 4168) > Vector(x: 49, y: 4169) > Vector(x: 49, y: 4219))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 4183]: 81
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4220) > Vector(x: 150, y: 4220) > Vector(x: 149, y: 4221) > Vector(x: 49, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4220) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4271) > Vector(x: 149, y: 4221))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4271) > Vector(x: 149, y: 4271))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 48, y: 4220) > Vector(x: 49, y: 4221) > Vector(x: 49, y: 4271))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4235]: 82
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4272) > Vector(x: 150, y: 4272) > Vector(x: 149, y: 4273) > Vector(x: 49, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4272) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4323) > Vector(x: 149, y: 4273))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4323) > Vector(x: 149, y: 4323))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 48, y: 4272) > Vector(x: 49, y: 4273) > Vector(x: 49, y: 4323))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[77, 4287]: 83
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4324) > Vector(x: 150, y: 4324) > Vector(x: 149, y: 4325) > Vector(x: 49, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4324) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4375) > Vector(x: 149, y: 4325))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4375) > Vector(x: 149, y: 4375))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 48, y: 4324) > Vector(x: 49, y: 4325) > Vector(x: 49, y: 4375))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 4339]: 84
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4376) > Vector(x: 150, y: 4376) > Vector(x: 149, y: 4377) > Vector(x: 49, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4376) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4427) > Vector(x: 149, y: 4377))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4427) > Vector(x: 149, y: 4427))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 48, y: 4376) > Vector(x: 49, y: 4377) > Vector(x: 49, y: 4427))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4391]: 85
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4428) > Vector(x: 150, y: 4428) > Vector(x: 149, y: 4429) > Vector(x: 49, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4428) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4479) > Vector(x: 149, y: 4429))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4479) > Vector(x: 149, y: 4479))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 48, y: 4428) > Vector(x: 49, y: 4429) > Vector(x: 49, y: 4479))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4443]: 86
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4480) > Vector(x: 150, y: 4480) > Vector(x: 149, y: 4481) > Vector(x: 49, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4480) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4531) > Vector(x: 149, y: 4481))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4531) > Vector(x: 149, y: 4531))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 48, y: 4480) > Vector(x: 49, y: 4481) > Vector(x: 49, y: 4531))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 4495]: 87
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4532) > Vector(x: 150, y: 4532) > Vector(x: 149, y: 4533) > Vector(x: 49, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4532) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4583) > Vector(x: 149, y: 4533))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4583) > Vector(x: 149, y: 4583))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 48, y: 4532) > Vector(x: 49, y: 4533) > Vector(x: 49, y: 4583))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 4547]: 88
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4584) > Vector(x: 150, y: 4584) > Vector(x: 149, y: 4585) > Vector(x: 49, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4584) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4635) > Vector(x: 149, y: 4585))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4635) > Vector(x: 149, y: 4635))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 48, y: 4584) > Vector(x: 49, y: 4585) > Vector(x: 49, y: 4635))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4599]: 89
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4636) > Vector(x: 150, y: 4636) > Vector(x: 149, y: 4637) > Vector(x: 49, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4636) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4687) > Vector(x: 149, y: 4637))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4687) > Vector(x: 149, y: 4687))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 48, y: 4636) > Vector(x: 49, y: 4637) > Vector(x: 49, y: 4687))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 4651]: 90
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4688) > Vector(x: 150, y: 4688) > Vector(x: 149, y: 4689) > Vector(x: 49, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4688) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4739) > Vector(x: 149, y: 4689))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4739) > Vector(x: 149, y: 4739))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 48, y: 4688) > Vector(x: 49, y: 4689) > Vector(x: 49, y: 4739))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[83, 4703]: 91
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4740) > Vector(x: 150, y: 4740) > Vector(x: 149, y: 4741) > Vector(x: 49, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4740) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4791) > Vector(x: 149, y: 4741))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4791) > Vector(x: 149, y: 4791))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 48, y: 4740) > Vector(x: 49, y: 4741) > Vector(x: 49, y: 4791))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4755]: 92
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4792) > Vector(x: 150, y: 4792) > Vector(x: 149, y: 4793) > Vector(x: 49, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4792) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4843) > Vector(x: 149, y: 4793))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4843) > Vector(x: 149, y: 4843))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 48, y: 4792) > Vector(x: 49, y: 4793) > Vector(x: 49, y: 4843))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4807]: 93
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4844) > Vector(x: 150, y: 4844) > Vector(x: 149, y: 4845) > Vector(x: 49, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4844) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4895) > Vector(x: 149, y: 4845))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4895) > Vector(x: 149, y: 4895))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 48, y: 4844) > Vector(x: 49, y: 4845) > Vector(x: 49, y: 4895))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4859]: 94
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4896) > Vector(x: 150, y: 4896) > Vector(x: 149, y: 4897) > Vector(x: 49, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4896) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4947) > Vector(x: 149, y: 4897))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4947) > Vector(x: 149, y: 4947))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 48, y: 4896) > Vector(x: 49, y: 4897) > Vector(x: 49, y: 4947))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 4911]: 95
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4948) > Vector(x: 150, y: 4948) > Vector(x: 149, y: 4949) > Vector(x: 49, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4948) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 4999) > Vector(x: 149, y: 4949))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 4999) > Vector(x: 149, y: 4999))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 48, y: 4948) > Vector(x: 49, y: 4949) > Vector(x: 49, y: 4999))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[75, 4963]: 96
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5000) > Vector(x: 150, y: 5000) > Vector(x: 149, y: 5001) > Vector(x: 49, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5000) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5051) > Vector(x: 149, y: 5001))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5051) > Vector(x: 149, y: 5051))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 48, y: 5000) > Vector(x: 49, y: 5001) > Vector(x: 49, y: 5051))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[76, 5015]: 97
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5052) > Vector(x: 150, y: 5052) > Vector(x: 149, y: 5053) > Vector(x: 49, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5052) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5103) > Vector(x: 149, y: 5053))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5103) > Vector(x: 149, y: 5103))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 48, y: 5052) > Vector(x: 49, y: 5053) > Vector(x: 49, y: 5103))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 5067]: 98
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5104) > Vector(x: 150, y: 5104) > Vector(x: 149, y: 5105) > Vector(x: 49, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5104) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5155) > Vector(x: 149, y: 5105))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5155) > Vector(x: 149, y: 5155))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 48, y: 5104) > Vector(x: 49, y: 5105) > Vector(x: 49, y: 5155))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 5119]: 99
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5156) > Vector(x: 150, y: 5156) > Vector(x: 149, y: 5157) > Vector(x: 49, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5156) > Vector(x: 150, y: 5208) > Vector(x: 149, y: 5207) > Vector(x: 149, y: 5157))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5208) > Vector(x: 48, y: 5208) > Vector(x: 49, y: 5207) > Vector(x: 149, y: 5207))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5208) > Vector(x: 48, y: 5156) > Vector(x: 49, y: 5157) > Vector(x: 49, y: 5207))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 5171]: 100

View File

@ -0,0 +1,59 @@
<!DOCTYPE html>
<html>
<head>
<title>List tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
var supportedTypes = ["decimal","decimal-leading-zero","upper-roman","lower-roman","lower-alpha","upper-alpha"];
for (var i = 1;i<=100;i++){
$('#dynamic').append($('<li />').text(i).css('list-style-type',supportedTypes[2]));
}
}
</script>
<style>
#dynamic{
list-style-type:decimal;
list-style-position: inside;
font-size:20px;
line-height:50px;
}
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
float:left;
}
h2 {
clear:both;
}
li{
border:1px solid black;
width:100px;
margin:0;
}
ol{
margin:0;
}
</style>
</head>
<body>
<ol id="dynamic"></ol>
</body>
</html>

View File

@ -0,0 +1,603 @@
Window: [800, 5666]
Rectangle: [0, 0, 800, 5666] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 8) > Vector(x: 150, y: 8) > Vector(x: 149, y: 9) > Vector(x: 49, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 8) > Vector(x: 150, y: 60) > Vector(x: 149, y: 59) > Vector(x: 149, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 48, y: 60) > Vector(x: 49, y: 59) > Vector(x: 149, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 48, y: 8) > Vector(x: 49, y: 9) > Vector(x: 49, y: 59))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[66, 23]: 1
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 60) > Vector(x: 150, y: 60) > Vector(x: 149, y: 61) > Vector(x: 49, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 60) > Vector(x: 150, y: 112) > Vector(x: 149, y: 111) > Vector(x: 149, y: 61))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 48, y: 112) > Vector(x: 49, y: 111) > Vector(x: 149, y: 111))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 48, y: 60) > Vector(x: 49, y: 61) > Vector(x: 49, y: 111))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[72, 75]: 2
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 112) > Vector(x: 150, y: 112) > Vector(x: 149, y: 113) > Vector(x: 49, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 112) > Vector(x: 150, y: 164) > Vector(x: 149, y: 163) > Vector(x: 149, y: 113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 48, y: 164) > Vector(x: 49, y: 163) > Vector(x: 149, y: 163))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 48, y: 112) > Vector(x: 49, y: 113) > Vector(x: 49, y: 163))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[79, 127]: 3
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 164) > Vector(x: 150, y: 164) > Vector(x: 149, y: 165) > Vector(x: 49, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 164) > Vector(x: 150, y: 216) > Vector(x: 149, y: 215) > Vector(x: 149, y: 165))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 48, y: 216) > Vector(x: 49, y: 215) > Vector(x: 149, y: 215))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 48, y: 164) > Vector(x: 49, y: 165) > Vector(x: 49, y: 215))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[80, 179]: 4
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 216) > Vector(x: 150, y: 216) > Vector(x: 149, y: 217) > Vector(x: 49, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 216) > Vector(x: 150, y: 268) > Vector(x: 149, y: 267) > Vector(x: 149, y: 217))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 48, y: 268) > Vector(x: 49, y: 267) > Vector(x: 149, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 48, y: 216) > Vector(x: 49, y: 217) > Vector(x: 49, y: 267))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 231]: 5
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 268) > Vector(x: 150, y: 268) > Vector(x: 149, y: 269) > Vector(x: 49, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 268) > Vector(x: 150, y: 320) > Vector(x: 149, y: 319) > Vector(x: 149, y: 269))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 48, y: 320) > Vector(x: 49, y: 319) > Vector(x: 149, y: 319))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 48, y: 268) > Vector(x: 49, y: 269) > Vector(x: 49, y: 319))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[80, 283]: 6
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 320) > Vector(x: 150, y: 320) > Vector(x: 149, y: 321) > Vector(x: 49, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 320) > Vector(x: 150, y: 372) > Vector(x: 149, y: 371) > Vector(x: 149, y: 321))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 48, y: 372) > Vector(x: 49, y: 371) > Vector(x: 149, y: 371))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 48, y: 320) > Vector(x: 49, y: 321) > Vector(x: 49, y: 371))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[87, 335]: 7
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 372) > Vector(x: 150, y: 372) > Vector(x: 149, y: 373) > Vector(x: 49, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 372) > Vector(x: 150, y: 424) > Vector(x: 149, y: 423) > Vector(x: 149, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 48, y: 424) > Vector(x: 49, y: 423) > Vector(x: 149, y: 423))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 48, y: 372) > Vector(x: 49, y: 373) > Vector(x: 49, y: 423))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[93, 387]: 8
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 424) > Vector(x: 150, y: 424) > Vector(x: 149, y: 425) > Vector(x: 49, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 424) > Vector(x: 150, y: 476) > Vector(x: 149, y: 475) > Vector(x: 149, y: 425))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 48, y: 476) > Vector(x: 49, y: 475) > Vector(x: 149, y: 475))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 48, y: 424) > Vector(x: 49, y: 425) > Vector(x: 49, y: 475))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[80, 439]: 9
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 476) > Vector(x: 150, y: 476) > Vector(x: 149, y: 477) > Vector(x: 49, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 476) > Vector(x: 150, y: 528) > Vector(x: 149, y: 527) > Vector(x: 149, y: 477))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 48, y: 528) > Vector(x: 49, y: 527) > Vector(x: 149, y: 527))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 48, y: 476) > Vector(x: 49, y: 477) > Vector(x: 49, y: 527))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[73, 491]: 10
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 528) > Vector(x: 150, y: 528) > Vector(x: 149, y: 529) > Vector(x: 49, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 528) > Vector(x: 150, y: 580) > Vector(x: 149, y: 579) > Vector(x: 149, y: 529))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 48, y: 580) > Vector(x: 49, y: 579) > Vector(x: 149, y: 579))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 48, y: 528) > Vector(x: 49, y: 529) > Vector(x: 49, y: 579))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[80, 543]: 11
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 580) > Vector(x: 150, y: 580) > Vector(x: 149, y: 581) > Vector(x: 49, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 580) > Vector(x: 150, y: 632) > Vector(x: 149, y: 631) > Vector(x: 149, y: 581))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 48, y: 632) > Vector(x: 49, y: 631) > Vector(x: 149, y: 631))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 48, y: 580) > Vector(x: 49, y: 581) > Vector(x: 49, y: 631))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[87, 595]: 12
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 632) > Vector(x: 150, y: 632) > Vector(x: 149, y: 633) > Vector(x: 49, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 632) > Vector(x: 150, y: 684) > Vector(x: 149, y: 683) > Vector(x: 149, y: 633))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 48, y: 684) > Vector(x: 49, y: 683) > Vector(x: 149, y: 683))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 48, y: 632) > Vector(x: 49, y: 633) > Vector(x: 49, y: 683))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[93, 647]: 13
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 684) > Vector(x: 150, y: 684) > Vector(x: 149, y: 685) > Vector(x: 49, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 684) > Vector(x: 150, y: 736) > Vector(x: 149, y: 735) > Vector(x: 149, y: 685))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 48, y: 736) > Vector(x: 49, y: 735) > Vector(x: 149, y: 735))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 48, y: 684) > Vector(x: 49, y: 685) > Vector(x: 49, y: 735))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[95, 699]: 14
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 736) > Vector(x: 150, y: 736) > Vector(x: 149, y: 737) > Vector(x: 49, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 736) > Vector(x: 150, y: 788) > Vector(x: 149, y: 787) > Vector(x: 149, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 48, y: 788) > Vector(x: 49, y: 787) > Vector(x: 149, y: 787))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 48, y: 736) > Vector(x: 49, y: 737) > Vector(x: 49, y: 787))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[88, 751]: 15
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 788) > Vector(x: 150, y: 788) > Vector(x: 149, y: 789) > Vector(x: 49, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 788) > Vector(x: 150, y: 840) > Vector(x: 149, y: 839) > Vector(x: 149, y: 789))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 48, y: 840) > Vector(x: 49, y: 839) > Vector(x: 149, y: 839))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 48, y: 788) > Vector(x: 49, y: 789) > Vector(x: 49, y: 839))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[95, 803]: 16
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 840) > Vector(x: 150, y: 840) > Vector(x: 149, y: 841) > Vector(x: 49, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 840) > Vector(x: 150, y: 892) > Vector(x: 149, y: 891) > Vector(x: 149, y: 841))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 48, y: 892) > Vector(x: 49, y: 891) > Vector(x: 149, y: 891))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 48, y: 840) > Vector(x: 49, y: 841) > Vector(x: 49, y: 891))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[101, 855]: 17
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 892) > Vector(x: 150, y: 892) > Vector(x: 149, y: 893) > Vector(x: 49, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 892) > Vector(x: 150, y: 944) > Vector(x: 149, y: 943) > Vector(x: 149, y: 893))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 48, y: 944) > Vector(x: 49, y: 943) > Vector(x: 149, y: 943))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 48, y: 892) > Vector(x: 49, y: 893) > Vector(x: 49, y: 943))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[108, 907]: 18
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 944) > Vector(x: 150, y: 944) > Vector(x: 149, y: 945) > Vector(x: 49, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 944) > Vector(x: 150, y: 996) > Vector(x: 149, y: 995) > Vector(x: 149, y: 945))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 48, y: 996) > Vector(x: 49, y: 995) > Vector(x: 149, y: 995))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 48, y: 944) > Vector(x: 49, y: 945) > Vector(x: 49, y: 995))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[95, 959]: 19
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 996) > Vector(x: 150, y: 996) > Vector(x: 149, y: 997) > Vector(x: 49, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 996) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1047) > Vector(x: 149, y: 997))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1047) > Vector(x: 149, y: 1047))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 48, y: 996) > Vector(x: 49, y: 997) > Vector(x: 49, y: 1047))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[88, 1011]: 20
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1048) > Vector(x: 150, y: 1048) > Vector(x: 149, y: 1049) > Vector(x: 49, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1048) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1099) > Vector(x: 149, y: 1049))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1099) > Vector(x: 149, y: 1099))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 48, y: 1048) > Vector(x: 49, y: 1049) > Vector(x: 49, y: 1099))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[95, 1063]: 21
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1100) > Vector(x: 150, y: 1100) > Vector(x: 149, y: 1101) > Vector(x: 49, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1100) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1151) > Vector(x: 149, y: 1101))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1151) > Vector(x: 149, y: 1151))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 48, y: 1100) > Vector(x: 49, y: 1101) > Vector(x: 49, y: 1151))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[101, 1115]: 22
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1152) > Vector(x: 150, y: 1152) > Vector(x: 149, y: 1153) > Vector(x: 49, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1152) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1203) > Vector(x: 149, y: 1153))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1203) > Vector(x: 149, y: 1203))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 48, y: 1152) > Vector(x: 49, y: 1153) > Vector(x: 49, y: 1203))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[108, 1167]: 23
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1204) > Vector(x: 150, y: 1204) > Vector(x: 149, y: 1205) > Vector(x: 49, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1204) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1255) > Vector(x: 149, y: 1205))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1255) > Vector(x: 149, y: 1255))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 48, y: 1204) > Vector(x: 49, y: 1205) > Vector(x: 49, y: 1255))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[109, 1219]: 24
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1256) > Vector(x: 150, y: 1256) > Vector(x: 149, y: 1257) > Vector(x: 49, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1256) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1307) > Vector(x: 149, y: 1257))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1307) > Vector(x: 149, y: 1307))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 48, y: 1256) > Vector(x: 49, y: 1257) > Vector(x: 49, y: 1307))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[102, 1271]: 25
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1308) > Vector(x: 150, y: 1308) > Vector(x: 149, y: 1309) > Vector(x: 49, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1308) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1359) > Vector(x: 149, y: 1309))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1359) > Vector(x: 149, y: 1359))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 48, y: 1308) > Vector(x: 49, y: 1309) > Vector(x: 49, y: 1359))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[109, 1323]: 26
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1360) > Vector(x: 150, y: 1360) > Vector(x: 149, y: 1361) > Vector(x: 49, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1360) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1411) > Vector(x: 149, y: 1361))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1411) > Vector(x: 149, y: 1411))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 48, y: 1360) > Vector(x: 49, y: 1361) > Vector(x: 49, y: 1411))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[116, 1375]: 27
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1412) > Vector(x: 150, y: 1412) > Vector(x: 149, y: 1413) > Vector(x: 49, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1412) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1463) > Vector(x: 149, y: 1413))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1463) > Vector(x: 149, y: 1463))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 48, y: 1412) > Vector(x: 49, y: 1413) > Vector(x: 49, y: 1463))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[122, 1427]: 28
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1464) > Vector(x: 150, y: 1464) > Vector(x: 149, y: 1465) > Vector(x: 49, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1464) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1515) > Vector(x: 149, y: 1465))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1515) > Vector(x: 149, y: 1515))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 48, y: 1464) > Vector(x: 49, y: 1465) > Vector(x: 49, y: 1515))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[109, 1479]: 29
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1516) > Vector(x: 150, y: 1516) > Vector(x: 149, y: 1517) > Vector(x: 49, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1516) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1567) > Vector(x: 149, y: 1517))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1567) > Vector(x: 149, y: 1567))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 48, y: 1516) > Vector(x: 49, y: 1517) > Vector(x: 49, y: 1567))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[102, 1531]: 30
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1568) > Vector(x: 150, y: 1568) > Vector(x: 149, y: 1569) > Vector(x: 49, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1568) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1619) > Vector(x: 149, y: 1569))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1619) > Vector(x: 149, y: 1619))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 48, y: 1568) > Vector(x: 49, y: 1569) > Vector(x: 49, y: 1619))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[109, 1583]: 31
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1620) > Vector(x: 150, y: 1620) > Vector(x: 149, y: 1621) > Vector(x: 49, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1620) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1671) > Vector(x: 149, y: 1621))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1671) > Vector(x: 149, y: 1671))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 48, y: 1620) > Vector(x: 49, y: 1621) > Vector(x: 49, y: 1671))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[116, 1635]: 32
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1672) > Vector(x: 150, y: 1672) > Vector(x: 149, y: 1673) > Vector(x: 49, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1672) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1723) > Vector(x: 149, y: 1673))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1723) > Vector(x: 149, y: 1723))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 48, y: 1672) > Vector(x: 49, y: 1673) > Vector(x: 49, y: 1723))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[122, 1687]: 33
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1724) > Vector(x: 150, y: 1724) > Vector(x: 149, y: 1725) > Vector(x: 49, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1724) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1775) > Vector(x: 149, y: 1725))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1775) > Vector(x: 149, y: 1775))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 48, y: 1724) > Vector(x: 49, y: 1725) > Vector(x: 49, y: 1775))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[123, 1739]: 34
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1776) > Vector(x: 150, y: 1776) > Vector(x: 149, y: 1777) > Vector(x: 49, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1776) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1827) > Vector(x: 149, y: 1777))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1827) > Vector(x: 149, y: 1827))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 48, y: 1776) > Vector(x: 49, y: 1777) > Vector(x: 49, y: 1827))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[117, 1791]: 35
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1828) > Vector(x: 150, y: 1828) > Vector(x: 149, y: 1829) > Vector(x: 49, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1828) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1879) > Vector(x: 149, y: 1829))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1879) > Vector(x: 149, y: 1879))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 48, y: 1828) > Vector(x: 49, y: 1829) > Vector(x: 49, y: 1879))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[123, 1843]: 36
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1880) > Vector(x: 150, y: 1880) > Vector(x: 149, y: 1881) > Vector(x: 49, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1880) > Vector(x: 150, y: 1982) > Vector(x: 149, y: 1981) > Vector(x: 149, y: 1881))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1982) > Vector(x: 48, y: 1982) > Vector(x: 49, y: 1981) > Vector(x: 149, y: 1981))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1982) > Vector(x: 48, y: 1880) > Vector(x: 49, y: 1881) > Vector(x: 49, y: 1981))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 1945]: 37
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 1982) > Vector(x: 150, y: 1982) > Vector(x: 149, y: 1983) > Vector(x: 49, y: 1983))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 1982) > Vector(x: 150, y: 2084) > Vector(x: 149, y: 2083) > Vector(x: 149, y: 1983))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2084) > Vector(x: 48, y: 2084) > Vector(x: 49, y: 2083) > Vector(x: 149, y: 2083))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2084) > Vector(x: 48, y: 1982) > Vector(x: 49, y: 1983) > Vector(x: 49, y: 2083))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 2047]: 38
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2084) > Vector(x: 150, y: 2084) > Vector(x: 149, y: 2085) > Vector(x: 49, y: 2085))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2084) > Vector(x: 150, y: 2136) > Vector(x: 149, y: 2135) > Vector(x: 149, y: 2085))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2136) > Vector(x: 48, y: 2136) > Vector(x: 49, y: 2135) > Vector(x: 149, y: 2135))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2136) > Vector(x: 48, y: 2084) > Vector(x: 49, y: 2085) > Vector(x: 49, y: 2135))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[123, 2099]: 39
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2136) > Vector(x: 150, y: 2136) > Vector(x: 149, y: 2137) > Vector(x: 49, y: 2137))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2136) > Vector(x: 150, y: 2188) > Vector(x: 149, y: 2187) > Vector(x: 149, y: 2137))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2188) > Vector(x: 48, y: 2188) > Vector(x: 49, y: 2187) > Vector(x: 149, y: 2187))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2188) > Vector(x: 48, y: 2136) > Vector(x: 49, y: 2137) > Vector(x: 49, y: 2187))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[86, 2151]: 40
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2188) > Vector(x: 150, y: 2188) > Vector(x: 149, y: 2189) > Vector(x: 49, y: 2189))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2188) > Vector(x: 150, y: 2240) > Vector(x: 149, y: 2239) > Vector(x: 149, y: 2189))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2240) > Vector(x: 48, y: 2240) > Vector(x: 49, y: 2239) > Vector(x: 149, y: 2239))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2240) > Vector(x: 48, y: 2188) > Vector(x: 49, y: 2189) > Vector(x: 49, y: 2239))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[92, 2203]: 41
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2240) > Vector(x: 150, y: 2240) > Vector(x: 149, y: 2241) > Vector(x: 49, y: 2241))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2240) > Vector(x: 150, y: 2292) > Vector(x: 149, y: 2291) > Vector(x: 149, y: 2241))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2292) > Vector(x: 48, y: 2292) > Vector(x: 49, y: 2291) > Vector(x: 149, y: 2291))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2292) > Vector(x: 48, y: 2240) > Vector(x: 49, y: 2241) > Vector(x: 49, y: 2291))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[99, 2255]: 42
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2292) > Vector(x: 150, y: 2292) > Vector(x: 149, y: 2293) > Vector(x: 49, y: 2293))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2292) > Vector(x: 150, y: 2344) > Vector(x: 149, y: 2343) > Vector(x: 149, y: 2293))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2344) > Vector(x: 48, y: 2344) > Vector(x: 49, y: 2343) > Vector(x: 149, y: 2343))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2344) > Vector(x: 48, y: 2292) > Vector(x: 49, y: 2293) > Vector(x: 49, y: 2343))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[106, 2307]: 43
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2344) > Vector(x: 150, y: 2344) > Vector(x: 149, y: 2345) > Vector(x: 49, y: 2345))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2344) > Vector(x: 150, y: 2396) > Vector(x: 149, y: 2395) > Vector(x: 149, y: 2345))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2396) > Vector(x: 48, y: 2396) > Vector(x: 49, y: 2395) > Vector(x: 149, y: 2395))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2396) > Vector(x: 48, y: 2344) > Vector(x: 49, y: 2345) > Vector(x: 49, y: 2395))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 2359]: 44
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2396) > Vector(x: 150, y: 2396) > Vector(x: 149, y: 2397) > Vector(x: 49, y: 2397))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2396) > Vector(x: 150, y: 2448) > Vector(x: 149, y: 2447) > Vector(x: 149, y: 2397))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2448) > Vector(x: 48, y: 2448) > Vector(x: 49, y: 2447) > Vector(x: 149, y: 2447))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2448) > Vector(x: 48, y: 2396) > Vector(x: 49, y: 2397) > Vector(x: 49, y: 2447))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[98, 2411]: 45
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2448) > Vector(x: 150, y: 2448) > Vector(x: 149, y: 2449) > Vector(x: 49, y: 2449))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2448) > Vector(x: 150, y: 2500) > Vector(x: 149, y: 2499) > Vector(x: 149, y: 2449))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2500) > Vector(x: 48, y: 2500) > Vector(x: 49, y: 2499) > Vector(x: 149, y: 2499))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2500) > Vector(x: 48, y: 2448) > Vector(x: 49, y: 2449) > Vector(x: 49, y: 2499))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[105, 2463]: 46
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2500) > Vector(x: 150, y: 2500) > Vector(x: 149, y: 2501) > Vector(x: 49, y: 2501))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2500) > Vector(x: 150, y: 2552) > Vector(x: 149, y: 2551) > Vector(x: 149, y: 2501))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2552) > Vector(x: 48, y: 2552) > Vector(x: 49, y: 2551) > Vector(x: 149, y: 2551))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2552) > Vector(x: 48, y: 2500) > Vector(x: 49, y: 2501) > Vector(x: 49, y: 2551))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[112, 2515]: 47
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2552) > Vector(x: 150, y: 2552) > Vector(x: 149, y: 2553) > Vector(x: 49, y: 2553))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2552) > Vector(x: 150, y: 2604) > Vector(x: 149, y: 2603) > Vector(x: 149, y: 2553))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2604) > Vector(x: 48, y: 2604) > Vector(x: 49, y: 2603) > Vector(x: 149, y: 2603))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2604) > Vector(x: 48, y: 2552) > Vector(x: 49, y: 2553) > Vector(x: 49, y: 2603))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[118, 2567]: 48
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2604) > Vector(x: 150, y: 2604) > Vector(x: 149, y: 2605) > Vector(x: 49, y: 2605))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2604) > Vector(x: 150, y: 2656) > Vector(x: 149, y: 2655) > Vector(x: 149, y: 2605))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2656) > Vector(x: 48, y: 2656) > Vector(x: 49, y: 2655) > Vector(x: 149, y: 2655))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2656) > Vector(x: 48, y: 2604) > Vector(x: 49, y: 2605) > Vector(x: 49, y: 2655))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 2619]: 49
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2656) > Vector(x: 150, y: 2656) > Vector(x: 149, y: 2657) > Vector(x: 49, y: 2657))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2656) > Vector(x: 150, y: 2708) > Vector(x: 149, y: 2707) > Vector(x: 149, y: 2657))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2708) > Vector(x: 48, y: 2708) > Vector(x: 49, y: 2707) > Vector(x: 149, y: 2707))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2708) > Vector(x: 48, y: 2656) > Vector(x: 49, y: 2657) > Vector(x: 49, y: 2707))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[71, 2671]: 50
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2708) > Vector(x: 150, y: 2708) > Vector(x: 149, y: 2709) > Vector(x: 49, y: 2709))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2708) > Vector(x: 150, y: 2760) > Vector(x: 149, y: 2759) > Vector(x: 149, y: 2709))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2760) > Vector(x: 48, y: 2760) > Vector(x: 49, y: 2759) > Vector(x: 149, y: 2759))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2760) > Vector(x: 48, y: 2708) > Vector(x: 49, y: 2709) > Vector(x: 49, y: 2759))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[78, 2723]: 51
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2760) > Vector(x: 150, y: 2760) > Vector(x: 149, y: 2761) > Vector(x: 49, y: 2761))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2760) > Vector(x: 150, y: 2812) > Vector(x: 149, y: 2811) > Vector(x: 149, y: 2761))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2812) > Vector(x: 48, y: 2812) > Vector(x: 49, y: 2811) > Vector(x: 149, y: 2811))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2812) > Vector(x: 48, y: 2760) > Vector(x: 49, y: 2761) > Vector(x: 49, y: 2811))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[85, 2775]: 52
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2812) > Vector(x: 150, y: 2812) > Vector(x: 149, y: 2813) > Vector(x: 49, y: 2813))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2812) > Vector(x: 150, y: 2864) > Vector(x: 149, y: 2863) > Vector(x: 149, y: 2813))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2864) > Vector(x: 48, y: 2864) > Vector(x: 49, y: 2863) > Vector(x: 149, y: 2863))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2864) > Vector(x: 48, y: 2812) > Vector(x: 49, y: 2813) > Vector(x: 49, y: 2863))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[91, 2827]: 53
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2864) > Vector(x: 150, y: 2864) > Vector(x: 149, y: 2865) > Vector(x: 49, y: 2865))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2864) > Vector(x: 150, y: 2916) > Vector(x: 149, y: 2915) > Vector(x: 149, y: 2865))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2916) > Vector(x: 48, y: 2916) > Vector(x: 49, y: 2915) > Vector(x: 149, y: 2915))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2916) > Vector(x: 48, y: 2864) > Vector(x: 49, y: 2865) > Vector(x: 49, y: 2915))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[92, 2879]: 54
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2916) > Vector(x: 150, y: 2916) > Vector(x: 149, y: 2917) > Vector(x: 49, y: 2917))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2916) > Vector(x: 150, y: 2968) > Vector(x: 149, y: 2967) > Vector(x: 149, y: 2917))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2968) > Vector(x: 48, y: 2968) > Vector(x: 49, y: 2967) > Vector(x: 149, y: 2967))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2968) > Vector(x: 48, y: 2916) > Vector(x: 49, y: 2917) > Vector(x: 49, y: 2967))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[84, 2931]: 55
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 2968) > Vector(x: 150, y: 2968) > Vector(x: 149, y: 2969) > Vector(x: 49, y: 2969))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 2968) > Vector(x: 150, y: 3020) > Vector(x: 149, y: 3019) > Vector(x: 149, y: 2969))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3020) > Vector(x: 48, y: 3020) > Vector(x: 49, y: 3019) > Vector(x: 149, y: 3019))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3020) > Vector(x: 48, y: 2968) > Vector(x: 49, y: 2969) > Vector(x: 49, y: 3019))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[90, 2983]: 56
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3020) > Vector(x: 150, y: 3020) > Vector(x: 149, y: 3021) > Vector(x: 49, y: 3021))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3020) > Vector(x: 150, y: 3072) > Vector(x: 149, y: 3071) > Vector(x: 149, y: 3021))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3072) > Vector(x: 48, y: 3072) > Vector(x: 49, y: 3071) > Vector(x: 149, y: 3071))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3072) > Vector(x: 48, y: 3020) > Vector(x: 49, y: 3021) > Vector(x: 49, y: 3071))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[97, 3035]: 57
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3072) > Vector(x: 150, y: 3072) > Vector(x: 149, y: 3073) > Vector(x: 49, y: 3073))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3072) > Vector(x: 150, y: 3124) > Vector(x: 149, y: 3123) > Vector(x: 149, y: 3073))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3124) > Vector(x: 48, y: 3124) > Vector(x: 49, y: 3123) > Vector(x: 149, y: 3123))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3124) > Vector(x: 48, y: 3072) > Vector(x: 49, y: 3073) > Vector(x: 49, y: 3123))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[104, 3087]: 58
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3124) > Vector(x: 150, y: 3124) > Vector(x: 149, y: 3125) > Vector(x: 49, y: 3125))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3124) > Vector(x: 150, y: 3176) > Vector(x: 149, y: 3175) > Vector(x: 149, y: 3125))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3176) > Vector(x: 48, y: 3176) > Vector(x: 49, y: 3175) > Vector(x: 149, y: 3175))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3176) > Vector(x: 48, y: 3124) > Vector(x: 49, y: 3125) > Vector(x: 49, y: 3175))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[92, 3139]: 59
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3176) > Vector(x: 150, y: 3176) > Vector(x: 149, y: 3177) > Vector(x: 49, y: 3177))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3176) > Vector(x: 150, y: 3228) > Vector(x: 149, y: 3227) > Vector(x: 149, y: 3177))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3228) > Vector(x: 48, y: 3228) > Vector(x: 49, y: 3227) > Vector(x: 149, y: 3227))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3228) > Vector(x: 48, y: 3176) > Vector(x: 49, y: 3177) > Vector(x: 49, y: 3227))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[86, 3191]: 60
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3228) > Vector(x: 150, y: 3228) > Vector(x: 149, y: 3229) > Vector(x: 49, y: 3229))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3228) > Vector(x: 150, y: 3280) > Vector(x: 149, y: 3279) > Vector(x: 149, y: 3229))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3280) > Vector(x: 48, y: 3280) > Vector(x: 49, y: 3279) > Vector(x: 149, y: 3279))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3280) > Vector(x: 48, y: 3228) > Vector(x: 49, y: 3229) > Vector(x: 49, y: 3279))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[92, 3243]: 61
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3280) > Vector(x: 150, y: 3280) > Vector(x: 149, y: 3281) > Vector(x: 49, y: 3281))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3280) > Vector(x: 150, y: 3332) > Vector(x: 149, y: 3331) > Vector(x: 149, y: 3281))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3332) > Vector(x: 48, y: 3332) > Vector(x: 49, y: 3331) > Vector(x: 149, y: 3331))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3332) > Vector(x: 48, y: 3280) > Vector(x: 49, y: 3281) > Vector(x: 49, y: 3331))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[99, 3295]: 62
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3332) > Vector(x: 150, y: 3332) > Vector(x: 149, y: 3333) > Vector(x: 49, y: 3333))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3332) > Vector(x: 150, y: 3384) > Vector(x: 149, y: 3383) > Vector(x: 149, y: 3333))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3384) > Vector(x: 48, y: 3384) > Vector(x: 49, y: 3383) > Vector(x: 149, y: 3383))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3384) > Vector(x: 48, y: 3332) > Vector(x: 49, y: 3333) > Vector(x: 49, y: 3383))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[106, 3347]: 63
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3384) > Vector(x: 150, y: 3384) > Vector(x: 149, y: 3385) > Vector(x: 49, y: 3385))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3384) > Vector(x: 150, y: 3436) > Vector(x: 149, y: 3435) > Vector(x: 149, y: 3385))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3436) > Vector(x: 48, y: 3436) > Vector(x: 49, y: 3435) > Vector(x: 149, y: 3435))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3436) > Vector(x: 48, y: 3384) > Vector(x: 49, y: 3385) > Vector(x: 49, y: 3435))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 3399]: 64
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3436) > Vector(x: 150, y: 3436) > Vector(x: 149, y: 3437) > Vector(x: 49, y: 3437))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3436) > Vector(x: 150, y: 3488) > Vector(x: 149, y: 3487) > Vector(x: 149, y: 3437))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3488) > Vector(x: 48, y: 3488) > Vector(x: 49, y: 3487) > Vector(x: 149, y: 3487))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3488) > Vector(x: 48, y: 3436) > Vector(x: 49, y: 3437) > Vector(x: 49, y: 3487))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[100, 3451]: 65
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3488) > Vector(x: 150, y: 3488) > Vector(x: 149, y: 3489) > Vector(x: 49, y: 3489))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3488) > Vector(x: 150, y: 3540) > Vector(x: 149, y: 3539) > Vector(x: 149, y: 3489))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3540) > Vector(x: 48, y: 3540) > Vector(x: 49, y: 3539) > Vector(x: 149, y: 3539))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3540) > Vector(x: 48, y: 3488) > Vector(x: 49, y: 3489) > Vector(x: 49, y: 3539))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 3503]: 66
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3540) > Vector(x: 150, y: 3540) > Vector(x: 149, y: 3541) > Vector(x: 49, y: 3541))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3540) > Vector(x: 150, y: 3592) > Vector(x: 149, y: 3591) > Vector(x: 149, y: 3541))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3592) > Vector(x: 48, y: 3592) > Vector(x: 49, y: 3591) > Vector(x: 149, y: 3591))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3592) > Vector(x: 48, y: 3540) > Vector(x: 49, y: 3541) > Vector(x: 49, y: 3591))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[113, 3555]: 67
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3592) > Vector(x: 150, y: 3592) > Vector(x: 149, y: 3593) > Vector(x: 49, y: 3593))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3592) > Vector(x: 150, y: 3644) > Vector(x: 149, y: 3643) > Vector(x: 149, y: 3593))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3644) > Vector(x: 48, y: 3644) > Vector(x: 49, y: 3643) > Vector(x: 149, y: 3643))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3644) > Vector(x: 48, y: 3592) > Vector(x: 49, y: 3593) > Vector(x: 49, y: 3643))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[120, 3607]: 68
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3644) > Vector(x: 150, y: 3644) > Vector(x: 149, y: 3645) > Vector(x: 49, y: 3645))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3644) > Vector(x: 150, y: 3696) > Vector(x: 149, y: 3695) > Vector(x: 149, y: 3645))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3696) > Vector(x: 48, y: 3696) > Vector(x: 49, y: 3695) > Vector(x: 149, y: 3695))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3696) > Vector(x: 48, y: 3644) > Vector(x: 49, y: 3645) > Vector(x: 49, y: 3695))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 3659]: 69
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3696) > Vector(x: 150, y: 3696) > Vector(x: 149, y: 3697) > Vector(x: 49, y: 3697))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3696) > Vector(x: 150, y: 3748) > Vector(x: 149, y: 3747) > Vector(x: 149, y: 3697))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3748) > Vector(x: 48, y: 3748) > Vector(x: 49, y: 3747) > Vector(x: 149, y: 3747))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3748) > Vector(x: 48, y: 3696) > Vector(x: 49, y: 3697) > Vector(x: 49, y: 3747))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[100, 3711]: 70
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3748) > Vector(x: 150, y: 3748) > Vector(x: 149, y: 3749) > Vector(x: 49, y: 3749))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3748) > Vector(x: 150, y: 3800) > Vector(x: 149, y: 3799) > Vector(x: 149, y: 3749))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3800) > Vector(x: 48, y: 3800) > Vector(x: 49, y: 3799) > Vector(x: 149, y: 3799))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3800) > Vector(x: 48, y: 3748) > Vector(x: 49, y: 3749) > Vector(x: 49, y: 3799))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 3763]: 71
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3800) > Vector(x: 150, y: 3800) > Vector(x: 149, y: 3801) > Vector(x: 49, y: 3801))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3800) > Vector(x: 150, y: 3852) > Vector(x: 149, y: 3851) > Vector(x: 149, y: 3801))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3852) > Vector(x: 48, y: 3852) > Vector(x: 49, y: 3851) > Vector(x: 149, y: 3851))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3852) > Vector(x: 48, y: 3800) > Vector(x: 49, y: 3801) > Vector(x: 49, y: 3851))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[113, 3815]: 72
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3852) > Vector(x: 150, y: 3852) > Vector(x: 149, y: 3853) > Vector(x: 49, y: 3853))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3852) > Vector(x: 150, y: 3904) > Vector(x: 149, y: 3903) > Vector(x: 149, y: 3853))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3904) > Vector(x: 48, y: 3904) > Vector(x: 49, y: 3903) > Vector(x: 149, y: 3903))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3904) > Vector(x: 48, y: 3852) > Vector(x: 49, y: 3853) > Vector(x: 49, y: 3903))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[120, 3867]: 73
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3904) > Vector(x: 150, y: 3904) > Vector(x: 149, y: 3905) > Vector(x: 49, y: 3905))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3904) > Vector(x: 150, y: 3956) > Vector(x: 149, y: 3955) > Vector(x: 149, y: 3905))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3956) > Vector(x: 48, y: 3956) > Vector(x: 49, y: 3955) > Vector(x: 149, y: 3955))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3956) > Vector(x: 48, y: 3904) > Vector(x: 49, y: 3905) > Vector(x: 49, y: 3955))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[121, 3919]: 74
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 3956) > Vector(x: 150, y: 3956) > Vector(x: 149, y: 3957) > Vector(x: 49, y: 3957))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 3956) > Vector(x: 150, y: 4008) > Vector(x: 149, y: 4007) > Vector(x: 149, y: 3957))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4008) > Vector(x: 48, y: 4008) > Vector(x: 49, y: 4007) > Vector(x: 149, y: 4007))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4008) > Vector(x: 48, y: 3956) > Vector(x: 49, y: 3957) > Vector(x: 49, y: 4007))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[115, 3971]: 75
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4008) > Vector(x: 150, y: 4008) > Vector(x: 149, y: 4009) > Vector(x: 49, y: 4009))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4008) > Vector(x: 150, y: 4060) > Vector(x: 149, y: 4059) > Vector(x: 149, y: 4009))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4060) > Vector(x: 48, y: 4060) > Vector(x: 49, y: 4059) > Vector(x: 149, y: 4059))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4060) > Vector(x: 48, y: 4008) > Vector(x: 49, y: 4009) > Vector(x: 49, y: 4059))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[121, 4023]: 76
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4060) > Vector(x: 150, y: 4060) > Vector(x: 149, y: 4061) > Vector(x: 49, y: 4061))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4060) > Vector(x: 150, y: 4112) > Vector(x: 149, y: 4111) > Vector(x: 149, y: 4061))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4112) > Vector(x: 48, y: 4112) > Vector(x: 49, y: 4111) > Vector(x: 149, y: 4111))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4112) > Vector(x: 48, y: 4060) > Vector(x: 49, y: 4061) > Vector(x: 49, y: 4111))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[128, 4075]: 77
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4112) > Vector(x: 150, y: 4112) > Vector(x: 149, y: 4113) > Vector(x: 49, y: 4113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4112) > Vector(x: 150, y: 4214) > Vector(x: 149, y: 4213) > Vector(x: 149, y: 4113))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4214) > Vector(x: 48, y: 4214) > Vector(x: 49, y: 4213) > Vector(x: 149, y: 4213))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4214) > Vector(x: 48, y: 4112) > Vector(x: 49, y: 4113) > Vector(x: 49, y: 4213))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4177]: 78
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4214) > Vector(x: 150, y: 4214) > Vector(x: 149, y: 4215) > Vector(x: 49, y: 4215))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4214) > Vector(x: 150, y: 4266) > Vector(x: 149, y: 4265) > Vector(x: 149, y: 4215))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4266) > Vector(x: 48, y: 4266) > Vector(x: 49, y: 4265) > Vector(x: 149, y: 4265))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4266) > Vector(x: 48, y: 4214) > Vector(x: 49, y: 4215) > Vector(x: 49, y: 4265))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[121, 4229]: 79
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4266) > Vector(x: 150, y: 4266) > Vector(x: 149, y: 4267) > Vector(x: 49, y: 4267))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4266) > Vector(x: 150, y: 4318) > Vector(x: 149, y: 4317) > Vector(x: 149, y: 4267))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4318) > Vector(x: 48, y: 4318) > Vector(x: 49, y: 4317) > Vector(x: 149, y: 4317))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4318) > Vector(x: 48, y: 4266) > Vector(x: 49, y: 4267) > Vector(x: 49, y: 4317))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[115, 4281]: 80
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4318) > Vector(x: 150, y: 4318) > Vector(x: 149, y: 4319) > Vector(x: 49, y: 4319))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4318) > Vector(x: 150, y: 4370) > Vector(x: 149, y: 4369) > Vector(x: 149, y: 4319))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4370) > Vector(x: 48, y: 4370) > Vector(x: 49, y: 4369) > Vector(x: 149, y: 4369))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4370) > Vector(x: 48, y: 4318) > Vector(x: 49, y: 4319) > Vector(x: 49, y: 4369))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[121, 4333]: 81
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4370) > Vector(x: 150, y: 4370) > Vector(x: 149, y: 4371) > Vector(x: 49, y: 4371))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4370) > Vector(x: 150, y: 4422) > Vector(x: 149, y: 4421) > Vector(x: 149, y: 4371))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4422) > Vector(x: 48, y: 4422) > Vector(x: 49, y: 4421) > Vector(x: 149, y: 4421))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4422) > Vector(x: 48, y: 4370) > Vector(x: 49, y: 4371) > Vector(x: 49, y: 4421))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[128, 4385]: 82
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4422) > Vector(x: 150, y: 4422) > Vector(x: 149, y: 4423) > Vector(x: 49, y: 4423))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4422) > Vector(x: 150, y: 4524) > Vector(x: 149, y: 4523) > Vector(x: 149, y: 4423))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4524) > Vector(x: 48, y: 4524) > Vector(x: 49, y: 4523) > Vector(x: 149, y: 4523))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4524) > Vector(x: 48, y: 4422) > Vector(x: 49, y: 4423) > Vector(x: 49, y: 4523))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4487]: 83
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4524) > Vector(x: 150, y: 4524) > Vector(x: 149, y: 4525) > Vector(x: 49, y: 4525))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4524) > Vector(x: 150, y: 4626) > Vector(x: 149, y: 4625) > Vector(x: 149, y: 4525))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4626) > Vector(x: 48, y: 4626) > Vector(x: 49, y: 4625) > Vector(x: 149, y: 4625))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4626) > Vector(x: 48, y: 4524) > Vector(x: 49, y: 4525) > Vector(x: 49, y: 4625))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4589]: 84
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4626) > Vector(x: 150, y: 4626) > Vector(x: 149, y: 4627) > Vector(x: 49, y: 4627))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4626) > Vector(x: 150, y: 4678) > Vector(x: 149, y: 4677) > Vector(x: 149, y: 4627))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4678) > Vector(x: 48, y: 4678) > Vector(x: 49, y: 4677) > Vector(x: 149, y: 4677))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4678) > Vector(x: 48, y: 4626) > Vector(x: 49, y: 4627) > Vector(x: 49, y: 4677))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[129, 4641]: 85
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4678) > Vector(x: 150, y: 4678) > Vector(x: 149, y: 4679) > Vector(x: 49, y: 4679))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4678) > Vector(x: 150, y: 4780) > Vector(x: 149, y: 4779) > Vector(x: 149, y: 4679))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4780) > Vector(x: 48, y: 4780) > Vector(x: 49, y: 4779) > Vector(x: 149, y: 4779))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4780) > Vector(x: 48, y: 4678) > Vector(x: 49, y: 4679) > Vector(x: 49, y: 4779))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4743]: 86
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4780) > Vector(x: 150, y: 4780) > Vector(x: 149, y: 4781) > Vector(x: 49, y: 4781))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4780) > Vector(x: 150, y: 4882) > Vector(x: 149, y: 4881) > Vector(x: 149, y: 4781))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4882) > Vector(x: 48, y: 4882) > Vector(x: 49, y: 4881) > Vector(x: 149, y: 4881))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4882) > Vector(x: 48, y: 4780) > Vector(x: 49, y: 4781) > Vector(x: 49, y: 4881))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4845]: 87
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4882) > Vector(x: 150, y: 4882) > Vector(x: 149, y: 4883) > Vector(x: 49, y: 4883))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4882) > Vector(x: 150, y: 4984) > Vector(x: 149, y: 4983) > Vector(x: 149, y: 4883))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4984) > Vector(x: 48, y: 4984) > Vector(x: 49, y: 4983) > Vector(x: 149, y: 4983))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4984) > Vector(x: 48, y: 4882) > Vector(x: 49, y: 4883) > Vector(x: 49, y: 4983))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 4947]: 88
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 4984) > Vector(x: 150, y: 4984) > Vector(x: 149, y: 4985) > Vector(x: 49, y: 4985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 4984) > Vector(x: 150, y: 5086) > Vector(x: 149, y: 5085) > Vector(x: 149, y: 4985))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5086) > Vector(x: 48, y: 5086) > Vector(x: 49, y: 5085) > Vector(x: 149, y: 5085))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5086) > Vector(x: 48, y: 4984) > Vector(x: 49, y: 4985) > Vector(x: 49, y: 5085))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[49, 5049]: 89
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5086) > Vector(x: 150, y: 5086) > Vector(x: 149, y: 5087) > Vector(x: 49, y: 5087))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5086) > Vector(x: 150, y: 5138) > Vector(x: 149, y: 5137) > Vector(x: 149, y: 5087))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5138) > Vector(x: 48, y: 5138) > Vector(x: 49, y: 5137) > Vector(x: 149, y: 5137))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5138) > Vector(x: 48, y: 5086) > Vector(x: 49, y: 5087) > Vector(x: 49, y: 5137))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[87, 5101]: 90
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5138) > Vector(x: 150, y: 5138) > Vector(x: 149, y: 5139) > Vector(x: 49, y: 5139))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5138) > Vector(x: 150, y: 5190) > Vector(x: 149, y: 5189) > Vector(x: 149, y: 5139))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5190) > Vector(x: 48, y: 5190) > Vector(x: 49, y: 5189) > Vector(x: 149, y: 5189))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5190) > Vector(x: 48, y: 5138) > Vector(x: 49, y: 5139) > Vector(x: 49, y: 5189))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[93, 5153]: 91
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5190) > Vector(x: 150, y: 5190) > Vector(x: 149, y: 5191) > Vector(x: 49, y: 5191))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5190) > Vector(x: 150, y: 5242) > Vector(x: 149, y: 5241) > Vector(x: 149, y: 5191))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5242) > Vector(x: 48, y: 5242) > Vector(x: 49, y: 5241) > Vector(x: 149, y: 5241))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5242) > Vector(x: 48, y: 5190) > Vector(x: 49, y: 5191) > Vector(x: 49, y: 5241))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[100, 5205]: 92
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5242) > Vector(x: 150, y: 5242) > Vector(x: 149, y: 5243) > Vector(x: 49, y: 5243))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5242) > Vector(x: 150, y: 5294) > Vector(x: 149, y: 5293) > Vector(x: 149, y: 5243))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5294) > Vector(x: 48, y: 5294) > Vector(x: 49, y: 5293) > Vector(x: 149, y: 5293))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5294) > Vector(x: 48, y: 5242) > Vector(x: 49, y: 5243) > Vector(x: 49, y: 5293))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[107, 5257]: 93
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5294) > Vector(x: 150, y: 5294) > Vector(x: 149, y: 5295) > Vector(x: 49, y: 5295))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5294) > Vector(x: 150, y: 5346) > Vector(x: 149, y: 5345) > Vector(x: 149, y: 5295))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5346) > Vector(x: 48, y: 5346) > Vector(x: 49, y: 5345) > Vector(x: 149, y: 5345))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5346) > Vector(x: 48, y: 5294) > Vector(x: 49, y: 5295) > Vector(x: 49, y: 5345))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[108, 5309]: 94
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5346) > Vector(x: 150, y: 5346) > Vector(x: 149, y: 5347) > Vector(x: 49, y: 5347))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5346) > Vector(x: 150, y: 5398) > Vector(x: 149, y: 5397) > Vector(x: 149, y: 5347))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5398) > Vector(x: 48, y: 5398) > Vector(x: 49, y: 5397) > Vector(x: 149, y: 5397))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5398) > Vector(x: 48, y: 5346) > Vector(x: 49, y: 5347) > Vector(x: 49, y: 5397))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[101, 5361]: 95
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5398) > Vector(x: 150, y: 5398) > Vector(x: 149, y: 5399) > Vector(x: 49, y: 5399))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5398) > Vector(x: 150, y: 5450) > Vector(x: 149, y: 5449) > Vector(x: 149, y: 5399))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5450) > Vector(x: 48, y: 5450) > Vector(x: 49, y: 5449) > Vector(x: 149, y: 5449))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5450) > Vector(x: 48, y: 5398) > Vector(x: 49, y: 5399) > Vector(x: 49, y: 5449))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[108, 5413]: 96
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5450) > Vector(x: 150, y: 5450) > Vector(x: 149, y: 5451) > Vector(x: 49, y: 5451))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5450) > Vector(x: 150, y: 5502) > Vector(x: 149, y: 5501) > Vector(x: 149, y: 5451))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5502) > Vector(x: 48, y: 5502) > Vector(x: 49, y: 5501) > Vector(x: 149, y: 5501))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5502) > Vector(x: 48, y: 5450) > Vector(x: 49, y: 5451) > Vector(x: 49, y: 5501))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[115, 5465]: 97
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5502) > Vector(x: 150, y: 5502) > Vector(x: 149, y: 5503) > Vector(x: 49, y: 5503))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5502) > Vector(x: 150, y: 5554) > Vector(x: 149, y: 5553) > Vector(x: 149, y: 5503))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5554) > Vector(x: 48, y: 5554) > Vector(x: 49, y: 5553) > Vector(x: 149, y: 5553))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5554) > Vector(x: 48, y: 5502) > Vector(x: 49, y: 5503) > Vector(x: 49, y: 5553))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[121, 5517]: 98
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5554) > Vector(x: 150, y: 5554) > Vector(x: 149, y: 5555) > Vector(x: 49, y: 5555))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5554) > Vector(x: 150, y: 5606) > Vector(x: 149, y: 5605) > Vector(x: 149, y: 5555))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5606) > Vector(x: 48, y: 5606) > Vector(x: 49, y: 5605) > Vector(x: 149, y: 5605))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5606) > Vector(x: 48, y: 5554) > Vector(x: 49, y: 5555) > Vector(x: 49, y: 5605))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[108, 5569]: 99
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5606) > Vector(x: 150, y: 5606) > Vector(x: 149, y: 5607) > Vector(x: 49, y: 5607))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5606) > Vector(x: 150, y: 5658) > Vector(x: 149, y: 5657) > Vector(x: 149, y: 5607))
Shape: rgb(0,0,0) Path (Vector(x: 150, y: 5658) > Vector(x: 48, y: 5658) > Vector(x: 49, y: 5657) > Vector(x: 149, y: 5657))
Shape: rgb(0,0,0) Path (Vector(x: 48, y: 5658) > Vector(x: 48, y: 5606) > Vector(x: 49, y: 5607) > Vector(x: 49, y: 5657))
Text: rgb(0,0,0) normal normal 400 20px Times New Roman
[72, 5621]: 100

View File

@ -0,0 +1,52 @@
<!DOCTYPE html>
<html>
<head>
<title>Overflow tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
#body-bg{
width: 300px;
overflow: hidden;
position: relative;
border:2px solid #000;
}
.img-1{
display: inline-block;
height: 617px;
left: -56.8px;
position: absolute;
resize: none;
top: -412.317px;
transform: rotate(3.5455rad);
width: 629px;
z-index: 2;
background: #f0f;
}
.img-2{
display: inline-block;
height: 620px;
left: -150px;
position: absolute;
resize: none;
top: 205px;
transform: rotate(3.5455rad);
width: 461px;background: #ff0000;
z-index: 1;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
<div id="body-bg">
<p>Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant impression. Le Lorem Ipsum est le faux texte standard de l'imprimerie depuis les années 1500, quand un peintre anonyme assembla ensemble des morceaux de texte pour réaliser un livre spécimen de polices de texte. Il n'a pas fait que survivre cinq siècles, mais s'est aussi adapté à la bureautique informatique, sans que son contenu n'en soit modifié. Il a été popularisé dans les années 1960 grâce à la vente de feuilles Letraset contenant des passages du Lorem Ipsum, et, plus récemment, par son inclusion dans des applications de mise en page de texte, comme Aldus PageMaker. </p>
<div class="img-1"></div>
<div class="img-2"></div>
</div>
</body>
</html>

View File

@ -0,0 +1,134 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 312, y: 8) > Vector(x: 310, y: 10) > Vector(x: 10, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 8) > Vector(x: 312, y: 368) > Vector(x: 310, y: 366) > Vector(x: 310, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 312, y: 368) > Vector(x: 8, y: 368) > Vector(x: 10, y: 366) > Vector(x: 310, y: 366))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 368) > Vector(x: 8, y: 8) > Vector(x: 10, y: 10) > Vector(x: 10, y: 366))
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))
Text: rgb(0,0,0) normal normal 400 16px Arial
[10, 26]: Le
[32, 26]: Lorem
[82, 26]: Ipsum
[130, 26]: est
[156, 26]: simplement
[242, 26]: du
[264, 26]: faux
[10, 44]: texte
[49, 44]: employé
[114, 44]: dans
[153, 44]: la
[170, 44]: composition
[260, 44]: et
[278, 44]: la
[10, 62]: mise
[48, 62]: en
[70, 62]: page
[110, 62]: avant
[154, 62]: impression.
[240, 62]: Le
[262, 62]: Lorem
[10, 80]: Ipsum
[58, 80]: est
[84, 80]: le
[101, 80]: faux
[135, 80]: texte
[174, 80]: standard
[241, 80]: de
[10, 98]: l'imprimerie
[96, 98]: depuis
[147, 98]: les
[172, 98]: années
[229, 98]: 1500,
[10, 116]: quand
[59, 116]: un
[81, 116]: peintre
[134, 116]: anonyme
[205, 116]: assembla
[10, 134]: ensemble
[84, 134]: des
[114, 134]: morceaux
[189, 134]: de
[211, 134]: texte
[250, 134]: pour
[10, 152]: réaliser
[67, 152]: un
[89, 152]: livre
[123, 152]: spécimen
[196, 152]: de
[218, 152]: polices
[272, 152]: de
[10, 170]: texte.
[54, 170]: Il
[66, 170]: n'a
[91, 170]: pas
[122, 170]: fait
[147, 170]: que
[178, 170]: survivre
[239, 170]: cinq
[10, 188]: siècles,
[68, 188]: mais
[106, 188]: s'est
[143, 188]: aussi
[185, 188]: adapté
[238, 188]: à
[251, 188]: la
[10, 206]: bureautique
[99, 206]: informatique,
[196, 206]: sans
[234, 206]: que
[265, 206]: son
[10, 224]: contenu
[71, 224]: n'en
[106, 224]: soit
[135, 224]: modifié.
[195, 224]: Il
[208, 224]: a
[221, 224]: été
[10, 242]: popularisé
[88, 242]: dans
[128, 242]: les
[152, 242]: années
[209, 242]: 1960
[249, 242]: grâce
[294, 242]: à
[10, 260]: la
[27, 260]: vente
[70, 260]: de
[93, 260]: feuilles
[147, 260]: Letraset
[209, 260]: contenant
[284, 260]: des
[10, 278]: passages
[83, 278]: du
[105, 278]: Lorem
[155, 278]: Ipsum,
[208, 278]: et,
[230, 278]: plus
[10, 296]: récemment,
[99, 296]: par
[126, 296]: son
[157, 296]: inclusion
[224, 296]: dans
[262, 296]: des
[10, 314]: applications
[99, 314]: de
[121, 314]: mise
[160, 314]: en
[182, 314]: page
[222, 314]: de
[244, 314]: texte,
[10, 332]: comme
[67, 332]: Aldus
[111, 332]: PageMaker.
Transform: (91, 525) [-0.92, -0.39, 0.39, -0.92, 0, 0]
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))
Clip: Path (Vector(x: -140, y: 215) > Vector(x: 321, y: 215) > Vector(x: 321, y: 835) > Vector(x: -140, y: 835))
Fill: rgb(255,0,0)
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))
Transform: (268, -94) [-0.92, -0.39, 0.39, -0.92, 0, 0]
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))
Clip: Path (Vector(x: -47, y: -402) > Vector(x: 582, y: -402) > Vector(x: 582, y: 215) > Vector(x: -47, y: 215))
Fill: rgb(255,0,255)
Clip: Path (Vector(x: 10, y: 10) > Vector(x: 310, y: 10) > Vector(x: 310, y: 366) > Vector(x: 10, y: 366))

View File

@ -0,0 +1,67 @@
<!DOCTYPE html>
<html>
<head>
<title>Overflow tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
background: #ccc;
border:6px solid black;
width:300px;
height:200px;
margin: 0 0 60px 0;
}
h1 {
margin:0;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
<h1>Overflow: visible</h1>
<div> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like <b>Aldus PageMaker</b> including versions of Lorem Ipsum.
</div>
<h1>Overflow: hidden</h1>
<div style="overflow:hidden;float: right; height: 100px; border-radius: 100%; border-color: transparent;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s
with the release of <div style="border-width:10px 0 5px 0;background:green;">a</div>Letraset sheets containing Lorem Ipsum passages, <img src="../../assets/image.jpg" /> and more recently with desktop publishing software like <b>Aldus PageMaker</b> including versions of Lorem Ipsum.
<div style="overflow:visible;position:relative;"><u>position:relative within a overflow:hidden element</u><br /> <br />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like <b>Aldus PageMaker</b> including versions of Lorem Ipsum.
</div>
</div>
<div style="overflow:hidden;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s
with the release of <div style="border-width:10px 0 5px 0;background:green;">a</div>Letraset sheets containing Lorem Ipsum passages, <img src="../../assets/image.jpg" /> and more recently with desktop publishing software like <b>Aldus PageMaker</b> including versions of Lorem Ipsum.
<div style="overflow:visible;position:relative;"><u>position:relative within a overflow:hidden element</u><br /> <br />
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like <b>Aldus PageMaker</b> including versions of Lorem Ipsum.
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,567 @@
Window: [800, 626]
Rectangle: [0, 0, 800, 626] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 700 32px Arial
[8, 8]: Overflow:
[164, 8]: visible
Clip: Path (Vector(x: 8, y: 45) > Vector(x: 320, y: 45) > Vector(x: 320, y: 257) > Vector(x: 8, y: 257))
Fill: rgb(204,204,204)
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 45) > Vector(x: 320, y: 45) > Vector(x: 314, y: 51) > Vector(x: 14, y: 51))
Shape: rgb(0,0,0) Path (Vector(x: 320, y: 45) > Vector(x: 320, y: 257) > Vector(x: 314, y: 251) > Vector(x: 314, y: 51))
Shape: rgb(0,0,0) Path (Vector(x: 320, y: 257) > Vector(x: 8, y: 257) > Vector(x: 14, y: 251) > Vector(x: 314, y: 251))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 257) > Vector(x: 8, y: 45) > Vector(x: 14, y: 51) > Vector(x: 14, y: 251))
Text: rgb(0,0,0) normal normal 400 16px Arial
[14, 51]: Lorem
[64, 51]: Ipsum
[112, 51]: is
[128, 51]: simply
[178, 51]: dummy
[234, 51]: text
[265, 51]: of
[282, 51]: the
[14, 69]: printing
[71, 69]: and
[102, 69]: typesetting
[184, 69]: industry.
[248, 69]: Lorem
[14, 87]: Ipsum
[62, 87]: has
[92, 87]: been
[132, 87]: the
[159, 87]: industry's
[230, 87]: standard
[14, 105]: dummy
[71, 105]: text
[101, 105]: ever
[137, 105]: since
[178, 105]: the
[205, 105]: 1500s,
[258, 105]: when
[14, 123]: an
[36, 123]: unknown
[105, 123]: printer
[154, 123]: took
[189, 123]: a
[202, 123]: galley
[249, 123]: of
[267, 123]: type
[14, 141]: and
[45, 141]: scrambled
[123, 141]: it
[136, 141]: to
[154, 141]: make
[197, 141]: a
[210, 141]: type
[245, 141]: specimen
[14, 159]: book.
[58, 159]: It
[71, 159]: has
[101, 159]: survived
[165, 159]: not
[192, 159]: only
[226, 159]: five
[14, 177]: centuries,
[88, 177]: but
[114, 177]: also
[148, 177]: the
[175, 177]: leap
[210, 177]: into
[240, 177]: electronic
[14, 195]: typesetting,
[100, 195]: remaining
[175, 195]: essentially
[14, 213]: unchanged.
[102, 213]: It
[116, 213]: was
[148, 213]: popularised
[236, 213]: in
[252, 213]: the
[14, 231]: 1960s
[62, 231]: with
[95, 231]: the
[122, 231]: release
[178, 231]: of
[196, 231]: Letraset
[258, 231]: sheets
[14, 249]: containing
[91, 249]: Lorem
[141, 249]: Ipsum
[189, 249]: passages,
[266, 249]: and
[14, 267]: more
[55, 267]: recently
[115, 267]: with
[148, 267]: desktop
[209, 267]: publishing
[14, 285]: software
[79, 285]: like
Text: rgb(0,0,0) normal normal 400 16px Arial
[245, 285]: including
[14, 303]: versions
[78, 303]: of
[96, 303]: Lorem
[146, 303]: Ipsum.
Text: rgb(0,0,0) normal normal 700 32px Arial
[8, 317]: Overflow:
[164, 317]: hidden
Clip: Path (Vector(x: 8, y: 354) > Vector(x: 320, y: 354) > Vector(x: 320, y: 566) > Vector(x: 8, y: 566))
Fill: rgb(204,204,204)
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 354) > Vector(x: 320, y: 354) > Vector(x: 314, y: 360) > Vector(x: 14, y: 360))
Shape: rgb(0,0,0) Path (Vector(x: 320, y: 354) > Vector(x: 320, y: 566) > Vector(x: 314, y: 560) > Vector(x: 314, y: 360))
Shape: rgb(0,0,0) Path (Vector(x: 320, y: 566) > Vector(x: 8, y: 566) > Vector(x: 14, y: 560) > Vector(x: 314, y: 560))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 566) > Vector(x: 8, y: 354) > Vector(x: 14, y: 360) > Vector(x: 14, y: 560))
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 400 16px Arial
[14, 360]: Lorem
[64, 360]: Ipsum
[112, 360]: is
[128, 360]: simply
[178, 360]: dummy
[234, 360]: text
[265, 360]: of
[282, 360]: the
[14, 378]: printing
[71, 378]: and
[102, 378]: typesetting
[184, 378]: industry.
[248, 378]: Lorem
[14, 396]: Ipsum
[62, 396]: has
[92, 396]: been
[132, 396]: the
[159, 396]: industry's
[230, 396]: standard
[14, 414]: dummy
[71, 414]: text
[101, 414]: ever
[137, 414]: since
[178, 414]: the
[205, 414]: 1500s,
[258, 414]: when
[14, 432]: an
[36, 432]: unknown
[105, 432]: printer
[154, 432]: took
[189, 432]: a
[202, 432]: galley
[249, 432]: of
[267, 432]: type
[14, 450]: and
[45, 450]: scrambled
[123, 450]: it
[136, 450]: to
[154, 450]: make
[197, 450]: a
[210, 450]: type
[245, 450]: specimen
[14, 468]: book.
[58, 468]: It
[71, 468]: has
[101, 468]: survived
[165, 468]: not
[192, 468]: only
[226, 468]: five
[14, 486]: centuries,
[88, 486]: but
[114, 486]: also
[148, 486]: the
[175, 486]: leap
[210, 486]: into
[240, 486]: electronic
[14, 504]: typesetting,
[100, 504]: remaining
[175, 504]: essentially
[14, 522]: unchanged.
[102, 522]: It
[116, 522]: was
[148, 522]: popularised
[236, 522]: in
[252, 522]: the
[14, 540]: 1960s
[62, 540]: with
[95, 540]: the
[122, 540]: release
[178, 540]: of
Text: rgb(0,0,0) normal normal 400 16px Arial
[14, 833]: Letraset
[76, 833]: sheets
[128, 833]: containing
[205, 833]: Lorem
[255, 833]: Ipsum
[14, 911]: passages,
Text: rgb(0,0,0) normal normal 400 16px Arial
[171, 911]: and
[202, 911]: more
[243, 911]: recently
[14, 929]: with
[47, 929]: desktop
[107, 929]: publishing
[184, 929]: software
[249, 929]: like
Text: rgb(0,0,0) normal normal 400 16px Arial
[152, 947]: including
[220, 947]: versions
[284, 947]: of
[14, 965]: Lorem
[64, 965]: Ipsum.
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Clip: Path (Vector(x: 14, y: 558) > Vector(x: 314, y: 558) > Vector(x: 314, y: 773) > Vector(x: 14, y: 773))
Fill: rgb(0,128,0)
Shape: rgb(0,0,0) Path (Vector(x: 14, y: 558) > Vector(x: 314, y: 558) > Vector(x: 314, y: 568) > Vector(x: 14, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 314, y: 558) > Vector(x: 314, y: 773) > Vector(x: 314, y: 768) > Vector(x: 314, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 314, y: 773) > Vector(x: 14, y: 773) > Vector(x: 14, y: 768) > Vector(x: 314, y: 768))
Shape: rgb(0,0,0) Path (Vector(x: 14, y: 773) > Vector(x: 14, y: 558) > Vector(x: 14, y: 568) > Vector(x: 14, y: 768))
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 400 16px Arial
[14, 568]: a
Clip: Path (BezierCurve(x0: 480, y0: 410, x1: 636, y1: 354, cx0: 480, cy0: 379, cx1: 550, cy1: 354) > BezierCurve(x0: 636, y0: 354, x1: 792, y1: 410, cx0: 722, cy0: 354, cx1: 792, cy1: 379) > BezierCurve(x0: 792, y0: 410, x1: 636, y1: 466, cx0: 792, cy0: 441, cx1: 722, cy1: 466) > BezierCurve(x0: 636, y0: 466, x1: 480, y1: 410, cx0: 550, cy0: 466, cx1: 480, cy1: 441))
Fill: rgb(204,204,204)
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 400 16px Arial
[486, 360]: Lorem
[536, 360]: Ipsum
[584, 360]: is
[600, 360]: simply
[650, 360]: dummy
[706, 360]: text
[737, 360]: of
[754, 360]: the
[486, 378]: printing
[543, 378]: and
[574, 378]: typesetting
[656, 378]: industry.
[720, 378]: Lorem
[486, 396]: Ipsum
[534, 396]: has
[564, 396]: been
[604, 396]: the
[631, 396]: industry's
[702, 396]: standard
[486, 414]: dummy
[543, 414]: text
[573, 414]: ever
[609, 414]: since
[650, 414]: the
[677, 414]: 1500s,
[730, 414]: when
[486, 432]: an
[508, 432]: unknown
[577, 432]: printer
[626, 432]: took
[661, 432]: a
[674, 432]: galley
[721, 432]: of
[739, 432]: type
[486, 450]: and
[517, 450]: scrambled
[595, 450]: it
[608, 450]: to
[626, 450]: make
[669, 450]: a
[682, 450]: type
[717, 450]: specimen
[486, 468]: book.
[530, 468]: It
[543, 468]: has
[573, 468]: survived
[637, 468]: not
[664, 468]: only
[698, 468]: five
[486, 486]: centuries,
[560, 486]: but
[586, 486]: also
[620, 486]: the
[647, 486]: leap
[682, 486]: into
[712, 486]: electronic
[486, 504]: typesetting,
[572, 504]: remaining
[647, 504]: essentially
[486, 522]: unchanged.
[574, 522]: It
[588, 522]: was
[620, 522]: popularised
[708, 522]: in
[724, 522]: the
[486, 540]: 1960s
[534, 540]: with
[567, 540]: the
[594, 540]: release
[650, 540]: of
Text: rgb(0,0,0) normal normal 400 16px Arial
[486, 833]: Letraset
[548, 833]: sheets
[600, 833]: containing
[677, 833]: Lorem
[727, 833]: Ipsum
[486, 911]: passages,
Text: rgb(0,0,0) normal normal 400 16px Arial
[643, 911]: and
[674, 911]: more
[715, 911]: recently
[486, 929]: with
[519, 929]: desktop
[579, 929]: publishing
[656, 929]: software
[721, 929]: like
Text: rgb(0,0,0) normal normal 400 16px Arial
[624, 947]: including
[692, 947]: versions
[756, 947]: of
[486, 965]: Lorem
[536, 965]: Ipsum.
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Clip: Path (Vector(x: 486, y: 558) > Vector(x: 786, y: 558) > Vector(x: 786, y: 773) > Vector(x: 486, y: 773))
Fill: rgb(0,128,0)
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 558) > Vector(x: 786, y: 558) > Vector(x: 786, y: 568) > Vector(x: 486, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 786, y: 558) > Vector(x: 786, y: 773) > Vector(x: 786, y: 768) > Vector(x: 786, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 786, y: 773) > Vector(x: 486, y: 773) > Vector(x: 486, y: 768) > Vector(x: 786, y: 768))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 773) > Vector(x: 486, y: 558) > Vector(x: 486, y: 568) > Vector(x: 486, y: 768))
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 400 16px Arial
[486, 568]: a
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Clip: Path (Vector(x: 563, y: 851) > Vector(x: 638, y: 851) > Vector(x: 638, y: 926) > Vector(x: 563, y: 926))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 700 16px Arial
[486, 947]: Aldus
[535, 947]: PageMaker
Text: rgb(0,0,0) normal normal 700 16px Arial
[107, 285]: Aldus
[156, 285]: PageMaker
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Clip: Path (Vector(x: 91, y: 851) > Vector(x: 166, y: 851) > Vector(x: 166, y: 926) > Vector(x: 91, y: 926))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 700 16px Arial
[14, 947]: Aldus
[63, 947]: PageMaker
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Clip: Path (Vector(x: 486, y: 983) > Vector(x: 798, y: 983) > Vector(x: 798, y: 1195) > Vector(x: 486, y: 1195))
Fill: rgb(204,204,204)
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 983) > Vector(x: 798, y: 983) > Vector(x: 792, y: 989) > Vector(x: 492, y: 989))
Shape: rgb(0,0,0) Path (Vector(x: 798, y: 983) > Vector(x: 798, y: 1195) > Vector(x: 792, y: 1189) > Vector(x: 792, y: 989))
Shape: rgb(0,0,0) Path (Vector(x: 798, y: 1195) > Vector(x: 486, y: 1195) > Vector(x: 492, y: 1189) > Vector(x: 792, y: 1189))
Shape: rgb(0,0,0) Path (Vector(x: 486, y: 1195) > Vector(x: 486, y: 983) > Vector(x: 492, y: 989) > Vector(x: 492, y: 1189))
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 400 16px Arial
[492, 1043]: Lorem
[542, 1043]: Ipsum
[590, 1043]: is
[606, 1043]: simply
[656, 1043]: dummy
[712, 1043]: text
[743, 1043]: of
[760, 1043]: the
[492, 1061]: printing
[549, 1061]: and
[580, 1061]: typesetting
[662, 1061]: industry.
[726, 1061]: Lorem
[492, 1079]: Ipsum
[540, 1079]: has
[570, 1079]: been
[610, 1079]: the
[637, 1079]: industry's
[708, 1079]: standard
[492, 1097]: dummy
[549, 1097]: text
[579, 1097]: ever
[615, 1097]: since
[656, 1097]: the
[683, 1097]: 1500s,
[736, 1097]: when
[492, 1115]: an
[514, 1115]: unknown
[583, 1115]: printer
[632, 1115]: took
[667, 1115]: a
[680, 1115]: galley
[727, 1115]: of
[745, 1115]: type
[492, 1133]: and
[523, 1133]: scrambled
[601, 1133]: it
[614, 1133]: to
[632, 1133]: make
[675, 1133]: a
[688, 1133]: type
[723, 1133]: specimen
[492, 1151]: book.
[536, 1151]: It
[549, 1151]: has
[579, 1151]: survived
[643, 1151]: not
[670, 1151]: only
[704, 1151]: five
[492, 1169]: centuries,
[566, 1169]: but
[592, 1169]: also
[626, 1169]: the
[653, 1169]: leap
[688, 1169]: into
[718, 1169]: electronic
[492, 1187]: typesetting,
[578, 1187]: remaining
[653, 1187]: essentially
[492, 1205]: unchanged.
[580, 1205]: It
[594, 1205]: was
[626, 1205]: popularised
[714, 1205]: in
[730, 1205]: the
[492, 1223]: 1960s
[540, 1223]: with
[573, 1223]: the
[600, 1223]: release
[656, 1223]: of
[674, 1223]: Letraset
[736, 1223]: sheets
[492, 1241]: containing
[569, 1241]: Lorem
[619, 1241]: Ipsum
[667, 1241]: passages,
[744, 1241]: and
[492, 1259]: more
[533, 1259]: recently
[593, 1259]: with
[626, 1259]: desktop
[687, 1259]: publishing
[492, 1277]: software
[557, 1277]: like
Text: rgb(0,0,0) normal normal 400 16px Arial
[723, 1277]: including
[492, 1295]: versions
[556, 1295]: of
[574, 1295]: Lorem
[624, 1295]: Ipsum.
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 400 16px Arial solid rgb(0,0,0) underline
[492, 989]: position:relative
[603, 989]:
[608, 989]: within
[648, 989]:
[653, 989]: a
[662, 989]:
[666, 989]: overflow:hidden
[778, 989]:
[492, 1007]: element
Clip: Path (BezierCurve(x0: 486, y0: 410, x1: 636, y1: 360, cx0: 486, cy0: 382, cx1: 553, cy1: 360) > BezierCurve(x0: 636, y0: 360, x1: 786, y1: 410, cx0: 719, cy0: 360, cx1: 786, cy1: 382) > BezierCurve(x0: 786, y0: 410, x1: 636, y1: 460, cx0: 786, cy0: 437, cx1: 719, cy1: 460) > BezierCurve(x0: 636, y0: 460, x1: 486, y1: 410, cx0: 553, cy0: 460, cx1: 486, cy1: 437))
Text: rgb(0,0,0) normal normal 700 16px Arial
[585, 1277]: Aldus
[634, 1277]: PageMaker
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Clip: Path (Vector(x: 14, y: 983) > Vector(x: 326, y: 983) > Vector(x: 326, y: 1195) > Vector(x: 14, y: 1195))
Fill: rgb(204,204,204)
Shape: rgb(0,0,0) Path (Vector(x: 14, y: 983) > Vector(x: 326, y: 983) > Vector(x: 320, y: 989) > Vector(x: 20, y: 989))
Shape: rgb(0,0,0) Path (Vector(x: 326, y: 983) > Vector(x: 326, y: 1195) > Vector(x: 320, y: 1189) > Vector(x: 320, y: 989))
Shape: rgb(0,0,0) Path (Vector(x: 326, y: 1195) > Vector(x: 14, y: 1195) > Vector(x: 20, y: 1189) > Vector(x: 320, y: 1189))
Shape: rgb(0,0,0) Path (Vector(x: 14, y: 1195) > Vector(x: 14, y: 983) > Vector(x: 20, y: 989) > Vector(x: 20, y: 1189))
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 400 16px Arial
[20, 1043]: Lorem
[70, 1043]: Ipsum
[118, 1043]: is
[134, 1043]: simply
[184, 1043]: dummy
[240, 1043]: text
[271, 1043]: of
[288, 1043]: the
[20, 1061]: printing
[77, 1061]: and
[108, 1061]: typesetting
[190, 1061]: industry.
[254, 1061]: Lorem
[20, 1079]: Ipsum
[68, 1079]: has
[98, 1079]: been
[138, 1079]: the
[165, 1079]: industry's
[236, 1079]: standard
[20, 1097]: dummy
[77, 1097]: text
[107, 1097]: ever
[143, 1097]: since
[184, 1097]: the
[211, 1097]: 1500s,
[264, 1097]: when
[20, 1115]: an
[42, 1115]: unknown
[111, 1115]: printer
[160, 1115]: took
[195, 1115]: a
[208, 1115]: galley
[255, 1115]: of
[273, 1115]: type
[20, 1133]: and
[51, 1133]: scrambled
[129, 1133]: it
[142, 1133]: to
[160, 1133]: make
[203, 1133]: a
[216, 1133]: type
[251, 1133]: specimen
[20, 1151]: book.
[64, 1151]: It
[77, 1151]: has
[107, 1151]: survived
[171, 1151]: not
[198, 1151]: only
[232, 1151]: five
[20, 1169]: centuries,
[94, 1169]: but
[120, 1169]: also
[154, 1169]: the
[181, 1169]: leap
[216, 1169]: into
[246, 1169]: electronic
[20, 1187]: typesetting,
[106, 1187]: remaining
[181, 1187]: essentially
[20, 1205]: unchanged.
[108, 1205]: It
[122, 1205]: was
[154, 1205]: popularised
[242, 1205]: in
[258, 1205]: the
[20, 1223]: 1960s
[68, 1223]: with
[101, 1223]: the
[128, 1223]: release
[184, 1223]: of
[202, 1223]: Letraset
[264, 1223]: sheets
[20, 1241]: containing
[97, 1241]: Lorem
[147, 1241]: Ipsum
[195, 1241]: passages,
[272, 1241]: and
[20, 1259]: more
[61, 1259]: recently
[121, 1259]: with
[154, 1259]: desktop
[215, 1259]: publishing
[20, 1277]: software
[85, 1277]: like
Text: rgb(0,0,0) normal normal 400 16px Arial
[251, 1277]: including
[20, 1295]: versions
[84, 1295]: of
[102, 1295]: Lorem
[152, 1295]: Ipsum.
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 400 16px Arial solid rgb(0,0,0) underline
[20, 989]: position:relative
[131, 989]:
[136, 989]: within
[176, 989]:
[181, 989]: a
[190, 989]:
[194, 989]: overflow:hidden
[306, 989]:
[20, 1007]: element
Clip: Path (Vector(x: 14, y: 360) > Vector(x: 314, y: 360) > Vector(x: 314, y: 560) > Vector(x: 14, y: 560))
Text: rgb(0,0,0) normal normal 700 16px Arial
[113, 1277]: Aldus
[162, 1277]: PageMaker

View File

@ -0,0 +1,72 @@
<!DOCTYPE html>
<html>
<head>
<title>Pseudoelement tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../test.js"></script>
<style>
:root .text *::before {
content:" root before!";
}
.text *::before {
content:" before!";
}
.text *::after {
content:" after!";
}
.img *::before{
content: url(../assets/image.jpg);
}
.img *::after{
content: url(../assets/image2.jpg);
}
.background *::before{
background: url(../assets/image_1.jpg);
border: 5px solid red;
}
.background *::after{
background: url(../assets/image2_1.jpg);
}
.none *::before {
display:none;
}
.none *::after {
display:none;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
<div class="text">
<span>Content 1</span>
<span>Content 2</span>
</div>
<div class="text none">
<span>Content 1</span>
<span>Content 2</span>
</div>
<div class="text img">
<span>Content 1</span>
<span>Content 2</span>
</div>
<div class="text background">
<span>Content 1</span>
<span>Content 2</span>
</div>
</body>
</html>

View File

@ -0,0 +1,73 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[90, 8]: Content
[150, 8]: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: root
[40, 8]: before!
Text: rgb(0,0,0) normal normal 400 16px Arial
[164, 8]: after!
Text: rgb(0,0,0) normal normal 400 16px Arial
[286, 8]: Content
[347, 8]: 2
Text: rgb(0,0,0) normal normal 400 16px Arial
[204, 8]: root
[236, 8]: before!
Text: rgb(0,0,0) normal normal 400 16px Arial
[360, 8]: after!
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 26]: Content
[68, 26]: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[82, 26]: Content
[142, 26]: 2
Text: rgb(0,0,0) normal normal 400 16px Arial
[90, 105]: Content
[150, 105]: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 105]: root
[40, 105]: before!
Clip: Path (Vector(x: 159, y: 44) > Vector(x: 234, y: 44) > Vector(x: 234, y: 119) > Vector(x: 159, y: 119))
Draw image: Image ("/tests/assets/image2.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Text: rgb(0,0,0) normal normal 400 16px Arial
[320, 105]: Content
[381, 105]: 2
Text: rgb(0,0,0) normal normal 400 16px Arial
[239, 105]: root
[271, 105]: before!
Clip: Path (Vector(x: 390, y: 44) > Vector(x: 465, y: 44) > Vector(x: 465, y: 119) > Vector(x: 390, y: 119))
Draw image: Image ("/tests/assets/image2.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Text: rgb(0,0,0) normal normal 400 16px Arial
[100, 123]: Content
[160, 123]: 1
Clip: Path (Vector(x: 8, y: 118) > Vector(x: 100, y: 118) > Vector(x: 100, y: 145) > Vector(x: 8, y: 145))
Repeat: Image ("/tests/assets/image_1.jpg") [13, 123] Size (75, 75) Path (Vector(x: 8, y: 118) > Vector(x: 100, y: 118) > Vector(x: 100, y: 145) > Vector(x: 8, y: 145))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 118) > Vector(x: 100, y: 118) > Vector(x: 95, y: 123) > Vector(x: 13, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 100, y: 118) > Vector(x: 100, y: 145) > Vector(x: 95, y: 140) > Vector(x: 95, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 100, y: 145) > Vector(x: 8, y: 145) > Vector(x: 13, y: 140) > Vector(x: 95, y: 140))
Shape: rgb(255,0,0) Path (Vector(x: 8, y: 145) > Vector(x: 8, y: 118) > Vector(x: 13, y: 123) > Vector(x: 13, y: 140))
Text: rgb(0,0,0) normal normal 400 16px Arial
[13, 123]: root
[45, 123]: before!
Clip: Path (Vector(x: 169, y: 123) > Vector(x: 210, y: 123) > Vector(x: 210, y: 140) > Vector(x: 169, y: 140))
Repeat: Image ("/tests/assets/image2_1.jpg") [169, 123] Size (75, 75) Path (Vector(x: 169, y: 123) > Vector(x: 210, y: 123) > Vector(x: 210, y: 140) > Vector(x: 169, y: 140))
Text: rgb(0,0,0) normal normal 400 16px Arial
[174, 123]: after!
Text: rgb(0,0,0) normal normal 400 16px Arial
[306, 123]: Content
[367, 123]: 2
Clip: Path (Vector(x: 215, y: 118) > Vector(x: 306, y: 118) > Vector(x: 306, y: 145) > Vector(x: 215, y: 145))
Repeat: Image ("/tests/assets/image_1.jpg") [220, 123] Size (75, 75) Path (Vector(x: 215, y: 118) > Vector(x: 306, y: 118) > Vector(x: 306, y: 145) > Vector(x: 215, y: 145))
Shape: rgb(255,0,0) Path (Vector(x: 215, y: 118) > Vector(x: 306, y: 118) > Vector(x: 301, y: 123) > Vector(x: 220, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 306, y: 118) > Vector(x: 306, y: 145) > Vector(x: 301, y: 140) > Vector(x: 301, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 306, y: 145) > Vector(x: 215, y: 145) > Vector(x: 220, y: 140) > Vector(x: 301, y: 140))
Shape: rgb(255,0,0) Path (Vector(x: 215, y: 145) > Vector(x: 215, y: 118) > Vector(x: 220, y: 123) > Vector(x: 220, y: 140))
Text: rgb(0,0,0) normal normal 400 16px Arial
[220, 123]: root
[252, 123]: before!
Clip: Path (Vector(x: 376, y: 123) > Vector(x: 417, y: 123) > Vector(x: 417, y: 140) > Vector(x: 376, y: 140))
Repeat: Image ("/tests/assets/image2_1.jpg") [376, 123] Size (75, 75) Path (Vector(x: 376, y: 123) > Vector(x: 417, y: 123) > Vector(x: 417, y: 140) > Vector(x: 376, y: 140))
Text: rgb(0,0,0) normal normal 400 16px Arial
[380, 123]: after!

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Inline text in the top element</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
span {
color:blue;
}
p {
background-color: green;
}
body {
font-family: Arial;
}
</style>
</head>
<body>
Some inline text <span> followed by text in span </span> followed by more inline text.
<p>Then a block level element.</p>
Then more inline text.
</body>
</html>

View File

@ -0,0 +1,32 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 8]: Some
[54, 8]: inline
[96, 8]: text
Text: rgb(0,0,0) normal normal 400 16px Arial
[297, 8]: followed
[360, 8]: by
[382, 8]: more
[422, 8]: inline
[464, 8]: text.
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 76]: Then
[49, 76]: more
[90, 76]: inline
[132, 76]: text.
Clip: Path (Vector(x: 8, y: 42) > Vector(x: 792, y: 42) > Vector(x: 792, y: 60) > Vector(x: 8, y: 60))
Fill: rgb(0,128,0)
Text: rgb(0,0,0) normal normal 400 16px Arial
[8, 42]: Then
[49, 42]: a
[62, 42]: block
[104, 42]: level
[142, 42]: element.
Text: rgb(0,0,255) normal normal 400 16px Arial
[126, 8]: followed
[190, 8]: by
[211, 8]: text
[241, 8]: in
[258, 8]: span

View File

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Chinese text</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.chn-text-block {
width: 500px;
font-family: serif;
float: left;
}
</style>
</head>
<body>
<div id="text" class="chn-text-block">
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;1 见本书第一卷《实践论》注6
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;2 见列宁《党的组织和党的出版物》。列宁在这篇论文中说“这将是自由的写作因为把一批又一批新生力量吸引到写作队伍中来的不是私利贪欲也不是名誉地位而是社会主义思想和对劳动人民的同情。这将是自由的写作因为它不是为饱食终日的贵妇人服务不是为百无聊赖、胖得发愁的一万个上层分子服务而是为千千万万劳动人民为这些国家的精华、国家的力量、国家的未来服务。这将是自由的写作它要用社会主义无产阶级的经验和生气勃勃的工作去丰富人类革命思想的最新成就它要使过去的经验从原始空想的社会主义发展而成的科学社会主义和现在的经验工人同志们当前的斗争之间经常发生相互作用。”《列宁全集》第12卷人民出版社1987年版第96—97页
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;3 梁实秋一九○三——一九八七北京人。新月社主要成员。先后在复旦大学、北京大学等校任教。曾写过一些文艺评论长时期致力于文学翻译工作和散文的写作。鲁迅对梁实秋的批评见《三闲集·新月社批评家的任务》、《二心集·“硬译”与“文学的阶级性”》等文。《鲁迅全集》第4卷人民文学出版社1981年版第159、195—212页
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;4 周作人(一八八五——一九六七),浙江绍兴人。曾在北京大学、燕京大学等校任教。五四运动时从事新文学写作。他的著述很多,有大量的散文集、文学专著和翻译作品。张资平(一八九三——一九五九),广东梅县人。他写过很多小说,曾在暨南大学、大夏大学兼任教职。周作人、张资平于一九三八年和一九三九年先后在北平、上海依附侵略中国的日本占领者。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;5 见鲁迅《二心集·对于左翼作家联盟的意见》《鲁迅全集》第4卷人民文学出版社1981年版第237—238页
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;6 参见鲁迅《且介亭杂文末编·附集·死》《鲁迅全集》第6卷人民文学出版社1981年版第612页
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;7 “小放牛”是中国一出传统的小歌舞剧。全剧只有两个角色,男角是牧童,女角是乡村小姑娘,以互相对唱的方式表现剧的内容。抗日战争初期,革命的文艺工作者利用这个歌舞剧的形式,变动其原来的词句,宣传抗日,一时颇为流行。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;8 “人、手、口、刀、牛、羊”是笔画比较简单的汉字,旧时一些小学国语读本把这几个字编在第一册的最初几课里。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;9 “阳春白雪”和“下里巴人”,都是公元前三世纪楚国的歌曲。“阳春白雪”是供少数人欣赏的较高级的歌曲;“下里巴人”是流传很广的民间歌曲。《文选·宋玉对楚王问》记载一个故事,说有人在楚都唱歌,唱“阳春白雪”时,“国中属而和者(跟着唱的),不过数十人”;但唱“下里巴人”时,“国中属而和者数千人”。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;10 见列宁《党的组织和党的出版物》。列宁在这篇论文中说“写作事业应当成为整个无产阶级事业的一部分成为由整个工人阶级的整个觉悟的先锋队所开动的一部巨大的社会民主主义机器的齿轮和螺丝钉。”《列宁全集》第12卷人民出版社1987年版第93页
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;11 亭子间是上海里弄房子中的一种小房间,位置在房子后部的楼梯中侧,狭小黑暗,因此租金比较低廉。解放以前,贫苦的作家、艺术家、知识分子和机关小职员,多半租这种房间居住。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;12 见本书第二卷《和中央社、扫荡报、新民报三记者的谈话》注3
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;13 法捷耶夫(一九○一——一九五六),苏联名作家。他所作的小说《毁灭》于一九二七年出版,内容是描写苏联国内战争时期由苏联远东滨海边区工人、农民和革命知识分子所组成的一支游击队同国内反革命白卫军以及日本武装干涉军进行斗争的故事。这部小说曾由鲁迅译为汉文。
</p><p>&nbsp;&nbsp;&nbsp;&nbsp;14 见鲁迅《集外集·自嘲》《鲁迅全集》第7卷人民文学出版社1981年版第147页</p>
</div>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>fontawesome icons</title>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript" src="../../test.js"></script>
</head>
<body>
<div>
Fontawesome icons
<hr />
<i class="fa fa-camera-retro fa-5x"></i> fa-5x
<ul class="fa-ul">
<li><i class="fa-li fa fa-check-square"></i>List icons</li>
<li><i class="fa-li fa fa-check-square"></i>can be used</li>
<li><i class="fa-li fa fa-spinner fa-spin"></i>as bullets</li>
<li><i class="fa-li fa fa-square"></i>in lists</li>
</ul>
<div>
<span class="fa-stack fa-lg">
<i class="fa fa-square-o fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x"></i>
</span>
fa-twitter on fa-square-o<br>
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-flag fa-stack-1x fa-inverse"></i>
</span>
fa-flag on fa-circle<br>
<span class="fa-stack fa-lg">
<i class="fa fa-square fa-stack-2x"></i>
<i class="fa fa-terminal fa-stack-1x fa-inverse"></i>
</span>
fa-terminal on fa-square<br>
<span class="fa-stack fa-lg">
<i class="fa fa-camera fa-stack-1x"></i>
<i class="fa fa-ban fa-stack-2x text-danger"></i>
</span>
fa-ban on fa-camera
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,88 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[8, 8]: Fontawesome
[101, 8]: icons
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[92, 98]: fa
[104, 98]: -
[110, 98]: 5x
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 35) > Vector(x: 792, y: 35) > Vector(x: 791, y: 36) > Vector(x: 9, y: 36))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 35) > Vector(x: 792, y: 37) > Vector(x: 791, y: 36) > Vector(x: 791, y: 36))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 37) > Vector(x: 8, y: 37) > Vector(x: 9, y: 36) > Vector(x: 791, y: 36))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 37) > Vector(x: 8, y: 35) > Vector(x: 9, y: 36) > Vector(x: 9, y: 36))
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[55, 242]: fa
[67, 242]: -
[72, 242]: twitter
[118, 242]: on
[138, 242]: fa
[151, 242]: -
[156, 242]: square
[198, 242]: -
[203, 242]: o
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[55, 285]: fa
[67, 285]: -
[72, 285]: flag
[101, 285]: on
[121, 285]: fa
[134, 285]: -
[139, 285]: circle
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[55, 328]: fa
[67, 328]: -
[72, 328]: terminal
[130, 328]: on
[150, 328]: fa
[162, 328]: -
[168, 328]: square
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[55, 371]: fa
[67, 371]: -
[72, 371]: ban
[100, 371]: on
[120, 371]: fa
[132, 371]: -
[137, 371]: camera
Text: rgb(0,0,0) normal normal 400 80px FontAwesome
[8, 44]: 
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[42, 141]: List
[71, 141]: icons
Text: rgb(0,0,0) normal normal 400 16px FontAwesome
[18, 143]: 
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[42, 160]: can
[69, 160]: be
[87, 160]: used
Text: rgb(0,0,0) normal normal 400 16px FontAwesome
[18, 162]: 
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[42, 179]: as
[59, 179]: bullets
Transform: (24, 186) [0.99, 0.16, -0.16, 0.99, 0, 0]
Text: rgb(0,0,0) normal normal 400 16px FontAwesome
[17, 180]: 
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[42, 198]: in
[59, 198]: lists
Text: rgb(0,0,0) normal normal 400 16px FontAwesome
[18, 199]: 
Text: rgb(0,0,0) normal normal 400 42.6667px FontAwesome
[13, 232]: 
Text: rgb(0,0,0) normal normal 400 21.3333px FontAwesome
[19, 242]: 
Text: rgb(0,0,0) normal normal 400 42.6667px FontAwesome
[11, 274]: 
Text: rgb(255,255,255) normal normal 400 21.3333px FontAwesome
[19, 285]: 
Text: rgb(0,0,0) normal normal 400 42.6667px FontAwesome
[11, 317]: 
Text: rgb(255,255,255) normal normal 400 21.3333px FontAwesome
[19, 328]: 
Text: rgb(0,0,0) normal normal 400 21.3333px FontAwesome
[18, 370]: 
Text: rgb(0,0,0) normal normal 400 42.6667px FontAwesome
[11, 360]: 

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<title>Text-decoration:line-through tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
$('body').empty();
$.each(['arial','verdana','tahoma','courier new'],function(i,e){
var div = $('<div />').css('font-family',e).appendTo('body');
for(var i=0;i<=10;i++){
$('<div />').text('Testing texts').css('margin-top',1).css('border','1px solid black').css('font-size',(16+i*6)).appendTo(div);
}
});
}
</script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
text-decoration:line-through;
}
.lineheight{
line-height:40px;
}
h2 {
clear:both;
}
</style>
</head>
<body>
Creating content through JavaScript
</body>
</html>

View File

@ -0,0 +1,355 @@
Window: [800, 2528]
Rectangle: [0, 0, 800, 2528] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 791, y: 9) > Vector(x: 9, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 28) > Vector(x: 791, y: 27) > Vector(x: 791, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 28) > Vector(x: 8, y: 28) > Vector(x: 9, y: 27) > Vector(x: 791, y: 27))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 28) > Vector(x: 8, y: 8) > Vector(x: 9, y: 9) > Vector(x: 9, y: 27))
Text: rgb(0,0,0) normal normal 400 16px arial solid rgb(0,0,0) line-through
[9, 9]: Testing
[60, 9]:
[64, 9]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 29) > Vector(x: 792, y: 29) > Vector(x: 791, y: 30) > Vector(x: 9, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 29) > Vector(x: 792, y: 57) > Vector(x: 791, y: 56) > Vector(x: 791, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 57) > Vector(x: 8, y: 57) > Vector(x: 9, y: 56) > Vector(x: 791, y: 56))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 57) > Vector(x: 8, y: 29) > Vector(x: 9, y: 30) > Vector(x: 9, y: 56))
Text: rgb(0,0,0) normal normal 400 22px arial solid rgb(0,0,0) line-through
[9, 31]: Testing
[79, 31]:
[85, 31]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 58) > Vector(x: 792, y: 58) > Vector(x: 791, y: 59) > Vector(x: 9, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 58) > Vector(x: 792, y: 92) > Vector(x: 791, y: 91) > Vector(x: 791, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 92) > Vector(x: 8, y: 92) > Vector(x: 9, y: 91) > Vector(x: 791, y: 91))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 92) > Vector(x: 8, y: 58) > Vector(x: 9, y: 59) > Vector(x: 9, y: 91))
Text: rgb(0,0,0) normal normal 400 28px arial solid rgb(0,0,0) line-through
[9, 59]: Testing
[98, 59]:
[106, 59]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 93) > Vector(x: 792, y: 93) > Vector(x: 791, y: 94) > Vector(x: 9, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 93) > Vector(x: 792, y: 134) > Vector(x: 791, y: 133) > Vector(x: 791, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 134) > Vector(x: 8, y: 134) > Vector(x: 9, y: 133) > Vector(x: 791, y: 133))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 134) > Vector(x: 8, y: 93) > Vector(x: 9, y: 94) > Vector(x: 9, y: 133))
Text: rgb(0,0,0) normal normal 400 34px arial solid rgb(0,0,0) line-through
[9, 94]: Testing
[117, 94]:
[126, 94]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 135) > Vector(x: 792, y: 135) > Vector(x: 791, y: 136) > Vector(x: 9, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 135) > Vector(x: 792, y: 183) > Vector(x: 791, y: 182) > Vector(x: 791, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 183) > Vector(x: 8, y: 183) > Vector(x: 9, y: 182) > Vector(x: 791, y: 182))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 183) > Vector(x: 8, y: 135) > Vector(x: 9, y: 136) > Vector(x: 9, y: 182))
Text: rgb(0,0,0) normal normal 400 40px arial solid rgb(0,0,0) line-through
[9, 136]: Testing
[136, 136]:
[147, 136]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 184) > Vector(x: 792, y: 184) > Vector(x: 791, y: 185) > Vector(x: 9, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 184) > Vector(x: 792, y: 239) > Vector(x: 791, y: 238) > Vector(x: 791, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 239) > Vector(x: 8, y: 239) > Vector(x: 9, y: 238) > Vector(x: 791, y: 238))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 239) > Vector(x: 8, y: 184) > Vector(x: 9, y: 185) > Vector(x: 9, y: 238))
Text: rgb(0,0,0) normal normal 400 46px arial solid rgb(0,0,0) line-through
[9, 186]: Testing
[155, 186]:
[168, 186]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 240) > Vector(x: 792, y: 240) > Vector(x: 791, y: 241) > Vector(x: 9, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 240) > Vector(x: 792, y: 302) > Vector(x: 791, y: 301) > Vector(x: 791, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 302) > Vector(x: 8, y: 302) > Vector(x: 9, y: 301) > Vector(x: 791, y: 301))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 302) > Vector(x: 8, y: 240) > Vector(x: 9, y: 241) > Vector(x: 9, y: 301))
Text: rgb(0,0,0) normal normal 400 52px arial solid rgb(0,0,0) line-through
[9, 242]: Testing
[174, 242]:
[188, 242]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 303) > Vector(x: 792, y: 303) > Vector(x: 791, y: 304) > Vector(x: 9, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 303) > Vector(x: 792, y: 371) > Vector(x: 791, y: 370) > Vector(x: 791, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 371) > Vector(x: 8, y: 371) > Vector(x: 9, y: 370) > Vector(x: 791, y: 370))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 371) > Vector(x: 8, y: 303) > Vector(x: 9, y: 304) > Vector(x: 9, y: 370))
Text: rgb(0,0,0) normal normal 400 58px arial solid rgb(0,0,0) line-through
[9, 305]: Testing
[193, 305]:
[209, 305]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 372) > Vector(x: 792, y: 372) > Vector(x: 791, y: 373) > Vector(x: 9, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 372) > Vector(x: 792, y: 448) > Vector(x: 791, y: 447) > Vector(x: 791, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 448) > Vector(x: 8, y: 448) > Vector(x: 9, y: 447) > Vector(x: 791, y: 447))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 448) > Vector(x: 8, y: 372) > Vector(x: 9, y: 373) > Vector(x: 9, y: 447))
Text: rgb(0,0,0) normal normal 400 64px arial solid rgb(0,0,0) line-through
[9, 374]: Testing
[212, 374]:
[230, 374]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 449) > Vector(x: 792, y: 449) > Vector(x: 791, y: 450) > Vector(x: 9, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 449) > Vector(x: 792, y: 531) > Vector(x: 791, y: 530) > Vector(x: 791, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 531) > Vector(x: 8, y: 531) > Vector(x: 9, y: 530) > Vector(x: 791, y: 530))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 531) > Vector(x: 8, y: 449) > Vector(x: 9, y: 450) > Vector(x: 9, y: 530))
Text: rgb(0,0,0) normal normal 400 70px arial solid rgb(0,0,0) line-through
[9, 451]: Testing
[231, 451]:
[250, 451]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 532) > Vector(x: 792, y: 532) > Vector(x: 791, y: 533) > Vector(x: 9, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 532) > Vector(x: 792, y: 622) > Vector(x: 791, y: 621) > Vector(x: 791, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 622) > Vector(x: 8, y: 622) > Vector(x: 9, y: 621) > Vector(x: 791, y: 621))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 622) > Vector(x: 8, y: 532) > Vector(x: 9, y: 533) > Vector(x: 9, y: 621))
Text: rgb(0,0,0) normal normal 400 76px arial solid rgb(0,0,0) line-through
[9, 535]: Testing
[250, 535]:
[271, 535]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 623) > Vector(x: 792, y: 623) > Vector(x: 791, y: 624) > Vector(x: 9, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 623) > Vector(x: 792, y: 644) > Vector(x: 791, y: 643) > Vector(x: 791, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 644) > Vector(x: 8, y: 644) > Vector(x: 9, y: 643) > Vector(x: 791, y: 643))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 644) > Vector(x: 8, y: 623) > Vector(x: 9, y: 624) > Vector(x: 9, y: 643))
Text: rgb(0,0,0) normal normal 400 16px verdana solid rgb(0,0,0) line-through
[9, 624]: Testing
[66, 624]:
[72, 624]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 645) > Vector(x: 792, y: 645) > Vector(x: 791, y: 646) > Vector(x: 9, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 645) > Vector(x: 792, y: 674) > Vector(x: 791, y: 673) > Vector(x: 791, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 674) > Vector(x: 8, y: 674) > Vector(x: 9, y: 673) > Vector(x: 791, y: 673))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 674) > Vector(x: 8, y: 645) > Vector(x: 9, y: 646) > Vector(x: 9, y: 673))
Text: rgb(0,0,0) normal normal 400 22px verdana solid rgb(0,0,0) line-through
[9, 646]: Testing
[87, 646]:
[95, 646]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 675) > Vector(x: 792, y: 675) > Vector(x: 791, y: 676) > Vector(x: 9, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 675) > Vector(x: 792, y: 711) > Vector(x: 791, y: 710) > Vector(x: 791, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 711) > Vector(x: 8, y: 711) > Vector(x: 9, y: 710) > Vector(x: 791, y: 710))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 711) > Vector(x: 8, y: 675) > Vector(x: 9, y: 676) > Vector(x: 9, y: 710))
Text: rgb(0,0,0) normal normal 400 28px verdana solid rgb(0,0,0) line-through
[9, 676]: Testing
[108, 676]:
[118, 676]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 712) > Vector(x: 792, y: 712) > Vector(x: 791, y: 713) > Vector(x: 9, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 712) > Vector(x: 792, y: 755) > Vector(x: 791, y: 754) > Vector(x: 791, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 755) > Vector(x: 8, y: 755) > Vector(x: 9, y: 754) > Vector(x: 791, y: 754))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 755) > Vector(x: 8, y: 712) > Vector(x: 9, y: 713) > Vector(x: 9, y: 754))
Text: rgb(0,0,0) normal normal 400 34px verdana solid rgb(0,0,0) line-through
[9, 713]: Testing
[130, 713]:
[142, 713]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 756) > Vector(x: 792, y: 756) > Vector(x: 791, y: 757) > Vector(x: 9, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 756) > Vector(x: 792, y: 807) > Vector(x: 791, y: 806) > Vector(x: 791, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 807) > Vector(x: 8, y: 807) > Vector(x: 9, y: 806) > Vector(x: 791, y: 806))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 807) > Vector(x: 8, y: 756) > Vector(x: 9, y: 757) > Vector(x: 9, y: 806))
Text: rgb(0,0,0) normal normal 400 40px verdana solid rgb(0,0,0) line-through
[9, 757]: Testing
[151, 757]:
[165, 757]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 808) > Vector(x: 792, y: 808) > Vector(x: 791, y: 809) > Vector(x: 9, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 808) > Vector(x: 792, y: 866) > Vector(x: 791, y: 865) > Vector(x: 791, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 866) > Vector(x: 8, y: 866) > Vector(x: 9, y: 865) > Vector(x: 791, y: 865))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 866) > Vector(x: 8, y: 808) > Vector(x: 9, y: 809) > Vector(x: 9, y: 865))
Text: rgb(0,0,0) normal normal 400 46px verdana solid rgb(0,0,0) line-through
[9, 809]: Testing
[172, 809]:
[188, 809]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 867) > Vector(x: 792, y: 867) > Vector(x: 791, y: 868) > Vector(x: 9, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 867) > Vector(x: 792, y: 932) > Vector(x: 791, y: 931) > Vector(x: 791, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 932) > Vector(x: 8, y: 932) > Vector(x: 9, y: 931) > Vector(x: 791, y: 931))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 932) > Vector(x: 8, y: 867) > Vector(x: 9, y: 868) > Vector(x: 9, y: 931))
Text: rgb(0,0,0) normal normal 400 52px verdana solid rgb(0,0,0) line-through
[9, 868]: Testing
[194, 868]:
[212, 868]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 933) > Vector(x: 792, y: 933) > Vector(x: 791, y: 934) > Vector(x: 9, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 933) > Vector(x: 792, y: 1005) > Vector(x: 791, y: 1004) > Vector(x: 791, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1005) > Vector(x: 8, y: 1005) > Vector(x: 9, y: 1004) > Vector(x: 791, y: 1004))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1005) > Vector(x: 8, y: 933) > Vector(x: 9, y: 934) > Vector(x: 9, y: 1004))
Text: rgb(0,0,0) normal normal 400 58px verdana solid rgb(0,0,0) line-through
[9, 934]: Testing
[215, 934]:
[235, 934]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1006) > Vector(x: 792, y: 1006) > Vector(x: 791, y: 1007) > Vector(x: 9, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1006) > Vector(x: 792, y: 1086) > Vector(x: 791, y: 1085) > Vector(x: 791, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1086) > Vector(x: 8, y: 1086) > Vector(x: 9, y: 1085) > Vector(x: 791, y: 1085))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1086) > Vector(x: 8, y: 1006) > Vector(x: 9, y: 1007) > Vector(x: 9, y: 1085))
Text: rgb(0,0,0) normal normal 400 64px verdana solid rgb(0,0,0) line-through
[9, 1007]: Testing
[236, 1007]:
[259, 1007]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1087) > Vector(x: 792, y: 1087) > Vector(x: 791, y: 1088) > Vector(x: 9, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1087) > Vector(x: 792, y: 1174) > Vector(x: 791, y: 1173) > Vector(x: 791, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1174) > Vector(x: 8, y: 1174) > Vector(x: 9, y: 1173) > Vector(x: 791, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1174) > Vector(x: 8, y: 1087) > Vector(x: 9, y: 1088) > Vector(x: 9, y: 1173))
Text: rgb(0,0,0) normal normal 400 70px verdana solid rgb(0,0,0) line-through
[9, 1088]: Testing
[258, 1088]:
[282, 1088]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1175) > Vector(x: 792, y: 1175) > Vector(x: 791, y: 1176) > Vector(x: 9, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1175) > Vector(x: 792, y: 1270) > Vector(x: 791, y: 1269) > Vector(x: 791, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1270) > Vector(x: 8, y: 1270) > Vector(x: 9, y: 1269) > Vector(x: 791, y: 1269))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1270) > Vector(x: 8, y: 1175) > Vector(x: 9, y: 1176) > Vector(x: 9, y: 1269))
Text: rgb(0,0,0) normal normal 400 76px verdana solid rgb(0,0,0) line-through
[9, 1177]: Testing
[279, 1177]:
[306, 1177]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1271) > Vector(x: 792, y: 1271) > Vector(x: 791, y: 1272) > Vector(x: 9, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1271) > Vector(x: 792, y: 1292) > Vector(x: 791, y: 1291) > Vector(x: 791, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1292) > Vector(x: 8, y: 1292) > Vector(x: 9, y: 1291) > Vector(x: 791, y: 1291))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1292) > Vector(x: 8, y: 1271) > Vector(x: 9, y: 1272) > Vector(x: 9, y: 1291))
Text: rgb(0,0,0) normal normal 400 16px tahoma solid rgb(0,0,0) line-through
[9, 1272]: Testing
[61, 1272]:
[66, 1272]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1293) > Vector(x: 792, y: 1293) > Vector(x: 791, y: 1294) > Vector(x: 9, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1293) > Vector(x: 792, y: 1321) > Vector(x: 791, y: 1320) > Vector(x: 791, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1321) > Vector(x: 8, y: 1321) > Vector(x: 9, y: 1320) > Vector(x: 791, y: 1320))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1321) > Vector(x: 8, y: 1293) > Vector(x: 9, y: 1294) > Vector(x: 9, y: 1320))
Text: rgb(0,0,0) normal normal 400 22px tahoma solid rgb(0,0,0) line-through
[9, 1294]: Testing
[80, 1294]:
[87, 1294]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1322) > Vector(x: 792, y: 1322) > Vector(x: 791, y: 1323) > Vector(x: 9, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1322) > Vector(x: 792, y: 1358) > Vector(x: 791, y: 1357) > Vector(x: 791, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1358) > Vector(x: 8, y: 1358) > Vector(x: 9, y: 1357) > Vector(x: 791, y: 1357))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1358) > Vector(x: 8, y: 1322) > Vector(x: 9, y: 1323) > Vector(x: 9, y: 1357))
Text: rgb(0,0,0) normal normal 400 28px tahoma solid rgb(0,0,0) line-through
[9, 1324]: Testing
[100, 1324]:
[108, 1324]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1359) > Vector(x: 792, y: 1359) > Vector(x: 791, y: 1360) > Vector(x: 9, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1359) > Vector(x: 792, y: 1402) > Vector(x: 791, y: 1401) > Vector(x: 791, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1402) > Vector(x: 8, y: 1402) > Vector(x: 9, y: 1401) > Vector(x: 791, y: 1401))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1402) > Vector(x: 8, y: 1359) > Vector(x: 9, y: 1360) > Vector(x: 9, y: 1401))
Text: rgb(0,0,0) normal normal 400 34px tahoma solid rgb(0,0,0) line-through
[9, 1360]: Testing
[119, 1360]:
[130, 1360]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1403) > Vector(x: 792, y: 1403) > Vector(x: 791, y: 1404) > Vector(x: 9, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1403) > Vector(x: 792, y: 1454) > Vector(x: 791, y: 1453) > Vector(x: 791, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1454) > Vector(x: 8, y: 1454) > Vector(x: 9, y: 1453) > Vector(x: 791, y: 1453))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1454) > Vector(x: 8, y: 1403) > Vector(x: 9, y: 1404) > Vector(x: 9, y: 1453))
Text: rgb(0,0,0) normal normal 400 40px tahoma solid rgb(0,0,0) line-through
[9, 1404]: Testing
[138, 1404]:
[151, 1404]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1455) > Vector(x: 792, y: 1455) > Vector(x: 791, y: 1456) > Vector(x: 9, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1455) > Vector(x: 792, y: 1512) > Vector(x: 791, y: 1511) > Vector(x: 791, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1512) > Vector(x: 8, y: 1512) > Vector(x: 9, y: 1511) > Vector(x: 791, y: 1511))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1512) > Vector(x: 8, y: 1455) > Vector(x: 9, y: 1456) > Vector(x: 9, y: 1511))
Text: rgb(0,0,0) normal normal 400 46px tahoma solid rgb(0,0,0) line-through
[9, 1456]: Testing
[158, 1456]:
[172, 1456]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1513) > Vector(x: 792, y: 1513) > Vector(x: 791, y: 1514) > Vector(x: 9, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1513) > Vector(x: 792, y: 1578) > Vector(x: 791, y: 1577) > Vector(x: 791, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1578) > Vector(x: 8, y: 1578) > Vector(x: 9, y: 1577) > Vector(x: 791, y: 1577))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1578) > Vector(x: 8, y: 1513) > Vector(x: 9, y: 1514) > Vector(x: 9, y: 1577))
Text: rgb(0,0,0) normal normal 400 52px tahoma solid rgb(0,0,0) line-through
[9, 1514]: Testing
[177, 1514]:
[193, 1514]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1579) > Vector(x: 792, y: 1579) > Vector(x: 791, y: 1580) > Vector(x: 9, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1579) > Vector(x: 792, y: 1651) > Vector(x: 791, y: 1650) > Vector(x: 791, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1651) > Vector(x: 8, y: 1651) > Vector(x: 9, y: 1650) > Vector(x: 791, y: 1650))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1651) > Vector(x: 8, y: 1579) > Vector(x: 9, y: 1580) > Vector(x: 9, y: 1650))
Text: rgb(0,0,0) normal normal 400 58px tahoma solid rgb(0,0,0) line-through
[9, 1580]: Testing
[196, 1580]:
[214, 1580]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1652) > Vector(x: 792, y: 1652) > Vector(x: 791, y: 1653) > Vector(x: 9, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1652) > Vector(x: 792, y: 1731) > Vector(x: 791, y: 1730) > Vector(x: 791, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1731) > Vector(x: 8, y: 1731) > Vector(x: 9, y: 1730) > Vector(x: 791, y: 1730))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1731) > Vector(x: 8, y: 1652) > Vector(x: 9, y: 1653) > Vector(x: 9, y: 1730))
Text: rgb(0,0,0) normal normal 400 64px tahoma solid rgb(0,0,0) line-through
[9, 1653]: Testing
[216, 1653]:
[236, 1653]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1732) > Vector(x: 792, y: 1732) > Vector(x: 791, y: 1733) > Vector(x: 9, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1732) > Vector(x: 792, y: 1819) > Vector(x: 791, y: 1818) > Vector(x: 791, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1819) > Vector(x: 8, y: 1819) > Vector(x: 9, y: 1818) > Vector(x: 791, y: 1818))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1819) > Vector(x: 8, y: 1732) > Vector(x: 9, y: 1733) > Vector(x: 9, y: 1818))
Text: rgb(0,0,0) normal normal 400 70px tahoma solid rgb(0,0,0) line-through
[9, 1733]: Testing
[235, 1733]:
[257, 1733]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1820) > Vector(x: 792, y: 1820) > Vector(x: 791, y: 1821) > Vector(x: 9, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1820) > Vector(x: 792, y: 1913) > Vector(x: 791, y: 1912) > Vector(x: 791, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1913) > Vector(x: 8, y: 1913) > Vector(x: 9, y: 1912) > Vector(x: 791, y: 1912))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1913) > Vector(x: 8, y: 1820) > Vector(x: 9, y: 1821) > Vector(x: 9, y: 1912))
Text: rgb(0,0,0) normal normal 400 76px tahoma solid rgb(0,0,0) line-through
[9, 1821]: Testing
[254, 1821]:
[278, 1821]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1914) > Vector(x: 792, y: 1914) > Vector(x: 791, y: 1915) > Vector(x: 9, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1914) > Vector(x: 792, y: 1934) > Vector(x: 791, y: 1933) > Vector(x: 791, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1934) > Vector(x: 8, y: 1934) > Vector(x: 9, y: 1933) > Vector(x: 791, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1934) > Vector(x: 8, y: 1914) > Vector(x: 9, y: 1915) > Vector(x: 9, y: 1933))
Text: rgb(0,0,0) normal normal 400 16px courier new solid rgb(0,0,0) line-through
[9, 1915]: Testing
[76, 1915]:
[86, 1915]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1935) > Vector(x: 792, y: 1935) > Vector(x: 791, y: 1936) > Vector(x: 9, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1935) > Vector(x: 792, y: 1962) > Vector(x: 791, y: 1961) > Vector(x: 791, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1962) > Vector(x: 8, y: 1962) > Vector(x: 9, y: 1961) > Vector(x: 791, y: 1961))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1962) > Vector(x: 8, y: 1935) > Vector(x: 9, y: 1936) > Vector(x: 9, y: 1961))
Text: rgb(0,0,0) normal normal 400 22px courier new solid rgb(0,0,0) line-through
[9, 1936]: Testing
[102, 1936]:
[115, 1936]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1963) > Vector(x: 792, y: 1963) > Vector(x: 791, y: 1964) > Vector(x: 9, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1963) > Vector(x: 792, y: 1997) > Vector(x: 791, y: 1996) > Vector(x: 791, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1997) > Vector(x: 8, y: 1997) > Vector(x: 9, y: 1996) > Vector(x: 791, y: 1996))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1997) > Vector(x: 8, y: 1963) > Vector(x: 9, y: 1964) > Vector(x: 9, y: 1996))
Text: rgb(0,0,0) normal normal 400 28px courier new solid rgb(0,0,0) line-through
[9, 1965]: Testing
[127, 1965]:
[144, 1965]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1998) > Vector(x: 792, y: 1998) > Vector(x: 791, y: 1999) > Vector(x: 9, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1998) > Vector(x: 792, y: 2039) > Vector(x: 791, y: 2038) > Vector(x: 791, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2039) > Vector(x: 8, y: 2039) > Vector(x: 9, y: 2038) > Vector(x: 791, y: 2038))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2039) > Vector(x: 8, y: 1998) > Vector(x: 9, y: 1999) > Vector(x: 9, y: 2038))
Text: rgb(0,0,0) normal normal 400 34px courier new solid rgb(0,0,0) line-through
[9, 1999]: Testing
[152, 1999]:
[172, 1999]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2040) > Vector(x: 792, y: 2040) > Vector(x: 791, y: 2041) > Vector(x: 9, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2040) > Vector(x: 792, y: 2087) > Vector(x: 791, y: 2086) > Vector(x: 791, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2087) > Vector(x: 8, y: 2087) > Vector(x: 9, y: 2086) > Vector(x: 791, y: 2086))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2087) > Vector(x: 8, y: 2040) > Vector(x: 9, y: 2041) > Vector(x: 9, y: 2086))
Text: rgb(0,0,0) normal normal 400 40px courier new solid rgb(0,0,0) line-through
[9, 2041]: Testing
[177, 2041]:
[201, 2041]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2088) > Vector(x: 792, y: 2088) > Vector(x: 791, y: 2089) > Vector(x: 9, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2088) > Vector(x: 792, y: 2142) > Vector(x: 791, y: 2141) > Vector(x: 791, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2142) > Vector(x: 8, y: 2142) > Vector(x: 9, y: 2141) > Vector(x: 791, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2142) > Vector(x: 8, y: 2088) > Vector(x: 9, y: 2089) > Vector(x: 9, y: 2141))
Text: rgb(0,0,0) normal normal 400 46px courier new solid rgb(0,0,0) line-through
[9, 2089]: Testing
[202, 2089]:
[230, 2089]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2143) > Vector(x: 792, y: 2143) > Vector(x: 791, y: 2144) > Vector(x: 9, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2143) > Vector(x: 792, y: 2204) > Vector(x: 791, y: 2203) > Vector(x: 791, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2204) > Vector(x: 8, y: 2204) > Vector(x: 9, y: 2203) > Vector(x: 791, y: 2203))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2204) > Vector(x: 8, y: 2143) > Vector(x: 9, y: 2144) > Vector(x: 9, y: 2203))
Text: rgb(0,0,0) normal normal 400 52px courier new solid rgb(0,0,0) line-through
[9, 2145]: Testing
[228, 2145]:
[259, 2145]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2205) > Vector(x: 792, y: 2205) > Vector(x: 791, y: 2206) > Vector(x: 9, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2205) > Vector(x: 792, y: 2273) > Vector(x: 791, y: 2272) > Vector(x: 791, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2273) > Vector(x: 8, y: 2273) > Vector(x: 9, y: 2272) > Vector(x: 791, y: 2272))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2273) > Vector(x: 8, y: 2205) > Vector(x: 9, y: 2206) > Vector(x: 9, y: 2272))
Text: rgb(0,0,0) normal normal 400 58px courier new solid rgb(0,0,0) line-through
[9, 2206]: Testing
[253, 2206]:
[288, 2206]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2274) > Vector(x: 792, y: 2274) > Vector(x: 791, y: 2275) > Vector(x: 9, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2274) > Vector(x: 792, y: 2349) > Vector(x: 791, y: 2348) > Vector(x: 791, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2349) > Vector(x: 8, y: 2349) > Vector(x: 9, y: 2348) > Vector(x: 791, y: 2348))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2349) > Vector(x: 8, y: 2274) > Vector(x: 9, y: 2275) > Vector(x: 9, y: 2348))
Text: rgb(0,0,0) normal normal 400 64px courier new solid rgb(0,0,0) line-through
[9, 2275]: Testing
[278, 2275]:
[316, 2275]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2350) > Vector(x: 792, y: 2350) > Vector(x: 791, y: 2351) > Vector(x: 9, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2350) > Vector(x: 792, y: 2431) > Vector(x: 791, y: 2430) > Vector(x: 791, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2431) > Vector(x: 8, y: 2431) > Vector(x: 9, y: 2430) > Vector(x: 791, y: 2430))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2431) > Vector(x: 8, y: 2350) > Vector(x: 9, y: 2351) > Vector(x: 9, y: 2430))
Text: rgb(0,0,0) normal normal 400 70px courier new solid rgb(0,0,0) line-through
[9, 2351]: Testing
[303, 2351]:
[345, 2351]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2432) > Vector(x: 792, y: 2432) > Vector(x: 791, y: 2433) > Vector(x: 9, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2432) > Vector(x: 792, y: 2520) > Vector(x: 791, y: 2519) > Vector(x: 791, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2520) > Vector(x: 8, y: 2520) > Vector(x: 9, y: 2519) > Vector(x: 791, y: 2519))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2520) > Vector(x: 8, y: 2432) > Vector(x: 9, y: 2433) > Vector(x: 9, y: 2519))
Text: rgb(0,0,0) normal normal 400 76px courier new solid rgb(0,0,0) line-through
[9, 2433]: Testing
[328, 2433]:
[374, 2433]: texts

View File

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html>
<head>
<title>Text-decoration:underline tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
$('body').empty();
$.each(['arial','verdana','tahoma','courier new'],function(i,e){
var div = $('<div />').css('font-family',e).appendTo('body');
for(var i=0;i<=10;i++){
$('<div />').text('Testing texts').css('margin-top',1).css('border','1px solid black').css('font-size',(16+i*6)).appendTo(div);
}
});
}
</script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
text-decoration:underline overline line-through;
text-decoration-color: red;
}
.lineheight{
line-height:40px;
}
h2 {
clear:both;
}
</style>
</head>
<body>
Creating content through JavaScript
</body>
</html>

View File

@ -0,0 +1,355 @@
Window: [800, 2528]
Rectangle: [0, 0, 800, 2528] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 791, y: 9) > Vector(x: 9, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 28) > Vector(x: 791, y: 27) > Vector(x: 791, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 28) > Vector(x: 8, y: 28) > Vector(x: 9, y: 27) > Vector(x: 791, y: 27))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 28) > Vector(x: 8, y: 8) > Vector(x: 9, y: 9) > Vector(x: 9, y: 27))
Text: rgb(0,0,0) normal normal 400 16px arial solid rgb(255,0,0) underline, overline, line-through
[9, 9]: Testing
[60, 9]:
[64, 9]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 29) > Vector(x: 792, y: 29) > Vector(x: 791, y: 30) > Vector(x: 9, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 29) > Vector(x: 792, y: 57) > Vector(x: 791, y: 56) > Vector(x: 791, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 57) > Vector(x: 8, y: 57) > Vector(x: 9, y: 56) > Vector(x: 791, y: 56))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 57) > Vector(x: 8, y: 29) > Vector(x: 9, y: 30) > Vector(x: 9, y: 56))
Text: rgb(0,0,0) normal normal 400 22px arial solid rgb(255,0,0) underline, overline, line-through
[9, 31]: Testing
[79, 31]:
[85, 31]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 58) > Vector(x: 792, y: 58) > Vector(x: 791, y: 59) > Vector(x: 9, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 58) > Vector(x: 792, y: 92) > Vector(x: 791, y: 91) > Vector(x: 791, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 92) > Vector(x: 8, y: 92) > Vector(x: 9, y: 91) > Vector(x: 791, y: 91))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 92) > Vector(x: 8, y: 58) > Vector(x: 9, y: 59) > Vector(x: 9, y: 91))
Text: rgb(0,0,0) normal normal 400 28px arial solid rgb(255,0,0) underline, overline, line-through
[9, 59]: Testing
[98, 59]:
[106, 59]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 93) > Vector(x: 792, y: 93) > Vector(x: 791, y: 94) > Vector(x: 9, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 93) > Vector(x: 792, y: 134) > Vector(x: 791, y: 133) > Vector(x: 791, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 134) > Vector(x: 8, y: 134) > Vector(x: 9, y: 133) > Vector(x: 791, y: 133))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 134) > Vector(x: 8, y: 93) > Vector(x: 9, y: 94) > Vector(x: 9, y: 133))
Text: rgb(0,0,0) normal normal 400 34px arial solid rgb(255,0,0) underline, overline, line-through
[9, 94]: Testing
[117, 94]:
[126, 94]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 135) > Vector(x: 792, y: 135) > Vector(x: 791, y: 136) > Vector(x: 9, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 135) > Vector(x: 792, y: 183) > Vector(x: 791, y: 182) > Vector(x: 791, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 183) > Vector(x: 8, y: 183) > Vector(x: 9, y: 182) > Vector(x: 791, y: 182))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 183) > Vector(x: 8, y: 135) > Vector(x: 9, y: 136) > Vector(x: 9, y: 182))
Text: rgb(0,0,0) normal normal 400 40px arial solid rgb(255,0,0) underline, overline, line-through
[9, 136]: Testing
[136, 136]:
[147, 136]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 184) > Vector(x: 792, y: 184) > Vector(x: 791, y: 185) > Vector(x: 9, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 184) > Vector(x: 792, y: 239) > Vector(x: 791, y: 238) > Vector(x: 791, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 239) > Vector(x: 8, y: 239) > Vector(x: 9, y: 238) > Vector(x: 791, y: 238))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 239) > Vector(x: 8, y: 184) > Vector(x: 9, y: 185) > Vector(x: 9, y: 238))
Text: rgb(0,0,0) normal normal 400 46px arial solid rgb(255,0,0) underline, overline, line-through
[9, 186]: Testing
[155, 186]:
[168, 186]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 240) > Vector(x: 792, y: 240) > Vector(x: 791, y: 241) > Vector(x: 9, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 240) > Vector(x: 792, y: 302) > Vector(x: 791, y: 301) > Vector(x: 791, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 302) > Vector(x: 8, y: 302) > Vector(x: 9, y: 301) > Vector(x: 791, y: 301))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 302) > Vector(x: 8, y: 240) > Vector(x: 9, y: 241) > Vector(x: 9, y: 301))
Text: rgb(0,0,0) normal normal 400 52px arial solid rgb(255,0,0) underline, overline, line-through
[9, 242]: Testing
[174, 242]:
[188, 242]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 303) > Vector(x: 792, y: 303) > Vector(x: 791, y: 304) > Vector(x: 9, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 303) > Vector(x: 792, y: 371) > Vector(x: 791, y: 370) > Vector(x: 791, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 371) > Vector(x: 8, y: 371) > Vector(x: 9, y: 370) > Vector(x: 791, y: 370))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 371) > Vector(x: 8, y: 303) > Vector(x: 9, y: 304) > Vector(x: 9, y: 370))
Text: rgb(0,0,0) normal normal 400 58px arial solid rgb(255,0,0) underline, overline, line-through
[9, 305]: Testing
[193, 305]:
[209, 305]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 372) > Vector(x: 792, y: 372) > Vector(x: 791, y: 373) > Vector(x: 9, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 372) > Vector(x: 792, y: 448) > Vector(x: 791, y: 447) > Vector(x: 791, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 448) > Vector(x: 8, y: 448) > Vector(x: 9, y: 447) > Vector(x: 791, y: 447))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 448) > Vector(x: 8, y: 372) > Vector(x: 9, y: 373) > Vector(x: 9, y: 447))
Text: rgb(0,0,0) normal normal 400 64px arial solid rgb(255,0,0) underline, overline, line-through
[9, 374]: Testing
[212, 374]:
[230, 374]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 449) > Vector(x: 792, y: 449) > Vector(x: 791, y: 450) > Vector(x: 9, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 449) > Vector(x: 792, y: 531) > Vector(x: 791, y: 530) > Vector(x: 791, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 531) > Vector(x: 8, y: 531) > Vector(x: 9, y: 530) > Vector(x: 791, y: 530))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 531) > Vector(x: 8, y: 449) > Vector(x: 9, y: 450) > Vector(x: 9, y: 530))
Text: rgb(0,0,0) normal normal 400 70px arial solid rgb(255,0,0) underline, overline, line-through
[9, 451]: Testing
[231, 451]:
[250, 451]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 532) > Vector(x: 792, y: 532) > Vector(x: 791, y: 533) > Vector(x: 9, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 532) > Vector(x: 792, y: 622) > Vector(x: 791, y: 621) > Vector(x: 791, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 622) > Vector(x: 8, y: 622) > Vector(x: 9, y: 621) > Vector(x: 791, y: 621))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 622) > Vector(x: 8, y: 532) > Vector(x: 9, y: 533) > Vector(x: 9, y: 621))
Text: rgb(0,0,0) normal normal 400 76px arial solid rgb(255,0,0) underline, overline, line-through
[9, 535]: Testing
[250, 535]:
[271, 535]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 623) > Vector(x: 792, y: 623) > Vector(x: 791, y: 624) > Vector(x: 9, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 623) > Vector(x: 792, y: 644) > Vector(x: 791, y: 643) > Vector(x: 791, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 644) > Vector(x: 8, y: 644) > Vector(x: 9, y: 643) > Vector(x: 791, y: 643))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 644) > Vector(x: 8, y: 623) > Vector(x: 9, y: 624) > Vector(x: 9, y: 643))
Text: rgb(0,0,0) normal normal 400 16px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 624]: Testing
[66, 624]:
[72, 624]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 645) > Vector(x: 792, y: 645) > Vector(x: 791, y: 646) > Vector(x: 9, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 645) > Vector(x: 792, y: 674) > Vector(x: 791, y: 673) > Vector(x: 791, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 674) > Vector(x: 8, y: 674) > Vector(x: 9, y: 673) > Vector(x: 791, y: 673))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 674) > Vector(x: 8, y: 645) > Vector(x: 9, y: 646) > Vector(x: 9, y: 673))
Text: rgb(0,0,0) normal normal 400 22px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 646]: Testing
[87, 646]:
[95, 646]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 675) > Vector(x: 792, y: 675) > Vector(x: 791, y: 676) > Vector(x: 9, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 675) > Vector(x: 792, y: 711) > Vector(x: 791, y: 710) > Vector(x: 791, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 711) > Vector(x: 8, y: 711) > Vector(x: 9, y: 710) > Vector(x: 791, y: 710))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 711) > Vector(x: 8, y: 675) > Vector(x: 9, y: 676) > Vector(x: 9, y: 710))
Text: rgb(0,0,0) normal normal 400 28px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 676]: Testing
[108, 676]:
[118, 676]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 712) > Vector(x: 792, y: 712) > Vector(x: 791, y: 713) > Vector(x: 9, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 712) > Vector(x: 792, y: 755) > Vector(x: 791, y: 754) > Vector(x: 791, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 755) > Vector(x: 8, y: 755) > Vector(x: 9, y: 754) > Vector(x: 791, y: 754))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 755) > Vector(x: 8, y: 712) > Vector(x: 9, y: 713) > Vector(x: 9, y: 754))
Text: rgb(0,0,0) normal normal 400 34px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 713]: Testing
[130, 713]:
[142, 713]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 756) > Vector(x: 792, y: 756) > Vector(x: 791, y: 757) > Vector(x: 9, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 756) > Vector(x: 792, y: 807) > Vector(x: 791, y: 806) > Vector(x: 791, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 807) > Vector(x: 8, y: 807) > Vector(x: 9, y: 806) > Vector(x: 791, y: 806))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 807) > Vector(x: 8, y: 756) > Vector(x: 9, y: 757) > Vector(x: 9, y: 806))
Text: rgb(0,0,0) normal normal 400 40px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 757]: Testing
[151, 757]:
[165, 757]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 808) > Vector(x: 792, y: 808) > Vector(x: 791, y: 809) > Vector(x: 9, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 808) > Vector(x: 792, y: 866) > Vector(x: 791, y: 865) > Vector(x: 791, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 866) > Vector(x: 8, y: 866) > Vector(x: 9, y: 865) > Vector(x: 791, y: 865))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 866) > Vector(x: 8, y: 808) > Vector(x: 9, y: 809) > Vector(x: 9, y: 865))
Text: rgb(0,0,0) normal normal 400 46px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 809]: Testing
[172, 809]:
[188, 809]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 867) > Vector(x: 792, y: 867) > Vector(x: 791, y: 868) > Vector(x: 9, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 867) > Vector(x: 792, y: 932) > Vector(x: 791, y: 931) > Vector(x: 791, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 932) > Vector(x: 8, y: 932) > Vector(x: 9, y: 931) > Vector(x: 791, y: 931))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 932) > Vector(x: 8, y: 867) > Vector(x: 9, y: 868) > Vector(x: 9, y: 931))
Text: rgb(0,0,0) normal normal 400 52px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 868]: Testing
[194, 868]:
[212, 868]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 933) > Vector(x: 792, y: 933) > Vector(x: 791, y: 934) > Vector(x: 9, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 933) > Vector(x: 792, y: 1005) > Vector(x: 791, y: 1004) > Vector(x: 791, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1005) > Vector(x: 8, y: 1005) > Vector(x: 9, y: 1004) > Vector(x: 791, y: 1004))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1005) > Vector(x: 8, y: 933) > Vector(x: 9, y: 934) > Vector(x: 9, y: 1004))
Text: rgb(0,0,0) normal normal 400 58px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 934]: Testing
[215, 934]:
[235, 934]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1006) > Vector(x: 792, y: 1006) > Vector(x: 791, y: 1007) > Vector(x: 9, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1006) > Vector(x: 792, y: 1086) > Vector(x: 791, y: 1085) > Vector(x: 791, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1086) > Vector(x: 8, y: 1086) > Vector(x: 9, y: 1085) > Vector(x: 791, y: 1085))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1086) > Vector(x: 8, y: 1006) > Vector(x: 9, y: 1007) > Vector(x: 9, y: 1085))
Text: rgb(0,0,0) normal normal 400 64px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 1007]: Testing
[236, 1007]:
[259, 1007]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1087) > Vector(x: 792, y: 1087) > Vector(x: 791, y: 1088) > Vector(x: 9, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1087) > Vector(x: 792, y: 1174) > Vector(x: 791, y: 1173) > Vector(x: 791, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1174) > Vector(x: 8, y: 1174) > Vector(x: 9, y: 1173) > Vector(x: 791, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1174) > Vector(x: 8, y: 1087) > Vector(x: 9, y: 1088) > Vector(x: 9, y: 1173))
Text: rgb(0,0,0) normal normal 400 70px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 1088]: Testing
[258, 1088]:
[282, 1088]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1175) > Vector(x: 792, y: 1175) > Vector(x: 791, y: 1176) > Vector(x: 9, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1175) > Vector(x: 792, y: 1270) > Vector(x: 791, y: 1269) > Vector(x: 791, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1270) > Vector(x: 8, y: 1270) > Vector(x: 9, y: 1269) > Vector(x: 791, y: 1269))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1270) > Vector(x: 8, y: 1175) > Vector(x: 9, y: 1176) > Vector(x: 9, y: 1269))
Text: rgb(0,0,0) normal normal 400 76px verdana solid rgb(255,0,0) underline, overline, line-through
[9, 1177]: Testing
[279, 1177]:
[306, 1177]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1271) > Vector(x: 792, y: 1271) > Vector(x: 791, y: 1272) > Vector(x: 9, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1271) > Vector(x: 792, y: 1292) > Vector(x: 791, y: 1291) > Vector(x: 791, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1292) > Vector(x: 8, y: 1292) > Vector(x: 9, y: 1291) > Vector(x: 791, y: 1291))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1292) > Vector(x: 8, y: 1271) > Vector(x: 9, y: 1272) > Vector(x: 9, y: 1291))
Text: rgb(0,0,0) normal normal 400 16px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1272]: Testing
[61, 1272]:
[66, 1272]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1293) > Vector(x: 792, y: 1293) > Vector(x: 791, y: 1294) > Vector(x: 9, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1293) > Vector(x: 792, y: 1321) > Vector(x: 791, y: 1320) > Vector(x: 791, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1321) > Vector(x: 8, y: 1321) > Vector(x: 9, y: 1320) > Vector(x: 791, y: 1320))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1321) > Vector(x: 8, y: 1293) > Vector(x: 9, y: 1294) > Vector(x: 9, y: 1320))
Text: rgb(0,0,0) normal normal 400 22px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1294]: Testing
[80, 1294]:
[87, 1294]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1322) > Vector(x: 792, y: 1322) > Vector(x: 791, y: 1323) > Vector(x: 9, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1322) > Vector(x: 792, y: 1358) > Vector(x: 791, y: 1357) > Vector(x: 791, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1358) > Vector(x: 8, y: 1358) > Vector(x: 9, y: 1357) > Vector(x: 791, y: 1357))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1358) > Vector(x: 8, y: 1322) > Vector(x: 9, y: 1323) > Vector(x: 9, y: 1357))
Text: rgb(0,0,0) normal normal 400 28px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1324]: Testing
[100, 1324]:
[108, 1324]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1359) > Vector(x: 792, y: 1359) > Vector(x: 791, y: 1360) > Vector(x: 9, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1359) > Vector(x: 792, y: 1402) > Vector(x: 791, y: 1401) > Vector(x: 791, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1402) > Vector(x: 8, y: 1402) > Vector(x: 9, y: 1401) > Vector(x: 791, y: 1401))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1402) > Vector(x: 8, y: 1359) > Vector(x: 9, y: 1360) > Vector(x: 9, y: 1401))
Text: rgb(0,0,0) normal normal 400 34px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1360]: Testing
[119, 1360]:
[130, 1360]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1403) > Vector(x: 792, y: 1403) > Vector(x: 791, y: 1404) > Vector(x: 9, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1403) > Vector(x: 792, y: 1454) > Vector(x: 791, y: 1453) > Vector(x: 791, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1454) > Vector(x: 8, y: 1454) > Vector(x: 9, y: 1453) > Vector(x: 791, y: 1453))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1454) > Vector(x: 8, y: 1403) > Vector(x: 9, y: 1404) > Vector(x: 9, y: 1453))
Text: rgb(0,0,0) normal normal 400 40px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1404]: Testing
[138, 1404]:
[151, 1404]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1455) > Vector(x: 792, y: 1455) > Vector(x: 791, y: 1456) > Vector(x: 9, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1455) > Vector(x: 792, y: 1512) > Vector(x: 791, y: 1511) > Vector(x: 791, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1512) > Vector(x: 8, y: 1512) > Vector(x: 9, y: 1511) > Vector(x: 791, y: 1511))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1512) > Vector(x: 8, y: 1455) > Vector(x: 9, y: 1456) > Vector(x: 9, y: 1511))
Text: rgb(0,0,0) normal normal 400 46px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1456]: Testing
[158, 1456]:
[172, 1456]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1513) > Vector(x: 792, y: 1513) > Vector(x: 791, y: 1514) > Vector(x: 9, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1513) > Vector(x: 792, y: 1578) > Vector(x: 791, y: 1577) > Vector(x: 791, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1578) > Vector(x: 8, y: 1578) > Vector(x: 9, y: 1577) > Vector(x: 791, y: 1577))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1578) > Vector(x: 8, y: 1513) > Vector(x: 9, y: 1514) > Vector(x: 9, y: 1577))
Text: rgb(0,0,0) normal normal 400 52px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1514]: Testing
[177, 1514]:
[193, 1514]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1579) > Vector(x: 792, y: 1579) > Vector(x: 791, y: 1580) > Vector(x: 9, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1579) > Vector(x: 792, y: 1651) > Vector(x: 791, y: 1650) > Vector(x: 791, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1651) > Vector(x: 8, y: 1651) > Vector(x: 9, y: 1650) > Vector(x: 791, y: 1650))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1651) > Vector(x: 8, y: 1579) > Vector(x: 9, y: 1580) > Vector(x: 9, y: 1650))
Text: rgb(0,0,0) normal normal 400 58px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1580]: Testing
[196, 1580]:
[214, 1580]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1652) > Vector(x: 792, y: 1652) > Vector(x: 791, y: 1653) > Vector(x: 9, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1652) > Vector(x: 792, y: 1731) > Vector(x: 791, y: 1730) > Vector(x: 791, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1731) > Vector(x: 8, y: 1731) > Vector(x: 9, y: 1730) > Vector(x: 791, y: 1730))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1731) > Vector(x: 8, y: 1652) > Vector(x: 9, y: 1653) > Vector(x: 9, y: 1730))
Text: rgb(0,0,0) normal normal 400 64px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1653]: Testing
[216, 1653]:
[236, 1653]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1732) > Vector(x: 792, y: 1732) > Vector(x: 791, y: 1733) > Vector(x: 9, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1732) > Vector(x: 792, y: 1819) > Vector(x: 791, y: 1818) > Vector(x: 791, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1819) > Vector(x: 8, y: 1819) > Vector(x: 9, y: 1818) > Vector(x: 791, y: 1818))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1819) > Vector(x: 8, y: 1732) > Vector(x: 9, y: 1733) > Vector(x: 9, y: 1818))
Text: rgb(0,0,0) normal normal 400 70px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1733]: Testing
[235, 1733]:
[257, 1733]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1820) > Vector(x: 792, y: 1820) > Vector(x: 791, y: 1821) > Vector(x: 9, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1820) > Vector(x: 792, y: 1913) > Vector(x: 791, y: 1912) > Vector(x: 791, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1913) > Vector(x: 8, y: 1913) > Vector(x: 9, y: 1912) > Vector(x: 791, y: 1912))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1913) > Vector(x: 8, y: 1820) > Vector(x: 9, y: 1821) > Vector(x: 9, y: 1912))
Text: rgb(0,0,0) normal normal 400 76px tahoma solid rgb(255,0,0) underline, overline, line-through
[9, 1821]: Testing
[254, 1821]:
[278, 1821]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1914) > Vector(x: 792, y: 1914) > Vector(x: 791, y: 1915) > Vector(x: 9, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1914) > Vector(x: 792, y: 1934) > Vector(x: 791, y: 1933) > Vector(x: 791, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1934) > Vector(x: 8, y: 1934) > Vector(x: 9, y: 1933) > Vector(x: 791, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1934) > Vector(x: 8, y: 1914) > Vector(x: 9, y: 1915) > Vector(x: 9, y: 1933))
Text: rgb(0,0,0) normal normal 400 16px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 1915]: Testing
[76, 1915]:
[86, 1915]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1935) > Vector(x: 792, y: 1935) > Vector(x: 791, y: 1936) > Vector(x: 9, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1935) > Vector(x: 792, y: 1962) > Vector(x: 791, y: 1961) > Vector(x: 791, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1962) > Vector(x: 8, y: 1962) > Vector(x: 9, y: 1961) > Vector(x: 791, y: 1961))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1962) > Vector(x: 8, y: 1935) > Vector(x: 9, y: 1936) > Vector(x: 9, y: 1961))
Text: rgb(0,0,0) normal normal 400 22px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 1936]: Testing
[102, 1936]:
[115, 1936]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1963) > Vector(x: 792, y: 1963) > Vector(x: 791, y: 1964) > Vector(x: 9, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1963) > Vector(x: 792, y: 1997) > Vector(x: 791, y: 1996) > Vector(x: 791, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1997) > Vector(x: 8, y: 1997) > Vector(x: 9, y: 1996) > Vector(x: 791, y: 1996))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1997) > Vector(x: 8, y: 1963) > Vector(x: 9, y: 1964) > Vector(x: 9, y: 1996))
Text: rgb(0,0,0) normal normal 400 28px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 1965]: Testing
[127, 1965]:
[144, 1965]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1998) > Vector(x: 792, y: 1998) > Vector(x: 791, y: 1999) > Vector(x: 9, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1998) > Vector(x: 792, y: 2039) > Vector(x: 791, y: 2038) > Vector(x: 791, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2039) > Vector(x: 8, y: 2039) > Vector(x: 9, y: 2038) > Vector(x: 791, y: 2038))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2039) > Vector(x: 8, y: 1998) > Vector(x: 9, y: 1999) > Vector(x: 9, y: 2038))
Text: rgb(0,0,0) normal normal 400 34px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 1999]: Testing
[152, 1999]:
[172, 1999]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2040) > Vector(x: 792, y: 2040) > Vector(x: 791, y: 2041) > Vector(x: 9, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2040) > Vector(x: 792, y: 2087) > Vector(x: 791, y: 2086) > Vector(x: 791, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2087) > Vector(x: 8, y: 2087) > Vector(x: 9, y: 2086) > Vector(x: 791, y: 2086))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2087) > Vector(x: 8, y: 2040) > Vector(x: 9, y: 2041) > Vector(x: 9, y: 2086))
Text: rgb(0,0,0) normal normal 400 40px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2041]: Testing
[177, 2041]:
[201, 2041]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2088) > Vector(x: 792, y: 2088) > Vector(x: 791, y: 2089) > Vector(x: 9, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2088) > Vector(x: 792, y: 2142) > Vector(x: 791, y: 2141) > Vector(x: 791, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2142) > Vector(x: 8, y: 2142) > Vector(x: 9, y: 2141) > Vector(x: 791, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2142) > Vector(x: 8, y: 2088) > Vector(x: 9, y: 2089) > Vector(x: 9, y: 2141))
Text: rgb(0,0,0) normal normal 400 46px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2089]: Testing
[202, 2089]:
[230, 2089]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2143) > Vector(x: 792, y: 2143) > Vector(x: 791, y: 2144) > Vector(x: 9, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2143) > Vector(x: 792, y: 2204) > Vector(x: 791, y: 2203) > Vector(x: 791, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2204) > Vector(x: 8, y: 2204) > Vector(x: 9, y: 2203) > Vector(x: 791, y: 2203))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2204) > Vector(x: 8, y: 2143) > Vector(x: 9, y: 2144) > Vector(x: 9, y: 2203))
Text: rgb(0,0,0) normal normal 400 52px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2145]: Testing
[228, 2145]:
[259, 2145]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2205) > Vector(x: 792, y: 2205) > Vector(x: 791, y: 2206) > Vector(x: 9, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2205) > Vector(x: 792, y: 2273) > Vector(x: 791, y: 2272) > Vector(x: 791, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2273) > Vector(x: 8, y: 2273) > Vector(x: 9, y: 2272) > Vector(x: 791, y: 2272))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2273) > Vector(x: 8, y: 2205) > Vector(x: 9, y: 2206) > Vector(x: 9, y: 2272))
Text: rgb(0,0,0) normal normal 400 58px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2206]: Testing
[253, 2206]:
[288, 2206]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2274) > Vector(x: 792, y: 2274) > Vector(x: 791, y: 2275) > Vector(x: 9, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2274) > Vector(x: 792, y: 2349) > Vector(x: 791, y: 2348) > Vector(x: 791, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2349) > Vector(x: 8, y: 2349) > Vector(x: 9, y: 2348) > Vector(x: 791, y: 2348))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2349) > Vector(x: 8, y: 2274) > Vector(x: 9, y: 2275) > Vector(x: 9, y: 2348))
Text: rgb(0,0,0) normal normal 400 64px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2275]: Testing
[278, 2275]:
[316, 2275]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2350) > Vector(x: 792, y: 2350) > Vector(x: 791, y: 2351) > Vector(x: 9, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2350) > Vector(x: 792, y: 2431) > Vector(x: 791, y: 2430) > Vector(x: 791, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2431) > Vector(x: 8, y: 2431) > Vector(x: 9, y: 2430) > Vector(x: 791, y: 2430))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2431) > Vector(x: 8, y: 2350) > Vector(x: 9, y: 2351) > Vector(x: 9, y: 2430))
Text: rgb(0,0,0) normal normal 400 70px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2351]: Testing
[303, 2351]:
[345, 2351]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2432) > Vector(x: 792, y: 2432) > Vector(x: 791, y: 2433) > Vector(x: 9, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2432) > Vector(x: 792, y: 2520) > Vector(x: 791, y: 2519) > Vector(x: 791, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2520) > Vector(x: 8, y: 2520) > Vector(x: 9, y: 2519) > Vector(x: 791, y: 2519))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2520) > Vector(x: 8, y: 2432) > Vector(x: 9, y: 2433) > Vector(x: 9, y: 2519))
Text: rgb(0,0,0) normal normal 400 76px courier new solid rgb(255,0,0) underline, overline, line-through
[9, 2433]: Testing
[328, 2433]:
[374, 2433]: texts

View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>Text shadow tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.shadow1 span{
text-shadow: 1px 1px 3px #888;
}
.shadow1 strong {
text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;
}
.shadow2 {
font-size: 48px;
}
.shadow2 span{
color: transparent;
text-shadow: 0 0 5px #00f, 2px 2px 0 #f00;
}
.shadow2 strong {
color: rgba(0, 255, 0, 0.5);
text-shadow: 0 0 5px #00f, 2px 2px 0 #f00;
text-decoration: underline;
}
.white-text-with-blue-shadow {
text-shadow: 1px 1px 2px black, 0 0 1em blue, 0 0 0.2em blue;
color: white;
font: 1.5em Georgia, serif;
}
.red-text-shadow {
text-shadow: 0 -2px;
}
</style>
</head>
<body>
<div class="shadow1">
Some text <span> followed by text with shadow </span> followed by more text without shadow.
<strong>Multi text shadow</strong> and some more text without shadow
</div>
<div class="shadow2">
<span>testing with transparent</span>
<strong>testing with low opacity</strong>
</div>
<p class="white-text-with-blue-shadow">Sed ut perspiciatis unde omnis iste
natus error sit voluptatem accusantium doloremque laudantium,
totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
<p class="red-text-shadow">Sed ut perspiciatis unde omnis iste
natus error sit voluptatem accusantium doloremque laudantium,
totam rem aperiam, eaque ipsa quae ab illo inventore.</p>
</body>
</html>

View File

@ -0,0 +1,88 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[8, 8]: Some
[48, 8]: text
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[271, 8]: followed
[332, 8]: by
[352, 8]: more
[388, 8]: text
[416, 8]: without
[469, 8]: shadow.
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[653, 8]: and
[680, 8]: some
[718, 8]: more
[754, 8]: text
[8, 27]: without
[61, 27]: shadow
Text: rgb(255,255,255) normal normal 400 24px Georgia Shadows: (rgb(0,0,0) 1px 1px 2px, rgb(0,0,255) 0px 0px 24px)
[8, 180]: Sed
[53, 180]: ut
[80, 180]: perspiciatis
[208, 180]: unde
[268, 180]: omnis
[339, 180]: iste
[382, 180]: natus
[446, 180]: error
[506, 180]: sit
[538, 180]: voluptatem
[8, 207]: accusantium
[148, 207]: doloremque
[282, 207]: laudantium,
[418, 207]: totam
[486, 207]: rem
[534, 207]: aperiam,
[634, 207]: eaque
[702, 207]: ipsa
[8, 234]: quae
[65, 234]: ab
[96, 234]: illo
[136, 234]: inventore.
Text: rgb(0,0,0) normal normal 400 16px Times New Roman Shadows: (rgb(0,0,0) 0px -2px 0px)
[8, 286]: Sed
[36, 286]: ut
[52, 286]: perspiciatis
[129, 286]: unde
[164, 286]: omnis
[208, 286]: iste
[234, 286]: natus
[272, 286]: error
[307, 286]: sit
[326, 286]: voluptatem
[402, 286]: accusantium
[486, 286]: doloremque
[566, 286]: laudantium,
[646, 286]: totam
[686, 286]: rem
[715, 286]: aperiam,
[8, 305]: eaque
[49, 305]: ipsa
[79, 305]: quae
[113, 305]: ab
[132, 305]: illo
[158, 305]: inventore.
Text: rgb(0,0,0) normal normal 400 16px Times New Roman Shadows: (rgb(136,136,136) 1px 1px 3px)
[76, 8]: followed
[137, 8]: by
[157, 8]: text
[185, 8]: with
[218, 8]: shadow
Text: rgb(0,0,0) normal normal 700 16px Times New Roman Shadows: (rgb(0,0,0) 1px 1px 2px, rgb(0,0,255) 0px 0px 16px)
[525, 8]: Multi
[567, 8]: text
[597, 8]: shadow
Text: rgba(0,0,0,0) normal normal 400 48px Times New Roman Shadows: (rgb(0,0,255) 0px 0px 5px, rgb(255,0,0) 2px 2px 0px)
[8, 46]: testing
[148, 46]: with
[245, 46]: transparent
Text: rgba(0,255,0,0.5) normal normal 700 48px Times New Roman Shadows: (rgb(0,0,255) 0px 0px 5px, rgb(255,0,0) 2px 2px 0px) solid rgba(0,255,0,0.5) underline
[470, 46]: testing
[606, 46]:
[618, 46]: with
[709, 46]:
[8, 102]: low
[80, 102]:
[92, 102]: opacity

View File

@ -0,0 +1,114 @@
<!DOCTYPE html>
<html>
<head>
<title>Text tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
float:left;
}
h2 {
clear:both;
}
</style>
</head>
<body> <h1>&lt;h1&gt; text-decoration</h1>
<div style="font-family:Arial;">
<h2>Arial</h2>
<ol class="small">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="medium">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="large">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
</div>
<div style="font-family:Verdana;">
<h2>Verdana</h2>
<ol class="small">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="medium">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="large">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
</div>
<div style="font-family:Tahoma;">
<h2>Tahoma</h2>
<ol class="small">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="medium">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
<ol class="large">
<li style="text-decoration:none;">text-decoration:none;</li>
<li style="text-decoration:underline;">text-decoration:underline;</li>
<li style="text-decoration:overline;">text-decoration:overline;</li>
<li style="text-decoration:line-through;">text-decoration:line-through;</li>
</ol>
</div>
<h2>&lt;h2&gt; text-transform</h2>
<ul>
<li style="text-transform:none;">text-transform:none;</li>
<li style="text-transform:capitalize;">text-transform: capitalize; (including foreign characters such as Öaäå)</li>
<li style="text-transform:uppercase;">text-transform:uppercase;</li>
<li style="text-transform:lowercase;">text-transform:lowercase;</li>
</ul>
<h3>&lt;h3&gt; misc text alignments</h3>
<ul>
<li style="word-spacing:5px;">word-spacing:5px; (as each letter is rendered individually, the bounds will always be correct)</li>
<li style="line-height:35px;">line-height:35px; <br />(same goes for line-height)</li>
<li style="letter-spacing:5px;">letter-spacing:5px;</li>
<li style="text-align:right;width:300px;">text-align:right;width:300px;</li>
<li style="font-variant:small-caps;">font-variant:small-caps; </li>
</ul>
</body>
</html>

View File

@ -0,0 +1,266 @@
Window: [800, 1231]
Rectangle: [0, 0, 800, 1231] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 700 32px Times New Roman
[8, 22]: <h1>
[86, 22]: text
[138, 22]: -
[148, 22]: decoration
Text: rgb(0,0,0) normal normal 700 24px Times New Roman
[8, 889]: <h2>
[67, 889]: text
[105, 889]: -
[113, 889]: transform
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 936]: text
[72, 936]: -
[77, 936]: transform:none;
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 955]: Text
[76, 955]: -
[82, 955]: Transform:
[157, 955]: Capitalize;
[230, 955]: (Including
[301, 955]: Foreign
[355, 955]: Characters
[427, 955]: Such
[463, 955]: As
[485, 955]: Öaäå)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 974]: TEXT
[88, 974]: -
[93, 974]: TRANSFORM:UPPERCASE;
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 992]: text
[72, 992]: -
[77, 992]: transform:lowercase;
Text: rgb(0,0,0) normal normal 700 18.72px Times New Roman
[8, 1030]: <h3>
[54, 1030]: misc
[95, 1030]: text
[130, 1030]: alignments
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 1070]: word
[81, 1070]: -
[86, 1070]: spacing:5px;
[177, 1070]: (as
[205, 1070]: each
[243, 1070]: letter
[285, 1070]: is
[304, 1070]: rendered
[370, 1070]: individually,
[459, 1070]: the
[487, 1070]: bounds
[542, 1070]: will
[576, 1070]: always
[630, 1070]: be
[654, 1070]: correct)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 1097]: line
[72, 1097]: -
[77, 1097]: height:35px;
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 1132]: (same
[90, 1132]: goes
[124, 1132]: for
[146, 1132]: line
[170, 1132]: -
[176, 1132]: height)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[48, 1159]: l
[58, 1159]: e
[70, 1159]: t
[79, 1159]: t
[88, 1159]: e
[100, 1159]: r
[110, 1159]: -
[121, 1159]: s
[132, 1159]: p
[145, 1159]: a
[157, 1159]: c
[169, 1159]: i
[179, 1159]: n
[192, 1159]: g
[205, 1159]: :
[214, 1159]: 5
[227, 1159]: p
[240, 1159]: x
[253, 1159]: ;
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[162, 1178]: text
[186, 1178]: -
[192, 1178]: align:right;width:300px;
Text: rgb(0,0,0) normal small-caps 400 16px Times New Roman
[48, 1196]: font
[79, 1196]: -
[84, 1196]: variant:small
[180, 1196]: -
[186, 1196]: caps;
Text: rgb(0,0,0) normal normal 700 24px Arial
[8, 100]: Arial
Text: rgb(0,0,0) normal normal 400 14px Arial
[48, 147]: text
[70, 147]: -
[75, 147]: decoration:none;
Text: rgb(0,0,0) normal normal 400 14px Arial solid rgb(0,0,0) underline
[48, 163]: text
[70, 163]: -
[75, 163]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 14px Arial solid rgb(0,0,0) overline
[48, 179]: text
[70, 179]: -
[75, 179]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 14px Arial solid rgb(0,0,0) line-through
[48, 195]: text
[70, 195]: -
[75, 195]: decoration:line
[166, 195]: -
[171, 195]: through;
Text: rgb(0,0,0) normal normal 400 18px Arial
[48, 229]: text
[77, 229]: -
[83, 229]: decoration:none;
Text: rgb(0,0,0) normal normal 400 18px Arial solid rgb(0,0,0) underline
[48, 250]: text
[77, 250]: -
[83, 250]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 18px Arial solid rgb(0,0,0) overline
[48, 270]: text
[77, 270]: -
[83, 270]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 18px Arial solid rgb(0,0,0) line-through
[48, 291]: text
[77, 291]: -
[83, 291]: decoration:line
[200, 291]: -
[206, 291]: through;
Text: rgb(0,0,0) normal normal 400 24px Arial
[48, 336]: text
[87, 336]: -
[95, 336]: decoration:none;
Text: rgb(0,0,0) normal normal 400 24px Arial solid rgb(0,0,0) underline
[48, 364]: text
[87, 364]: -
[95, 364]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 24px Arial solid rgb(0,0,0) overline
[48, 392]: text
[87, 392]: -
[95, 392]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 24px Arial solid rgb(0,0,0) line-through
[48, 419]: text
[87, 419]: -
[95, 419]: decoration:line
[251, 419]: -
[259, 419]: through;
Text: rgb(0,0,0) normal normal 700 24px Verdana
[347, 99]: Verdana
Text: rgb(0,0,0) normal normal 400 14px Verdana
[387, 148]: text
[414, 148]: -
[420, 148]: decoration:none;
Text: rgb(0,0,0) normal normal 400 14px Verdana solid rgb(0,0,0) underline
[387, 165]: text
[414, 165]: -
[420, 165]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 14px Verdana solid rgb(0,0,0) overline
[387, 182]: text
[414, 182]: -
[420, 182]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 14px Verdana solid rgb(0,0,0) line-through
[387, 199]: text
[414, 199]: -
[420, 199]: decoration:line
[526, 199]: -
[532, 199]: through;
Text: rgb(0,0,0) normal normal 400 18px Verdana
[387, 234]: text
[422, 234]: -
[430, 234]: decoration:none;
Text: rgb(0,0,0) normal normal 400 18px Verdana solid rgb(0,0,0) underline
[387, 255]: text
[422, 255]: -
[430, 255]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 18px Verdana solid rgb(0,0,0) overline
[387, 277]: text
[422, 277]: -
[430, 277]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 18px Verdana solid rgb(0,0,0) line-through
[387, 298]: text
[422, 298]: -
[430, 298]: decoration:line
[565, 298]: -
[573, 298]: through;
Text: rgb(0,0,0) normal normal 400 24px Verdana
[387, 344]: text
[434, 344]: -
[445, 344]: decoration:none;
Text: rgb(0,0,0) normal normal 400 24px Verdana solid rgb(0,0,0) underline
[387, 373]: text
[434, 373]: -
[445, 373]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 24px Verdana solid rgb(0,0,0) overline
[387, 402]: text
[434, 402]: -
[445, 402]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 24px Verdana solid rgb(0,0,0) line-through
[387, 432]: text
[434, 432]: -
[445, 432]: decoration:line
[624, 432]: -
[636, 432]: through;
Text: rgb(0,0,0) normal normal 700 24px Tahoma
[8, 505]: Tahoma
Text: rgb(0,0,0) normal normal 400 14px Tahoma
[48, 553]: text
[72, 553]: -
[77, 553]: decoration:none;
Text: rgb(0,0,0) normal normal 400 14px Tahoma solid rgb(0,0,0) underline
[48, 570]: text
[72, 570]: -
[77, 570]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 14px Tahoma solid rgb(0,0,0) overline
[48, 587]: text
[72, 587]: -
[77, 587]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 14px Tahoma solid rgb(0,0,0) line-through
[48, 604]: text
[72, 604]: -
[77, 604]: decoration:line
[168, 604]: -
[173, 604]: through;
Text: rgb(0,0,0) normal normal 400 18px Tahoma
[48, 639]: text
[78, 639]: -
[85, 639]: decoration:none;
Text: rgb(0,0,0) normal normal 400 18px Tahoma solid rgb(0,0,0) underline
[48, 660]: text
[78, 660]: -
[85, 660]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 18px Tahoma solid rgb(0,0,0) overline
[48, 682]: text
[78, 682]: -
[85, 682]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 18px Tahoma solid rgb(0,0,0) line-through
[48, 703]: text
[78, 703]: -
[85, 703]: decoration:line
[202, 703]: -
[209, 703]: through;
Text: rgb(0,0,0) normal normal 400 24px Tahoma
[48, 749]: text
[88, 749]: -
[97, 749]: decoration:none;
Text: rgb(0,0,0) normal normal 400 24px Tahoma solid rgb(0,0,0) underline
[48, 778]: text
[88, 778]: -
[97, 778]: decoration:underline;
Text: rgb(0,0,0) normal normal 400 24px Tahoma solid rgb(0,0,0) overline
[48, 807]: text
[88, 807]: -
[97, 807]: decoration:overline;
Text: rgb(0,0,0) normal normal 400 24px Tahoma solid rgb(0,0,0) line-through
[48, 835]: text
[88, 835]: -
[97, 835]: decoration:line
[254, 835]: -
[263, 835]: through;

View File

@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<title>Text-decoration:underline tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
$('body').empty();
$.each(['arial','verdana','tahoma','courier new'],function(i,e){
var div = $('<div />').css('font-family',e).appendTo('body');
for(var i=0;i<=10;i++){
$('<div />').text('Testing texts').css('margin-top',1).css('border','1px solid black').css('font-size',(16+i*6)).appendTo(div);
}
});
}
</script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
text-decoration:underline;
line-height:40px;
}
h2 {
clear:both;
}
</style>
</head>
<body>
Creating content through JavaScript
</body>
</html>

View File

@ -0,0 +1,355 @@
Window: [800, 1921]
Rectangle: [0, 0, 800, 1921] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 791, y: 9) > Vector(x: 9, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 50) > Vector(x: 791, y: 49) > Vector(x: 791, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 50) > Vector(x: 8, y: 50) > Vector(x: 9, y: 49) > Vector(x: 791, y: 49))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 50) > Vector(x: 8, y: 8) > Vector(x: 9, y: 9) > Vector(x: 9, y: 49))
Text: rgb(0,0,0) normal normal 400 16px arial solid rgb(0,0,0) underline
[9, 20]: Testing
[60, 20]:
[64, 20]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 51) > Vector(x: 792, y: 51) > Vector(x: 791, y: 52) > Vector(x: 9, y: 52))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 51) > Vector(x: 792, y: 93) > Vector(x: 791, y: 92) > Vector(x: 791, y: 52))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 93) > Vector(x: 8, y: 93) > Vector(x: 9, y: 92) > Vector(x: 791, y: 92))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 93) > Vector(x: 8, y: 51) > Vector(x: 9, y: 52) > Vector(x: 9, y: 92))
Text: rgb(0,0,0) normal normal 400 22px arial solid rgb(0,0,0) underline
[9, 60]: Testing
[79, 60]:
[85, 60]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 94) > Vector(x: 792, y: 94) > Vector(x: 791, y: 95) > Vector(x: 9, y: 95))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 94) > Vector(x: 792, y: 136) > Vector(x: 791, y: 135) > Vector(x: 791, y: 95))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 136) > Vector(x: 8, y: 136) > Vector(x: 9, y: 135) > Vector(x: 791, y: 135))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 136) > Vector(x: 8, y: 94) > Vector(x: 9, y: 95) > Vector(x: 9, y: 135))
Text: rgb(0,0,0) normal normal 400 28px arial solid rgb(0,0,0) underline
[9, 100]: Testing
[98, 100]:
[106, 100]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 137) > Vector(x: 792, y: 137) > Vector(x: 791, y: 138) > Vector(x: 9, y: 138))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 137) > Vector(x: 792, y: 179) > Vector(x: 791, y: 178) > Vector(x: 791, y: 138))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 179) > Vector(x: 8, y: 179) > Vector(x: 9, y: 178) > Vector(x: 791, y: 178))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 179) > Vector(x: 8, y: 137) > Vector(x: 9, y: 138) > Vector(x: 9, y: 178))
Text: rgb(0,0,0) normal normal 400 34px arial solid rgb(0,0,0) underline
[9, 139]: Testing
[117, 139]:
[126, 139]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 180) > Vector(x: 792, y: 180) > Vector(x: 791, y: 181) > Vector(x: 9, y: 181))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 180) > Vector(x: 792, y: 222) > Vector(x: 791, y: 221) > Vector(x: 791, y: 181))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 222) > Vector(x: 8, y: 222) > Vector(x: 9, y: 221) > Vector(x: 791, y: 221))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 222) > Vector(x: 8, y: 180) > Vector(x: 9, y: 181) > Vector(x: 9, y: 221))
Text: rgb(0,0,0) normal normal 400 40px arial solid rgb(0,0,0) underline
[9, 179]: Testing
[136, 179]:
[147, 179]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 223) > Vector(x: 792, y: 223) > Vector(x: 791, y: 224) > Vector(x: 9, y: 224))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 223) > Vector(x: 792, y: 265) > Vector(x: 791, y: 264) > Vector(x: 791, y: 224))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 265) > Vector(x: 8, y: 265) > Vector(x: 9, y: 264) > Vector(x: 791, y: 264))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 265) > Vector(x: 8, y: 223) > Vector(x: 9, y: 224) > Vector(x: 9, y: 264))
Text: rgb(0,0,0) normal normal 400 46px arial solid rgb(0,0,0) underline
[9, 219]: Testing
[155, 219]:
[168, 219]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 266) > Vector(x: 792, y: 266) > Vector(x: 791, y: 267) > Vector(x: 9, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 266) > Vector(x: 792, y: 308) > Vector(x: 791, y: 307) > Vector(x: 791, y: 267))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 308) > Vector(x: 8, y: 308) > Vector(x: 9, y: 307) > Vector(x: 791, y: 307))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 308) > Vector(x: 8, y: 266) > Vector(x: 9, y: 267) > Vector(x: 9, y: 307))
Text: rgb(0,0,0) normal normal 400 52px arial solid rgb(0,0,0) underline
[9, 258]: Testing
[174, 258]:
[188, 258]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 309) > Vector(x: 792, y: 309) > Vector(x: 791, y: 310) > Vector(x: 9, y: 310))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 309) > Vector(x: 792, y: 351) > Vector(x: 791, y: 350) > Vector(x: 791, y: 310))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 351) > Vector(x: 8, y: 351) > Vector(x: 9, y: 350) > Vector(x: 791, y: 350))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 351) > Vector(x: 8, y: 309) > Vector(x: 9, y: 310) > Vector(x: 9, y: 350))
Text: rgb(0,0,0) normal normal 400 58px arial solid rgb(0,0,0) underline
[9, 298]: Testing
[193, 298]:
[209, 298]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 352) > Vector(x: 792, y: 352) > Vector(x: 791, y: 353) > Vector(x: 9, y: 353))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 352) > Vector(x: 792, y: 394) > Vector(x: 791, y: 393) > Vector(x: 791, y: 353))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 394) > Vector(x: 8, y: 394) > Vector(x: 9, y: 393) > Vector(x: 791, y: 393))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 394) > Vector(x: 8, y: 352) > Vector(x: 9, y: 353) > Vector(x: 9, y: 393))
Text: rgb(0,0,0) normal normal 400 64px arial solid rgb(0,0,0) underline
[9, 337]: Testing
[212, 337]:
[230, 337]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 395) > Vector(x: 792, y: 395) > Vector(x: 791, y: 396) > Vector(x: 9, y: 396))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 395) > Vector(x: 792, y: 437) > Vector(x: 791, y: 436) > Vector(x: 791, y: 396))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 437) > Vector(x: 8, y: 437) > Vector(x: 9, y: 436) > Vector(x: 791, y: 436))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 437) > Vector(x: 8, y: 395) > Vector(x: 9, y: 396) > Vector(x: 9, y: 436))
Text: rgb(0,0,0) normal normal 400 70px arial solid rgb(0,0,0) underline
[9, 377]: Testing
[231, 377]:
[250, 377]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 438) > Vector(x: 792, y: 438) > Vector(x: 791, y: 439) > Vector(x: 9, y: 439))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 438) > Vector(x: 792, y: 480) > Vector(x: 791, y: 479) > Vector(x: 791, y: 439))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 480) > Vector(x: 8, y: 480) > Vector(x: 9, y: 479) > Vector(x: 791, y: 479))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 480) > Vector(x: 8, y: 438) > Vector(x: 9, y: 439) > Vector(x: 9, y: 479))
Text: rgb(0,0,0) normal normal 400 76px arial solid rgb(0,0,0) underline
[9, 417]: Testing
[250, 417]:
[271, 417]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 481) > Vector(x: 792, y: 481) > Vector(x: 791, y: 482) > Vector(x: 9, y: 482))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 481) > Vector(x: 792, y: 523) > Vector(x: 791, y: 522) > Vector(x: 791, y: 482))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 523) > Vector(x: 8, y: 523) > Vector(x: 9, y: 522) > Vector(x: 791, y: 522))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 523) > Vector(x: 8, y: 481) > Vector(x: 9, y: 482) > Vector(x: 9, y: 522))
Text: rgb(0,0,0) normal normal 400 16px verdana solid rgb(0,0,0) underline
[9, 493]: Testing
[66, 493]:
[72, 493]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 524) > Vector(x: 792, y: 524) > Vector(x: 791, y: 525) > Vector(x: 9, y: 525))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 524) > Vector(x: 792, y: 566) > Vector(x: 791, y: 565) > Vector(x: 791, y: 525))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 566) > Vector(x: 8, y: 566) > Vector(x: 9, y: 565) > Vector(x: 791, y: 565))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 566) > Vector(x: 8, y: 524) > Vector(x: 9, y: 525) > Vector(x: 9, y: 565))
Text: rgb(0,0,0) normal normal 400 22px verdana solid rgb(0,0,0) underline
[9, 532]: Testing
[87, 532]:
[95, 532]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 567) > Vector(x: 792, y: 567) > Vector(x: 791, y: 568) > Vector(x: 9, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 567) > Vector(x: 792, y: 609) > Vector(x: 791, y: 608) > Vector(x: 791, y: 568))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 609) > Vector(x: 8, y: 609) > Vector(x: 9, y: 608) > Vector(x: 791, y: 608))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 609) > Vector(x: 8, y: 567) > Vector(x: 9, y: 568) > Vector(x: 9, y: 608))
Text: rgb(0,0,0) normal normal 400 28px verdana solid rgb(0,0,0) underline
[9, 571]: Testing
[108, 571]:
[118, 571]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 610) > Vector(x: 792, y: 610) > Vector(x: 791, y: 611) > Vector(x: 9, y: 611))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 610) > Vector(x: 792, y: 652) > Vector(x: 791, y: 651) > Vector(x: 791, y: 611))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 652) > Vector(x: 8, y: 652) > Vector(x: 9, y: 651) > Vector(x: 791, y: 651))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 652) > Vector(x: 8, y: 610) > Vector(x: 9, y: 611) > Vector(x: 9, y: 651))
Text: rgb(0,0,0) normal normal 400 34px verdana solid rgb(0,0,0) underline
[9, 610]: Testing
[130, 610]:
[142, 610]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 653) > Vector(x: 792, y: 653) > Vector(x: 791, y: 654) > Vector(x: 9, y: 654))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 653) > Vector(x: 792, y: 695) > Vector(x: 791, y: 694) > Vector(x: 791, y: 654))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 695) > Vector(x: 8, y: 695) > Vector(x: 9, y: 694) > Vector(x: 791, y: 694))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 695) > Vector(x: 8, y: 653) > Vector(x: 9, y: 654) > Vector(x: 9, y: 694))
Text: rgb(0,0,0) normal normal 400 40px verdana solid rgb(0,0,0) underline
[9, 650]: Testing
[151, 650]:
[165, 650]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 696) > Vector(x: 792, y: 696) > Vector(x: 791, y: 697) > Vector(x: 9, y: 697))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 696) > Vector(x: 792, y: 738) > Vector(x: 791, y: 737) > Vector(x: 791, y: 697))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 738) > Vector(x: 8, y: 738) > Vector(x: 9, y: 737) > Vector(x: 791, y: 737))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 738) > Vector(x: 8, y: 696) > Vector(x: 9, y: 697) > Vector(x: 9, y: 737))
Text: rgb(0,0,0) normal normal 400 46px verdana solid rgb(0,0,0) underline
[9, 689]: Testing
[172, 689]:
[188, 689]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 739) > Vector(x: 792, y: 739) > Vector(x: 791, y: 740) > Vector(x: 9, y: 740))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 739) > Vector(x: 792, y: 781) > Vector(x: 791, y: 780) > Vector(x: 791, y: 740))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 781) > Vector(x: 8, y: 781) > Vector(x: 9, y: 780) > Vector(x: 791, y: 780))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 781) > Vector(x: 8, y: 739) > Vector(x: 9, y: 740) > Vector(x: 9, y: 780))
Text: rgb(0,0,0) normal normal 400 52px verdana solid rgb(0,0,0) underline
[9, 729]: Testing
[194, 729]:
[212, 729]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 782) > Vector(x: 792, y: 782) > Vector(x: 791, y: 783) > Vector(x: 9, y: 783))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 782) > Vector(x: 792, y: 824) > Vector(x: 791, y: 823) > Vector(x: 791, y: 783))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 824) > Vector(x: 8, y: 824) > Vector(x: 9, y: 823) > Vector(x: 791, y: 823))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 824) > Vector(x: 8, y: 782) > Vector(x: 9, y: 783) > Vector(x: 9, y: 823))
Text: rgb(0,0,0) normal normal 400 58px verdana solid rgb(0,0,0) underline
[9, 768]: Testing
[215, 768]:
[235, 768]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 825) > Vector(x: 792, y: 825) > Vector(x: 791, y: 826) > Vector(x: 9, y: 826))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 825) > Vector(x: 792, y: 867) > Vector(x: 791, y: 866) > Vector(x: 791, y: 826))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 867) > Vector(x: 8, y: 867) > Vector(x: 9, y: 866) > Vector(x: 791, y: 866))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 867) > Vector(x: 8, y: 825) > Vector(x: 9, y: 826) > Vector(x: 9, y: 866))
Text: rgb(0,0,0) normal normal 400 64px verdana solid rgb(0,0,0) underline
[9, 807]: Testing
[236, 807]:
[259, 807]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 868) > Vector(x: 792, y: 868) > Vector(x: 791, y: 869) > Vector(x: 9, y: 869))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 868) > Vector(x: 792, y: 910) > Vector(x: 791, y: 909) > Vector(x: 791, y: 869))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 910) > Vector(x: 8, y: 910) > Vector(x: 9, y: 909) > Vector(x: 791, y: 909))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 910) > Vector(x: 8, y: 868) > Vector(x: 9, y: 869) > Vector(x: 9, y: 909))
Text: rgb(0,0,0) normal normal 400 70px verdana solid rgb(0,0,0) underline
[9, 846]: Testing
[258, 846]:
[282, 846]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 911) > Vector(x: 792, y: 911) > Vector(x: 791, y: 912) > Vector(x: 9, y: 912))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 911) > Vector(x: 792, y: 953) > Vector(x: 791, y: 952) > Vector(x: 791, y: 912))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 953) > Vector(x: 8, y: 953) > Vector(x: 9, y: 952) > Vector(x: 791, y: 952))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 953) > Vector(x: 8, y: 911) > Vector(x: 9, y: 912) > Vector(x: 9, y: 952))
Text: rgb(0,0,0) normal normal 400 76px verdana solid rgb(0,0,0) underline
[9, 886]: Testing
[279, 886]:
[306, 886]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 954) > Vector(x: 792, y: 954) > Vector(x: 791, y: 955) > Vector(x: 9, y: 955))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 954) > Vector(x: 792, y: 996) > Vector(x: 791, y: 995) > Vector(x: 791, y: 955))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 996) > Vector(x: 8, y: 996) > Vector(x: 9, y: 995) > Vector(x: 791, y: 995))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 996) > Vector(x: 8, y: 954) > Vector(x: 9, y: 955) > Vector(x: 9, y: 995))
Text: rgb(0,0,0) normal normal 400 16px tahoma solid rgb(0,0,0) underline
[9, 966]: Testing
[61, 966]:
[66, 966]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 997) > Vector(x: 792, y: 997) > Vector(x: 791, y: 998) > Vector(x: 9, y: 998))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 997) > Vector(x: 792, y: 1039) > Vector(x: 791, y: 1038) > Vector(x: 791, y: 998))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1039) > Vector(x: 8, y: 1039) > Vector(x: 9, y: 1038) > Vector(x: 791, y: 1038))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1039) > Vector(x: 8, y: 997) > Vector(x: 9, y: 998) > Vector(x: 9, y: 1038))
Text: rgb(0,0,0) normal normal 400 22px tahoma solid rgb(0,0,0) underline
[9, 1005]: Testing
[80, 1005]:
[87, 1005]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1040) > Vector(x: 792, y: 1040) > Vector(x: 791, y: 1041) > Vector(x: 9, y: 1041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1040) > Vector(x: 792, y: 1082) > Vector(x: 791, y: 1081) > Vector(x: 791, y: 1041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1082) > Vector(x: 8, y: 1082) > Vector(x: 9, y: 1081) > Vector(x: 791, y: 1081))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1082) > Vector(x: 8, y: 1040) > Vector(x: 9, y: 1041) > Vector(x: 9, y: 1081))
Text: rgb(0,0,0) normal normal 400 28px tahoma solid rgb(0,0,0) underline
[9, 1044]: Testing
[100, 1044]:
[108, 1044]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1083) > Vector(x: 792, y: 1083) > Vector(x: 791, y: 1084) > Vector(x: 9, y: 1084))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1083) > Vector(x: 792, y: 1125) > Vector(x: 791, y: 1124) > Vector(x: 791, y: 1084))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1125) > Vector(x: 8, y: 1125) > Vector(x: 9, y: 1124) > Vector(x: 791, y: 1124))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1125) > Vector(x: 8, y: 1083) > Vector(x: 9, y: 1084) > Vector(x: 9, y: 1124))
Text: rgb(0,0,0) normal normal 400 34px tahoma solid rgb(0,0,0) underline
[9, 1083]: Testing
[119, 1083]:
[130, 1083]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1126) > Vector(x: 792, y: 1126) > Vector(x: 791, y: 1127) > Vector(x: 9, y: 1127))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1126) > Vector(x: 792, y: 1168) > Vector(x: 791, y: 1167) > Vector(x: 791, y: 1127))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1168) > Vector(x: 8, y: 1168) > Vector(x: 9, y: 1167) > Vector(x: 791, y: 1167))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1168) > Vector(x: 8, y: 1126) > Vector(x: 9, y: 1127) > Vector(x: 9, y: 1167))
Text: rgb(0,0,0) normal normal 400 40px tahoma solid rgb(0,0,0) underline
[9, 1123]: Testing
[138, 1123]:
[151, 1123]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1169) > Vector(x: 792, y: 1169) > Vector(x: 791, y: 1170) > Vector(x: 9, y: 1170))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1169) > Vector(x: 792, y: 1211) > Vector(x: 791, y: 1210) > Vector(x: 791, y: 1170))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1211) > Vector(x: 8, y: 1211) > Vector(x: 9, y: 1210) > Vector(x: 791, y: 1210))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1211) > Vector(x: 8, y: 1169) > Vector(x: 9, y: 1170) > Vector(x: 9, y: 1210))
Text: rgb(0,0,0) normal normal 400 46px tahoma solid rgb(0,0,0) underline
[9, 1162]: Testing
[158, 1162]:
[172, 1162]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1212) > Vector(x: 792, y: 1212) > Vector(x: 791, y: 1213) > Vector(x: 9, y: 1213))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1212) > Vector(x: 792, y: 1254) > Vector(x: 791, y: 1253) > Vector(x: 791, y: 1213))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1254) > Vector(x: 8, y: 1254) > Vector(x: 9, y: 1253) > Vector(x: 791, y: 1253))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1254) > Vector(x: 8, y: 1212) > Vector(x: 9, y: 1213) > Vector(x: 9, y: 1253))
Text: rgb(0,0,0) normal normal 400 52px tahoma solid rgb(0,0,0) underline
[9, 1202]: Testing
[177, 1202]:
[193, 1202]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1255) > Vector(x: 792, y: 1255) > Vector(x: 791, y: 1256) > Vector(x: 9, y: 1256))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1255) > Vector(x: 792, y: 1297) > Vector(x: 791, y: 1296) > Vector(x: 791, y: 1256))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1297) > Vector(x: 8, y: 1297) > Vector(x: 9, y: 1296) > Vector(x: 791, y: 1296))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1297) > Vector(x: 8, y: 1255) > Vector(x: 9, y: 1256) > Vector(x: 9, y: 1296))
Text: rgb(0,0,0) normal normal 400 58px tahoma solid rgb(0,0,0) underline
[9, 1241]: Testing
[196, 1241]:
[214, 1241]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1298) > Vector(x: 792, y: 1298) > Vector(x: 791, y: 1299) > Vector(x: 9, y: 1299))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1298) > Vector(x: 792, y: 1340) > Vector(x: 791, y: 1339) > Vector(x: 791, y: 1299))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1340) > Vector(x: 8, y: 1340) > Vector(x: 9, y: 1339) > Vector(x: 791, y: 1339))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1340) > Vector(x: 8, y: 1298) > Vector(x: 9, y: 1299) > Vector(x: 9, y: 1339))
Text: rgb(0,0,0) normal normal 400 64px tahoma solid rgb(0,0,0) underline
[9, 1280]: Testing
[216, 1280]:
[236, 1280]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1341) > Vector(x: 792, y: 1341) > Vector(x: 791, y: 1342) > Vector(x: 9, y: 1342))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1341) > Vector(x: 792, y: 1383) > Vector(x: 791, y: 1382) > Vector(x: 791, y: 1342))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1383) > Vector(x: 8, y: 1383) > Vector(x: 9, y: 1382) > Vector(x: 791, y: 1382))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1383) > Vector(x: 8, y: 1341) > Vector(x: 9, y: 1342) > Vector(x: 9, y: 1382))
Text: rgb(0,0,0) normal normal 400 70px tahoma solid rgb(0,0,0) underline
[9, 1320]: Testing
[235, 1320]:
[257, 1320]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1384) > Vector(x: 792, y: 1384) > Vector(x: 791, y: 1385) > Vector(x: 9, y: 1385))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1384) > Vector(x: 792, y: 1426) > Vector(x: 791, y: 1425) > Vector(x: 791, y: 1385))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1426) > Vector(x: 8, y: 1426) > Vector(x: 9, y: 1425) > Vector(x: 791, y: 1425))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1426) > Vector(x: 8, y: 1384) > Vector(x: 9, y: 1385) > Vector(x: 9, y: 1425))
Text: rgb(0,0,0) normal normal 400 76px tahoma solid rgb(0,0,0) underline
[9, 1359]: Testing
[254, 1359]:
[278, 1359]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1427) > Vector(x: 792, y: 1427) > Vector(x: 791, y: 1428) > Vector(x: 9, y: 1428))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1427) > Vector(x: 792, y: 1469) > Vector(x: 791, y: 1468) > Vector(x: 791, y: 1428))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1469) > Vector(x: 8, y: 1469) > Vector(x: 9, y: 1468) > Vector(x: 791, y: 1468))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1469) > Vector(x: 8, y: 1427) > Vector(x: 9, y: 1428) > Vector(x: 9, y: 1468))
Text: rgb(0,0,0) normal normal 400 16px courier new solid rgb(0,0,0) underline
[9, 1439]: Testing
[76, 1439]:
[86, 1439]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1470) > Vector(x: 792, y: 1470) > Vector(x: 791, y: 1471) > Vector(x: 9, y: 1471))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1470) > Vector(x: 792, y: 1512) > Vector(x: 791, y: 1511) > Vector(x: 791, y: 1471))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1512) > Vector(x: 8, y: 1512) > Vector(x: 9, y: 1511) > Vector(x: 791, y: 1511))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1512) > Vector(x: 8, y: 1470) > Vector(x: 9, y: 1471) > Vector(x: 9, y: 1511))
Text: rgb(0,0,0) normal normal 400 22px courier new solid rgb(0,0,0) underline
[9, 1478]: Testing
[102, 1478]:
[115, 1478]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1513) > Vector(x: 792, y: 1513) > Vector(x: 791, y: 1514) > Vector(x: 9, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1513) > Vector(x: 792, y: 1555) > Vector(x: 791, y: 1554) > Vector(x: 791, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1555) > Vector(x: 8, y: 1555) > Vector(x: 9, y: 1554) > Vector(x: 791, y: 1554))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1555) > Vector(x: 8, y: 1513) > Vector(x: 9, y: 1514) > Vector(x: 9, y: 1554))
Text: rgb(0,0,0) normal normal 400 28px courier new solid rgb(0,0,0) underline
[9, 1518]: Testing
[127, 1518]:
[144, 1518]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1556) > Vector(x: 792, y: 1556) > Vector(x: 791, y: 1557) > Vector(x: 9, y: 1557))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1556) > Vector(x: 792, y: 1598) > Vector(x: 791, y: 1597) > Vector(x: 791, y: 1557))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1598) > Vector(x: 8, y: 1598) > Vector(x: 9, y: 1597) > Vector(x: 791, y: 1597))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1598) > Vector(x: 8, y: 1556) > Vector(x: 9, y: 1557) > Vector(x: 9, y: 1597))
Text: rgb(0,0,0) normal normal 400 34px courier new solid rgb(0,0,0) underline
[9, 1558]: Testing
[152, 1558]:
[172, 1558]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1599) > Vector(x: 792, y: 1599) > Vector(x: 791, y: 1600) > Vector(x: 9, y: 1600))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1599) > Vector(x: 792, y: 1641) > Vector(x: 791, y: 1640) > Vector(x: 791, y: 1600))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1641) > Vector(x: 8, y: 1641) > Vector(x: 9, y: 1640) > Vector(x: 791, y: 1640))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1641) > Vector(x: 8, y: 1599) > Vector(x: 9, y: 1600) > Vector(x: 9, y: 1640))
Text: rgb(0,0,0) normal normal 400 40px courier new solid rgb(0,0,0) underline
[9, 1597]: Testing
[177, 1597]:
[201, 1597]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1642) > Vector(x: 792, y: 1642) > Vector(x: 791, y: 1643) > Vector(x: 9, y: 1643))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1642) > Vector(x: 792, y: 1684) > Vector(x: 791, y: 1683) > Vector(x: 791, y: 1643))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1684) > Vector(x: 8, y: 1684) > Vector(x: 9, y: 1683) > Vector(x: 791, y: 1683))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1684) > Vector(x: 8, y: 1642) > Vector(x: 9, y: 1643) > Vector(x: 9, y: 1683))
Text: rgb(0,0,0) normal normal 400 46px courier new solid rgb(0,0,0) underline
[9, 1637]: Testing
[202, 1637]:
[230, 1637]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1685) > Vector(x: 792, y: 1685) > Vector(x: 791, y: 1686) > Vector(x: 9, y: 1686))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1685) > Vector(x: 792, y: 1727) > Vector(x: 791, y: 1726) > Vector(x: 791, y: 1686))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1727) > Vector(x: 8, y: 1727) > Vector(x: 9, y: 1726) > Vector(x: 791, y: 1726))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1727) > Vector(x: 8, y: 1685) > Vector(x: 9, y: 1686) > Vector(x: 9, y: 1726))
Text: rgb(0,0,0) normal normal 400 52px courier new solid rgb(0,0,0) underline
[9, 1677]: Testing
[228, 1677]:
[259, 1677]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1728) > Vector(x: 792, y: 1728) > Vector(x: 791, y: 1729) > Vector(x: 9, y: 1729))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1728) > Vector(x: 792, y: 1770) > Vector(x: 791, y: 1769) > Vector(x: 791, y: 1729))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1770) > Vector(x: 8, y: 1770) > Vector(x: 9, y: 1769) > Vector(x: 791, y: 1769))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1770) > Vector(x: 8, y: 1728) > Vector(x: 9, y: 1729) > Vector(x: 9, y: 1769))
Text: rgb(0,0,0) normal normal 400 58px courier new solid rgb(0,0,0) underline
[9, 1716]: Testing
[253, 1716]:
[288, 1716]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1771) > Vector(x: 792, y: 1771) > Vector(x: 791, y: 1772) > Vector(x: 9, y: 1772))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1771) > Vector(x: 792, y: 1813) > Vector(x: 791, y: 1812) > Vector(x: 791, y: 1772))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1813) > Vector(x: 8, y: 1813) > Vector(x: 9, y: 1812) > Vector(x: 791, y: 1812))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1813) > Vector(x: 8, y: 1771) > Vector(x: 9, y: 1772) > Vector(x: 9, y: 1812))
Text: rgb(0,0,0) normal normal 400 64px courier new solid rgb(0,0,0) underline
[9, 1756]: Testing
[278, 1756]:
[316, 1756]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1814) > Vector(x: 792, y: 1814) > Vector(x: 791, y: 1815) > Vector(x: 9, y: 1815))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1814) > Vector(x: 792, y: 1856) > Vector(x: 791, y: 1855) > Vector(x: 791, y: 1815))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1856) > Vector(x: 8, y: 1856) > Vector(x: 9, y: 1855) > Vector(x: 791, y: 1855))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1856) > Vector(x: 8, y: 1814) > Vector(x: 9, y: 1815) > Vector(x: 9, y: 1855))
Text: rgb(0,0,0) normal normal 400 70px courier new solid rgb(0,0,0) underline
[9, 1795]: Testing
[303, 1795]:
[345, 1795]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1857) > Vector(x: 792, y: 1857) > Vector(x: 791, y: 1858) > Vector(x: 9, y: 1858))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1857) > Vector(x: 792, y: 1899) > Vector(x: 791, y: 1898) > Vector(x: 791, y: 1858))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1899) > Vector(x: 8, y: 1899) > Vector(x: 9, y: 1898) > Vector(x: 791, y: 1898))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1899) > Vector(x: 8, y: 1857) > Vector(x: 9, y: 1858) > Vector(x: 9, y: 1898))
Text: rgb(0,0,0) normal normal 400 76px courier new solid rgb(0,0,0) underline
[9, 1835]: Testing
[328, 1835]:
[374, 1835]: texts

View File

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<title>Text-decoration:underline tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<script type="text/javascript">
function setUp() {
$('body').empty();
$.each(['arial','verdana','tahoma','courier new'],function(i,e){
var div = $('<div />').css('font-family',e).appendTo('body');
for(var i=0;i<=10;i++){
$('<div />').text('Testing texts').css('margin-top',1).css('border','1px solid black').css('font-size',(16+i*6)).appendTo(div);
}
});
}
</script>
<style>
.small{
font-size:14px;
}
.medium{
font-size:18px;
}
.large{
font-size:24px;
}
div{
text-decoration:underline;
}
.lineheight{
line-height:40px;
}
h2 {
clear:both;
}
</style>
</head>
<body>
Creating content through JavaScript
</body>
</html>

View File

@ -0,0 +1,355 @@
Window: [800, 2528]
Rectangle: [0, 0, 800, 2528] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 791, y: 9) > Vector(x: 9, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 28) > Vector(x: 791, y: 27) > Vector(x: 791, y: 9))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 28) > Vector(x: 8, y: 28) > Vector(x: 9, y: 27) > Vector(x: 791, y: 27))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 28) > Vector(x: 8, y: 8) > Vector(x: 9, y: 9) > Vector(x: 9, y: 27))
Text: rgb(0,0,0) normal normal 400 16px arial solid rgb(0,0,0) underline
[9, 9]: Testing
[60, 9]:
[64, 9]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 29) > Vector(x: 792, y: 29) > Vector(x: 791, y: 30) > Vector(x: 9, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 29) > Vector(x: 792, y: 57) > Vector(x: 791, y: 56) > Vector(x: 791, y: 30))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 57) > Vector(x: 8, y: 57) > Vector(x: 9, y: 56) > Vector(x: 791, y: 56))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 57) > Vector(x: 8, y: 29) > Vector(x: 9, y: 30) > Vector(x: 9, y: 56))
Text: rgb(0,0,0) normal normal 400 22px arial solid rgb(0,0,0) underline
[9, 31]: Testing
[79, 31]:
[85, 31]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 58) > Vector(x: 792, y: 58) > Vector(x: 791, y: 59) > Vector(x: 9, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 58) > Vector(x: 792, y: 92) > Vector(x: 791, y: 91) > Vector(x: 791, y: 59))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 92) > Vector(x: 8, y: 92) > Vector(x: 9, y: 91) > Vector(x: 791, y: 91))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 92) > Vector(x: 8, y: 58) > Vector(x: 9, y: 59) > Vector(x: 9, y: 91))
Text: rgb(0,0,0) normal normal 400 28px arial solid rgb(0,0,0) underline
[9, 59]: Testing
[98, 59]:
[106, 59]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 93) > Vector(x: 792, y: 93) > Vector(x: 791, y: 94) > Vector(x: 9, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 93) > Vector(x: 792, y: 134) > Vector(x: 791, y: 133) > Vector(x: 791, y: 94))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 134) > Vector(x: 8, y: 134) > Vector(x: 9, y: 133) > Vector(x: 791, y: 133))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 134) > Vector(x: 8, y: 93) > Vector(x: 9, y: 94) > Vector(x: 9, y: 133))
Text: rgb(0,0,0) normal normal 400 34px arial solid rgb(0,0,0) underline
[9, 94]: Testing
[117, 94]:
[126, 94]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 135) > Vector(x: 792, y: 135) > Vector(x: 791, y: 136) > Vector(x: 9, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 135) > Vector(x: 792, y: 183) > Vector(x: 791, y: 182) > Vector(x: 791, y: 136))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 183) > Vector(x: 8, y: 183) > Vector(x: 9, y: 182) > Vector(x: 791, y: 182))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 183) > Vector(x: 8, y: 135) > Vector(x: 9, y: 136) > Vector(x: 9, y: 182))
Text: rgb(0,0,0) normal normal 400 40px arial solid rgb(0,0,0) underline
[9, 136]: Testing
[136, 136]:
[147, 136]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 184) > Vector(x: 792, y: 184) > Vector(x: 791, y: 185) > Vector(x: 9, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 184) > Vector(x: 792, y: 239) > Vector(x: 791, y: 238) > Vector(x: 791, y: 185))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 239) > Vector(x: 8, y: 239) > Vector(x: 9, y: 238) > Vector(x: 791, y: 238))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 239) > Vector(x: 8, y: 184) > Vector(x: 9, y: 185) > Vector(x: 9, y: 238))
Text: rgb(0,0,0) normal normal 400 46px arial solid rgb(0,0,0) underline
[9, 186]: Testing
[155, 186]:
[168, 186]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 240) > Vector(x: 792, y: 240) > Vector(x: 791, y: 241) > Vector(x: 9, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 240) > Vector(x: 792, y: 302) > Vector(x: 791, y: 301) > Vector(x: 791, y: 241))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 302) > Vector(x: 8, y: 302) > Vector(x: 9, y: 301) > Vector(x: 791, y: 301))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 302) > Vector(x: 8, y: 240) > Vector(x: 9, y: 241) > Vector(x: 9, y: 301))
Text: rgb(0,0,0) normal normal 400 52px arial solid rgb(0,0,0) underline
[9, 242]: Testing
[174, 242]:
[188, 242]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 303) > Vector(x: 792, y: 303) > Vector(x: 791, y: 304) > Vector(x: 9, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 303) > Vector(x: 792, y: 371) > Vector(x: 791, y: 370) > Vector(x: 791, y: 304))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 371) > Vector(x: 8, y: 371) > Vector(x: 9, y: 370) > Vector(x: 791, y: 370))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 371) > Vector(x: 8, y: 303) > Vector(x: 9, y: 304) > Vector(x: 9, y: 370))
Text: rgb(0,0,0) normal normal 400 58px arial solid rgb(0,0,0) underline
[9, 305]: Testing
[193, 305]:
[209, 305]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 372) > Vector(x: 792, y: 372) > Vector(x: 791, y: 373) > Vector(x: 9, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 372) > Vector(x: 792, y: 448) > Vector(x: 791, y: 447) > Vector(x: 791, y: 373))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 448) > Vector(x: 8, y: 448) > Vector(x: 9, y: 447) > Vector(x: 791, y: 447))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 448) > Vector(x: 8, y: 372) > Vector(x: 9, y: 373) > Vector(x: 9, y: 447))
Text: rgb(0,0,0) normal normal 400 64px arial solid rgb(0,0,0) underline
[9, 374]: Testing
[212, 374]:
[230, 374]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 449) > Vector(x: 792, y: 449) > Vector(x: 791, y: 450) > Vector(x: 9, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 449) > Vector(x: 792, y: 531) > Vector(x: 791, y: 530) > Vector(x: 791, y: 450))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 531) > Vector(x: 8, y: 531) > Vector(x: 9, y: 530) > Vector(x: 791, y: 530))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 531) > Vector(x: 8, y: 449) > Vector(x: 9, y: 450) > Vector(x: 9, y: 530))
Text: rgb(0,0,0) normal normal 400 70px arial solid rgb(0,0,0) underline
[9, 451]: Testing
[231, 451]:
[250, 451]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 532) > Vector(x: 792, y: 532) > Vector(x: 791, y: 533) > Vector(x: 9, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 532) > Vector(x: 792, y: 622) > Vector(x: 791, y: 621) > Vector(x: 791, y: 533))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 622) > Vector(x: 8, y: 622) > Vector(x: 9, y: 621) > Vector(x: 791, y: 621))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 622) > Vector(x: 8, y: 532) > Vector(x: 9, y: 533) > Vector(x: 9, y: 621))
Text: rgb(0,0,0) normal normal 400 76px arial solid rgb(0,0,0) underline
[9, 535]: Testing
[250, 535]:
[271, 535]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 623) > Vector(x: 792, y: 623) > Vector(x: 791, y: 624) > Vector(x: 9, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 623) > Vector(x: 792, y: 644) > Vector(x: 791, y: 643) > Vector(x: 791, y: 624))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 644) > Vector(x: 8, y: 644) > Vector(x: 9, y: 643) > Vector(x: 791, y: 643))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 644) > Vector(x: 8, y: 623) > Vector(x: 9, y: 624) > Vector(x: 9, y: 643))
Text: rgb(0,0,0) normal normal 400 16px verdana solid rgb(0,0,0) underline
[9, 624]: Testing
[66, 624]:
[72, 624]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 645) > Vector(x: 792, y: 645) > Vector(x: 791, y: 646) > Vector(x: 9, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 645) > Vector(x: 792, y: 674) > Vector(x: 791, y: 673) > Vector(x: 791, y: 646))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 674) > Vector(x: 8, y: 674) > Vector(x: 9, y: 673) > Vector(x: 791, y: 673))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 674) > Vector(x: 8, y: 645) > Vector(x: 9, y: 646) > Vector(x: 9, y: 673))
Text: rgb(0,0,0) normal normal 400 22px verdana solid rgb(0,0,0) underline
[9, 646]: Testing
[87, 646]:
[95, 646]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 675) > Vector(x: 792, y: 675) > Vector(x: 791, y: 676) > Vector(x: 9, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 675) > Vector(x: 792, y: 711) > Vector(x: 791, y: 710) > Vector(x: 791, y: 676))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 711) > Vector(x: 8, y: 711) > Vector(x: 9, y: 710) > Vector(x: 791, y: 710))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 711) > Vector(x: 8, y: 675) > Vector(x: 9, y: 676) > Vector(x: 9, y: 710))
Text: rgb(0,0,0) normal normal 400 28px verdana solid rgb(0,0,0) underline
[9, 676]: Testing
[108, 676]:
[118, 676]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 712) > Vector(x: 792, y: 712) > Vector(x: 791, y: 713) > Vector(x: 9, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 712) > Vector(x: 792, y: 755) > Vector(x: 791, y: 754) > Vector(x: 791, y: 713))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 755) > Vector(x: 8, y: 755) > Vector(x: 9, y: 754) > Vector(x: 791, y: 754))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 755) > Vector(x: 8, y: 712) > Vector(x: 9, y: 713) > Vector(x: 9, y: 754))
Text: rgb(0,0,0) normal normal 400 34px verdana solid rgb(0,0,0) underline
[9, 713]: Testing
[130, 713]:
[142, 713]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 756) > Vector(x: 792, y: 756) > Vector(x: 791, y: 757) > Vector(x: 9, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 756) > Vector(x: 792, y: 807) > Vector(x: 791, y: 806) > Vector(x: 791, y: 757))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 807) > Vector(x: 8, y: 807) > Vector(x: 9, y: 806) > Vector(x: 791, y: 806))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 807) > Vector(x: 8, y: 756) > Vector(x: 9, y: 757) > Vector(x: 9, y: 806))
Text: rgb(0,0,0) normal normal 400 40px verdana solid rgb(0,0,0) underline
[9, 757]: Testing
[151, 757]:
[165, 757]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 808) > Vector(x: 792, y: 808) > Vector(x: 791, y: 809) > Vector(x: 9, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 808) > Vector(x: 792, y: 866) > Vector(x: 791, y: 865) > Vector(x: 791, y: 809))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 866) > Vector(x: 8, y: 866) > Vector(x: 9, y: 865) > Vector(x: 791, y: 865))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 866) > Vector(x: 8, y: 808) > Vector(x: 9, y: 809) > Vector(x: 9, y: 865))
Text: rgb(0,0,0) normal normal 400 46px verdana solid rgb(0,0,0) underline
[9, 809]: Testing
[172, 809]:
[188, 809]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 867) > Vector(x: 792, y: 867) > Vector(x: 791, y: 868) > Vector(x: 9, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 867) > Vector(x: 792, y: 932) > Vector(x: 791, y: 931) > Vector(x: 791, y: 868))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 932) > Vector(x: 8, y: 932) > Vector(x: 9, y: 931) > Vector(x: 791, y: 931))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 932) > Vector(x: 8, y: 867) > Vector(x: 9, y: 868) > Vector(x: 9, y: 931))
Text: rgb(0,0,0) normal normal 400 52px verdana solid rgb(0,0,0) underline
[9, 868]: Testing
[194, 868]:
[212, 868]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 933) > Vector(x: 792, y: 933) > Vector(x: 791, y: 934) > Vector(x: 9, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 933) > Vector(x: 792, y: 1005) > Vector(x: 791, y: 1004) > Vector(x: 791, y: 934))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1005) > Vector(x: 8, y: 1005) > Vector(x: 9, y: 1004) > Vector(x: 791, y: 1004))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1005) > Vector(x: 8, y: 933) > Vector(x: 9, y: 934) > Vector(x: 9, y: 1004))
Text: rgb(0,0,0) normal normal 400 58px verdana solid rgb(0,0,0) underline
[9, 934]: Testing
[215, 934]:
[235, 934]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1006) > Vector(x: 792, y: 1006) > Vector(x: 791, y: 1007) > Vector(x: 9, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1006) > Vector(x: 792, y: 1086) > Vector(x: 791, y: 1085) > Vector(x: 791, y: 1007))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1086) > Vector(x: 8, y: 1086) > Vector(x: 9, y: 1085) > Vector(x: 791, y: 1085))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1086) > Vector(x: 8, y: 1006) > Vector(x: 9, y: 1007) > Vector(x: 9, y: 1085))
Text: rgb(0,0,0) normal normal 400 64px verdana solid rgb(0,0,0) underline
[9, 1007]: Testing
[236, 1007]:
[259, 1007]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1087) > Vector(x: 792, y: 1087) > Vector(x: 791, y: 1088) > Vector(x: 9, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1087) > Vector(x: 792, y: 1174) > Vector(x: 791, y: 1173) > Vector(x: 791, y: 1088))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1174) > Vector(x: 8, y: 1174) > Vector(x: 9, y: 1173) > Vector(x: 791, y: 1173))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1174) > Vector(x: 8, y: 1087) > Vector(x: 9, y: 1088) > Vector(x: 9, y: 1173))
Text: rgb(0,0,0) normal normal 400 70px verdana solid rgb(0,0,0) underline
[9, 1088]: Testing
[258, 1088]:
[282, 1088]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1175) > Vector(x: 792, y: 1175) > Vector(x: 791, y: 1176) > Vector(x: 9, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1175) > Vector(x: 792, y: 1270) > Vector(x: 791, y: 1269) > Vector(x: 791, y: 1176))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1270) > Vector(x: 8, y: 1270) > Vector(x: 9, y: 1269) > Vector(x: 791, y: 1269))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1270) > Vector(x: 8, y: 1175) > Vector(x: 9, y: 1176) > Vector(x: 9, y: 1269))
Text: rgb(0,0,0) normal normal 400 76px verdana solid rgb(0,0,0) underline
[9, 1177]: Testing
[279, 1177]:
[306, 1177]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1271) > Vector(x: 792, y: 1271) > Vector(x: 791, y: 1272) > Vector(x: 9, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1271) > Vector(x: 792, y: 1292) > Vector(x: 791, y: 1291) > Vector(x: 791, y: 1272))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1292) > Vector(x: 8, y: 1292) > Vector(x: 9, y: 1291) > Vector(x: 791, y: 1291))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1292) > Vector(x: 8, y: 1271) > Vector(x: 9, y: 1272) > Vector(x: 9, y: 1291))
Text: rgb(0,0,0) normal normal 400 16px tahoma solid rgb(0,0,0) underline
[9, 1272]: Testing
[61, 1272]:
[66, 1272]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1293) > Vector(x: 792, y: 1293) > Vector(x: 791, y: 1294) > Vector(x: 9, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1293) > Vector(x: 792, y: 1321) > Vector(x: 791, y: 1320) > Vector(x: 791, y: 1294))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1321) > Vector(x: 8, y: 1321) > Vector(x: 9, y: 1320) > Vector(x: 791, y: 1320))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1321) > Vector(x: 8, y: 1293) > Vector(x: 9, y: 1294) > Vector(x: 9, y: 1320))
Text: rgb(0,0,0) normal normal 400 22px tahoma solid rgb(0,0,0) underline
[9, 1294]: Testing
[80, 1294]:
[87, 1294]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1322) > Vector(x: 792, y: 1322) > Vector(x: 791, y: 1323) > Vector(x: 9, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1322) > Vector(x: 792, y: 1358) > Vector(x: 791, y: 1357) > Vector(x: 791, y: 1323))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1358) > Vector(x: 8, y: 1358) > Vector(x: 9, y: 1357) > Vector(x: 791, y: 1357))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1358) > Vector(x: 8, y: 1322) > Vector(x: 9, y: 1323) > Vector(x: 9, y: 1357))
Text: rgb(0,0,0) normal normal 400 28px tahoma solid rgb(0,0,0) underline
[9, 1324]: Testing
[100, 1324]:
[108, 1324]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1359) > Vector(x: 792, y: 1359) > Vector(x: 791, y: 1360) > Vector(x: 9, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1359) > Vector(x: 792, y: 1402) > Vector(x: 791, y: 1401) > Vector(x: 791, y: 1360))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1402) > Vector(x: 8, y: 1402) > Vector(x: 9, y: 1401) > Vector(x: 791, y: 1401))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1402) > Vector(x: 8, y: 1359) > Vector(x: 9, y: 1360) > Vector(x: 9, y: 1401))
Text: rgb(0,0,0) normal normal 400 34px tahoma solid rgb(0,0,0) underline
[9, 1360]: Testing
[119, 1360]:
[130, 1360]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1403) > Vector(x: 792, y: 1403) > Vector(x: 791, y: 1404) > Vector(x: 9, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1403) > Vector(x: 792, y: 1454) > Vector(x: 791, y: 1453) > Vector(x: 791, y: 1404))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1454) > Vector(x: 8, y: 1454) > Vector(x: 9, y: 1453) > Vector(x: 791, y: 1453))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1454) > Vector(x: 8, y: 1403) > Vector(x: 9, y: 1404) > Vector(x: 9, y: 1453))
Text: rgb(0,0,0) normal normal 400 40px tahoma solid rgb(0,0,0) underline
[9, 1404]: Testing
[138, 1404]:
[151, 1404]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1455) > Vector(x: 792, y: 1455) > Vector(x: 791, y: 1456) > Vector(x: 9, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1455) > Vector(x: 792, y: 1512) > Vector(x: 791, y: 1511) > Vector(x: 791, y: 1456))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1512) > Vector(x: 8, y: 1512) > Vector(x: 9, y: 1511) > Vector(x: 791, y: 1511))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1512) > Vector(x: 8, y: 1455) > Vector(x: 9, y: 1456) > Vector(x: 9, y: 1511))
Text: rgb(0,0,0) normal normal 400 46px tahoma solid rgb(0,0,0) underline
[9, 1456]: Testing
[158, 1456]:
[172, 1456]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1513) > Vector(x: 792, y: 1513) > Vector(x: 791, y: 1514) > Vector(x: 9, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1513) > Vector(x: 792, y: 1578) > Vector(x: 791, y: 1577) > Vector(x: 791, y: 1514))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1578) > Vector(x: 8, y: 1578) > Vector(x: 9, y: 1577) > Vector(x: 791, y: 1577))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1578) > Vector(x: 8, y: 1513) > Vector(x: 9, y: 1514) > Vector(x: 9, y: 1577))
Text: rgb(0,0,0) normal normal 400 52px tahoma solid rgb(0,0,0) underline
[9, 1514]: Testing
[177, 1514]:
[193, 1514]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1579) > Vector(x: 792, y: 1579) > Vector(x: 791, y: 1580) > Vector(x: 9, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1579) > Vector(x: 792, y: 1651) > Vector(x: 791, y: 1650) > Vector(x: 791, y: 1580))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1651) > Vector(x: 8, y: 1651) > Vector(x: 9, y: 1650) > Vector(x: 791, y: 1650))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1651) > Vector(x: 8, y: 1579) > Vector(x: 9, y: 1580) > Vector(x: 9, y: 1650))
Text: rgb(0,0,0) normal normal 400 58px tahoma solid rgb(0,0,0) underline
[9, 1580]: Testing
[196, 1580]:
[214, 1580]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1652) > Vector(x: 792, y: 1652) > Vector(x: 791, y: 1653) > Vector(x: 9, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1652) > Vector(x: 792, y: 1731) > Vector(x: 791, y: 1730) > Vector(x: 791, y: 1653))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1731) > Vector(x: 8, y: 1731) > Vector(x: 9, y: 1730) > Vector(x: 791, y: 1730))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1731) > Vector(x: 8, y: 1652) > Vector(x: 9, y: 1653) > Vector(x: 9, y: 1730))
Text: rgb(0,0,0) normal normal 400 64px tahoma solid rgb(0,0,0) underline
[9, 1653]: Testing
[216, 1653]:
[236, 1653]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1732) > Vector(x: 792, y: 1732) > Vector(x: 791, y: 1733) > Vector(x: 9, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1732) > Vector(x: 792, y: 1819) > Vector(x: 791, y: 1818) > Vector(x: 791, y: 1733))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1819) > Vector(x: 8, y: 1819) > Vector(x: 9, y: 1818) > Vector(x: 791, y: 1818))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1819) > Vector(x: 8, y: 1732) > Vector(x: 9, y: 1733) > Vector(x: 9, y: 1818))
Text: rgb(0,0,0) normal normal 400 70px tahoma solid rgb(0,0,0) underline
[9, 1733]: Testing
[235, 1733]:
[257, 1733]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1820) > Vector(x: 792, y: 1820) > Vector(x: 791, y: 1821) > Vector(x: 9, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1820) > Vector(x: 792, y: 1913) > Vector(x: 791, y: 1912) > Vector(x: 791, y: 1821))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1913) > Vector(x: 8, y: 1913) > Vector(x: 9, y: 1912) > Vector(x: 791, y: 1912))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1913) > Vector(x: 8, y: 1820) > Vector(x: 9, y: 1821) > Vector(x: 9, y: 1912))
Text: rgb(0,0,0) normal normal 400 76px tahoma solid rgb(0,0,0) underline
[9, 1821]: Testing
[254, 1821]:
[278, 1821]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1914) > Vector(x: 792, y: 1914) > Vector(x: 791, y: 1915) > Vector(x: 9, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1914) > Vector(x: 792, y: 1934) > Vector(x: 791, y: 1933) > Vector(x: 791, y: 1915))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1934) > Vector(x: 8, y: 1934) > Vector(x: 9, y: 1933) > Vector(x: 791, y: 1933))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1934) > Vector(x: 8, y: 1914) > Vector(x: 9, y: 1915) > Vector(x: 9, y: 1933))
Text: rgb(0,0,0) normal normal 400 16px courier new solid rgb(0,0,0) underline
[9, 1915]: Testing
[76, 1915]:
[86, 1915]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1935) > Vector(x: 792, y: 1935) > Vector(x: 791, y: 1936) > Vector(x: 9, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1935) > Vector(x: 792, y: 1962) > Vector(x: 791, y: 1961) > Vector(x: 791, y: 1936))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1962) > Vector(x: 8, y: 1962) > Vector(x: 9, y: 1961) > Vector(x: 791, y: 1961))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1962) > Vector(x: 8, y: 1935) > Vector(x: 9, y: 1936) > Vector(x: 9, y: 1961))
Text: rgb(0,0,0) normal normal 400 22px courier new solid rgb(0,0,0) underline
[9, 1936]: Testing
[102, 1936]:
[115, 1936]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1963) > Vector(x: 792, y: 1963) > Vector(x: 791, y: 1964) > Vector(x: 9, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1963) > Vector(x: 792, y: 1997) > Vector(x: 791, y: 1996) > Vector(x: 791, y: 1964))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1997) > Vector(x: 8, y: 1997) > Vector(x: 9, y: 1996) > Vector(x: 791, y: 1996))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1997) > Vector(x: 8, y: 1963) > Vector(x: 9, y: 1964) > Vector(x: 9, y: 1996))
Text: rgb(0,0,0) normal normal 400 28px courier new solid rgb(0,0,0) underline
[9, 1965]: Testing
[127, 1965]:
[144, 1965]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 1998) > Vector(x: 792, y: 1998) > Vector(x: 791, y: 1999) > Vector(x: 9, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 1998) > Vector(x: 792, y: 2039) > Vector(x: 791, y: 2038) > Vector(x: 791, y: 1999))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2039) > Vector(x: 8, y: 2039) > Vector(x: 9, y: 2038) > Vector(x: 791, y: 2038))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2039) > Vector(x: 8, y: 1998) > Vector(x: 9, y: 1999) > Vector(x: 9, y: 2038))
Text: rgb(0,0,0) normal normal 400 34px courier new solid rgb(0,0,0) underline
[9, 1999]: Testing
[152, 1999]:
[172, 1999]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2040) > Vector(x: 792, y: 2040) > Vector(x: 791, y: 2041) > Vector(x: 9, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2040) > Vector(x: 792, y: 2087) > Vector(x: 791, y: 2086) > Vector(x: 791, y: 2041))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2087) > Vector(x: 8, y: 2087) > Vector(x: 9, y: 2086) > Vector(x: 791, y: 2086))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2087) > Vector(x: 8, y: 2040) > Vector(x: 9, y: 2041) > Vector(x: 9, y: 2086))
Text: rgb(0,0,0) normal normal 400 40px courier new solid rgb(0,0,0) underline
[9, 2041]: Testing
[177, 2041]:
[201, 2041]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2088) > Vector(x: 792, y: 2088) > Vector(x: 791, y: 2089) > Vector(x: 9, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2088) > Vector(x: 792, y: 2142) > Vector(x: 791, y: 2141) > Vector(x: 791, y: 2089))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2142) > Vector(x: 8, y: 2142) > Vector(x: 9, y: 2141) > Vector(x: 791, y: 2141))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2142) > Vector(x: 8, y: 2088) > Vector(x: 9, y: 2089) > Vector(x: 9, y: 2141))
Text: rgb(0,0,0) normal normal 400 46px courier new solid rgb(0,0,0) underline
[9, 2089]: Testing
[202, 2089]:
[230, 2089]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2143) > Vector(x: 792, y: 2143) > Vector(x: 791, y: 2144) > Vector(x: 9, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2143) > Vector(x: 792, y: 2204) > Vector(x: 791, y: 2203) > Vector(x: 791, y: 2144))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2204) > Vector(x: 8, y: 2204) > Vector(x: 9, y: 2203) > Vector(x: 791, y: 2203))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2204) > Vector(x: 8, y: 2143) > Vector(x: 9, y: 2144) > Vector(x: 9, y: 2203))
Text: rgb(0,0,0) normal normal 400 52px courier new solid rgb(0,0,0) underline
[9, 2145]: Testing
[228, 2145]:
[259, 2145]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2205) > Vector(x: 792, y: 2205) > Vector(x: 791, y: 2206) > Vector(x: 9, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2205) > Vector(x: 792, y: 2273) > Vector(x: 791, y: 2272) > Vector(x: 791, y: 2206))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2273) > Vector(x: 8, y: 2273) > Vector(x: 9, y: 2272) > Vector(x: 791, y: 2272))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2273) > Vector(x: 8, y: 2205) > Vector(x: 9, y: 2206) > Vector(x: 9, y: 2272))
Text: rgb(0,0,0) normal normal 400 58px courier new solid rgb(0,0,0) underline
[9, 2206]: Testing
[253, 2206]:
[288, 2206]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2274) > Vector(x: 792, y: 2274) > Vector(x: 791, y: 2275) > Vector(x: 9, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2274) > Vector(x: 792, y: 2349) > Vector(x: 791, y: 2348) > Vector(x: 791, y: 2275))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2349) > Vector(x: 8, y: 2349) > Vector(x: 9, y: 2348) > Vector(x: 791, y: 2348))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2349) > Vector(x: 8, y: 2274) > Vector(x: 9, y: 2275) > Vector(x: 9, y: 2348))
Text: rgb(0,0,0) normal normal 400 64px courier new solid rgb(0,0,0) underline
[9, 2275]: Testing
[278, 2275]:
[316, 2275]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2350) > Vector(x: 792, y: 2350) > Vector(x: 791, y: 2351) > Vector(x: 9, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2350) > Vector(x: 792, y: 2431) > Vector(x: 791, y: 2430) > Vector(x: 791, y: 2351))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2431) > Vector(x: 8, y: 2431) > Vector(x: 9, y: 2430) > Vector(x: 791, y: 2430))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2431) > Vector(x: 8, y: 2350) > Vector(x: 9, y: 2351) > Vector(x: 9, y: 2430))
Text: rgb(0,0,0) normal normal 400 70px courier new solid rgb(0,0,0) underline
[9, 2351]: Testing
[303, 2351]:
[345, 2351]: texts
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2432) > Vector(x: 792, y: 2432) > Vector(x: 791, y: 2433) > Vector(x: 9, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2432) > Vector(x: 792, y: 2520) > Vector(x: 791, y: 2519) > Vector(x: 791, y: 2433))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 2520) > Vector(x: 8, y: 2520) > Vector(x: 9, y: 2519) > Vector(x: 791, y: 2519))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 2520) > Vector(x: 8, y: 2432) > Vector(x: 9, y: 2433) > Vector(x: 9, y: 2519))
Text: rgb(0,0,0) normal normal 400 76px courier new solid rgb(0,0,0) underline
[9, 2433]: Testing
[328, 2433]:
[374, 2433]: texts

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<title>Nested transform tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
#first {
background: indianred;
margin-top: 100px;
}
#second {
border: 15px solid red;
background: darkseagreen;
-webkit-transform: rotate(7.5deg); /* Chrome, Safari 3.1+ */
-moz-transform: rotate(7.5deg); /* Firefox 3.5-15 */
-ms-transform: rotate(7.5deg); /* IE 9 */
-o-transform: rotate(7.5deg); /* Opera 10.50-12.00 */
transform: rotate(7.5deg);
}
#third {
background: cadetblue;
-webkit-transform: rotate(-70.5deg); /* Chrome, Safari 3.1+ */
-moz-transform: rotate(-70.5deg); /* Firefox 3.5-15 */
-ms-transform: rotate(-70.5deg); /* IE 9 */
-o-transform: rotate(-70.5deg); /* Opera 10.50-12.00 */
transform: rotate(-70.5deg); /* Firefox 16+, IE 10+, Opera 12.10+ */
}
#fourth {
background: #bc8f8f;
}
div {
display: inline-block;
}
</style>
</head>
<body>
<div id="first">First level content <div id="second">with second level content <div id="third">and third level content</div>, ending second</div>, ending first</div>
<div id="fourth">something else</div>
</body>
</html>

View File

@ -0,0 +1,42 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 108) > Vector(x: 649, y: 108) > Vector(x: 649, y: 157) > Vector(x: 8, y: 157))
Fill: rgb(205,92,92)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[8, 124]: First
[41, 124]: level
[76, 124]: content
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[568, 124]: ,
[576, 124]: ending
[624, 124]: first
Clip: Path (Vector(x: 653, y: 123) > Vector(x: 749, y: 123) > Vector(x: 749, y: 142) > Vector(x: 653, y: 142))
Fill: rgb(188,143,143)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[653, 124]: something
[724, 124]: else
Transform: (348, 132) [0.99, 0.13, -0.13, 0.99, 0, 0]
Clip: Path (Vector(x: 128, y: 108) > Vector(x: 568, y: 108) > Vector(x: 568, y: 157) > Vector(x: 128, y: 157))
Fill: rgb(143,188,143)
Shape: rgb(255,0,0) Path (Vector(x: 128, y: 108) > Vector(x: 568, y: 108) > Vector(x: 553, y: 123) > Vector(x: 143, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 568, y: 108) > Vector(x: 568, y: 157) > Vector(x: 553, y: 142) > Vector(x: 553, y: 123))
Shape: rgb(255,0,0) Path (Vector(x: 568, y: 157) > Vector(x: 128, y: 157) > Vector(x: 143, y: 142) > Vector(x: 553, y: 142))
Shape: rgb(255,0,0) Path (Vector(x: 128, y: 157) > Vector(x: 128, y: 108) > Vector(x: 143, y: 123) > Vector(x: 143, y: 142))
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[143, 123]: with
[175, 123]: second
[224, 123]: level
[258, 123]: content
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[453, 123]: ,
[461, 123]: ending
[509, 123]: second
Transform: (381, 132) [0.33, -0.94, 0.94, 0.33, 0, 0]
Clip: Path (Vector(x: 310, y: 123) > Vector(x: 453, y: 123) > Vector(x: 453, y: 142) > Vector(x: 310, y: 142))
Fill: rgb(95,158,160)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[310, 123]: and
[337, 123]: third
[371, 123]: level
[406, 123]: content

View File

@ -0,0 +1,54 @@
<!DOCTYPE html>
<html>
<head>
<title>Rotation transform tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
.container {
position: relative;
}
.image1 {
position: absolute;
left: 100px;
-webkit-transform: rotate(-45deg); /* Chrome, Safari 3.1+ */
-moz-transform: rotate(-45deg); /* Firefox 3.5-15 */
-ms-transform: rotate(-45deg); /* IE 9 */
-o-transform: rotate(-45deg); /* Opera 10.50-12.00 */
transform:rotate(-45deg);
}
.image2 {
position: absolute;
left: 634px;
-webkit-transform: rotate(90deg); /* Chrome, Safari 3.1+ */
-moz-transform: rotate(90deg); /* Firefox 3.5-15 */
-ms-transform: rotate(90deg); /* IE 9 */
-o-transform: rotate(90deg); /* Opera 10.50-12.00 */
transform:rotate(90deg);
}
.image3 {
position: absolute;
top: 250px;
left: 100px;
-webkit-transform: rotate(45deg); /* Chrome, Safari 3.1+ */
-moz-transform: rotate(45deg); /* Firefox 3.5-15 */
-ms-transform: rotate(45deg); /* IE 9 */
-o-transform: rotate(45deg); /* Opera 10.50-12.00 */
transform:rotate(45deg);
}
</style
</head>
<body>
<div class="container">
<div class="image1">
<img src="../../assets/image.jpg" style="width: 200px; height: 200px;">
</div>
<div class="image2">
<img src="../../assets/image2.jpg" style="width: 50px; height: 200px;">
</div>
<div class="image3">
<img src="../../assets/image.jpg" style="width: 100px; height: 200px;">
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,12 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Transform: (208, 110) [0.71, -0.71, 0.71, 0.71, 0, 0]
Clip: Path (Vector(x: 108, y: 8) > Vector(x: 308, y: 8) > Vector(x: 308, y: 208) > Vector(x: 108, y: 208))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Transform: (667, 110) [0, 1, -1, 0, 0, 0]
Clip: Path (Vector(x: 642, y: 8) > Vector(x: 692, y: 8) > Vector(x: 692, y: 208) > Vector(x: 642, y: 208))
Draw image: Image ("/tests/assets/image2.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])
Transform: (158, 360) [0.71, 0.71, -0.71, 0.71, 0, 0]
Clip: Path (Vector(x: 108, y: 258) > Vector(x: 208, y: 258) > Vector(x: 208, y: 458) > Vector(x: 108, y: 458))
Draw image: Image ("/tests/assets/image.jpg") (source: [0, 0, 75, 75]) (destination: [0, 0, 75, 75])

View File

@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>
<head>
<title>Nested transform tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
#first {
background: indianred;
margin-top: 100px;
}
#second {
border: 10px solid red;
background: darkseagreen;
-webkit-transform: translate(125px); /* Chrome, Safari 3.1+ */
-moz-transform: translate(125px); /* Firefox 3.5-15 */
-ms-transform: translate(125px); /* IE 9 */
-o-transform: translate(125px); /* Opera 10.50-12.00 */
transform: translate(125px);
}
#third {
background: cadetblue;
-webkit-transform: translate(-100px, -25px); /* Chrome, Safari 3.1+ */
-moz-transform: translate(100px, -25px); /* Firefox 3.5-15 */
-ms-transform: translate(100px, -25px); /* IE 9 */
-o-transform: translate(100px, -25px); /* Opera 10.50-12.00 */
transform: translate(100px, -25px);
-webkit-transform-origin: 100px 50px;
-moz-transform-origin: 100px 50px;
-ms-transform-origin: 100px 50px;
-o-transform-origin: 100px 50px;
transform-origin: 100px 50px;
}
div {
display: inline-block;
padding: 10px;
}
</style>
</head>
<body>
<div id="first">First level content <div id="second">with second level content <div id="third">and third level content</div>, ending second</div>, ending first</div>
</body>
</html>

View File

@ -0,0 +1,37 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Clip: Path (Vector(x: 8, y: 108) > Vector(x: 699, y: 108) > Vector(x: 699, y: 207) > Vector(x: 8, y: 207))
Fill: rgb(205,92,92)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[18, 148]: First
[51, 148]: level
[86, 148]: content
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[608, 148]: ,
[616, 148]: ending
[664, 148]: first
Transform: (373, 157) [1, 0, 0, 1, 125, 0]
Clip: Path (Vector(x: 138, y: 118) > Vector(x: 608, y: 118) > Vector(x: 608, y: 197) > Vector(x: 138, y: 197))
Fill: rgb(143,188,143)
Shape: rgb(255,0,0) Path (Vector(x: 138, y: 118) > Vector(x: 608, y: 118) > Vector(x: 598, y: 128) > Vector(x: 148, y: 128))
Shape: rgb(255,0,0) Path (Vector(x: 608, y: 118) > Vector(x: 608, y: 197) > Vector(x: 598, y: 187) > Vector(x: 598, y: 128))
Shape: rgb(255,0,0) Path (Vector(x: 608, y: 197) > Vector(x: 138, y: 197) > Vector(x: 148, y: 187) > Vector(x: 598, y: 187))
Shape: rgb(255,0,0) Path (Vector(x: 138, y: 197) > Vector(x: 138, y: 118) > Vector(x: 148, y: 128) > Vector(x: 148, y: 187))
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[158, 148]: with
[190, 148]: second
[238, 148]: level
[274, 148]: content
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[488, 148]: ,
[496, 148]: ending
[544, 148]: second
Transform: (425, 188) [1, 0, 0, 1, 100, -25]
Clip: Path (Vector(x: 325, y: 138) > Vector(x: 488, y: 138) > Vector(x: 488, y: 177) > Vector(x: 325, y: 177))
Fill: rgb(95,158,160)
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[335, 148]: and
[362, 148]: third
[396, 148]: level
[431, 148]: content

View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<title>Visible elements tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../test.js"></script>
<style>
div{
border:2px solid black;
}
.none {
display:none
}
</style>
</head>
<body>
<div>
<h1>Display:none and visible:hidden tests</h1>
<div>This should be visible </div>
<div class="none">display:none, This should be <b>hidden</b></div>
<div style="visibility:hidden">visibility:hidden, This should be <b>hidden</b></div>
<hr />
<div class="none">display:none, This should be <b>hidden</b></div>
<div style="visibility:hidden">visibility:hidden, This should be <b>hidden</b></div>
</div>
</body>
</html>

View File

@ -0,0 +1,25 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 8) > Vector(x: 792, y: 8) > Vector(x: 790, y: 10) > Vector(x: 10, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 8) > Vector(x: 792, y: 178) > Vector(x: 790, y: 176) > Vector(x: 790, y: 10))
Shape: rgb(0,0,0) Path (Vector(x: 792, y: 178) > Vector(x: 8, y: 178) > Vector(x: 10, y: 176) > Vector(x: 790, y: 176))
Shape: rgb(0,0,0) Path (Vector(x: 8, y: 178) > Vector(x: 8, y: 8) > Vector(x: 10, y: 10) > Vector(x: 10, y: 176))
Text: rgb(0,0,0) normal normal 700 32px Times New Roman
[10, 32]: Display:none
[198, 32]: and
[257, 32]: visible:hidden
[457, 32]: tests
Shape: rgb(0,0,0) Path (Vector(x: 10, y: 89) > Vector(x: 790, y: 89) > Vector(x: 788, y: 91) > Vector(x: 12, y: 91))
Shape: rgb(0,0,0) Path (Vector(x: 790, y: 89) > Vector(x: 790, y: 112) > Vector(x: 788, y: 110) > Vector(x: 788, y: 91))
Shape: rgb(0,0,0) Path (Vector(x: 790, y: 112) > Vector(x: 10, y: 112) > Vector(x: 12, y: 110) > Vector(x: 788, y: 110))
Shape: rgb(0,0,0) Path (Vector(x: 10, y: 112) > Vector(x: 10, y: 89) > Vector(x: 12, y: 91) > Vector(x: 12, y: 110))
Text: rgb(0,0,0) normal normal 400 16px Times New Roman
[12, 92]: This
[44, 92]: should
[91, 92]: be
[110, 92]: visible
Shape: rgb(0,0,0) Path (Vector(x: 10, y: 143) > Vector(x: 790, y: 143) > Vector(x: 789, y: 144) > Vector(x: 11, y: 144))
Shape: rgb(0,0,0) Path (Vector(x: 790, y: 143) > Vector(x: 790, y: 145) > Vector(x: 789, y: 144) > Vector(x: 789, y: 144))
Shape: rgb(0,0,0) Path (Vector(x: 790, y: 145) > Vector(x: 10, y: 145) > Vector(x: 11, y: 144) > Vector(x: 789, y: 144))
Shape: rgb(0,0,0) Path (Vector(x: 10, y: 145) > Vector(x: 10, y: 143) > Vector(x: 11, y: 144) > Vector(x: 11, y: 144))

View File

@ -0,0 +1,81 @@
<!DOCTYPE html>
<html>
<head>
<title>z-index tests #1</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="../../test.js"></script>
<style>
div { font: 12px Arial; }
span.bold { font-weight: bold; }
#div1,#div3 {
height: 80px;
position: relative;
border: 1px solid #669966;
background-color: #ccffcc;
padding-left: 5px;
}
#div2 {
opacity: 0.8;
z-index: 1;
position: absolute;
width: 150px;
height: 200px;
top: 20px;
left: 170px;
border: 1px solid #990000;
background-color: #ffdddd;
text-align: center;
}
#div4 {
opacity: 0.8;
z-index: 2;
position: absolute;
width: 200px;
height: 70px;
top: 65px;
left: 50px;
border: 1px solid #000099;
background-color: #ddddff;
text-align: left;
padding-left: 10px;
}
</style>
</head>
<body>
<div>
<br />
No z-indexed content
<div id="div1">
<br /><span class="bold">DIV #1</span>
<br />position: relative;
<div id="div2">
<br /><span class="bold">DIV #2</span>
<br />position: absolute;
<br />z-index: 1;
</div>
</div>
<br />
<div id="div3">
<br /><span class="bold">DIV #3</span>
<br />position: relative;
<div id="div4">
<br /><span class="bold">DIV #4</span>
<br />position: absolute;
<br />z-index: 2;
</div>
</div>
Some more non-zindexed content
</div>
</body>
</html>

View File

@ -0,0 +1,75 @@
Window: [800, 600]
Rectangle: [0, 0, 800, 600] rgba(0,0,0,0)
Opacity: 1
Text: rgb(0,0,0) normal normal 400 12px Arial
[8, 22]: No
[27, 22]: z
[33, 22]: -
[37, 22]: indexed
[82, 22]: content
Text: rgb(0,0,0) normal normal 400 12px Arial
[8, 213]: Some
[43, 213]: more
[73, 213]: non
[93, 213]: -
[97, 213]: zindexed
[149, 213]: content
Clip: Path (Vector(x: 8, y: 35) > Vector(x: 792, y: 35) > Vector(x: 792, y: 117) > Vector(x: 8, y: 117))
Fill: rgb(204,255,204)
Shape: rgb(102,153,102) Path (Vector(x: 8, y: 35) > Vector(x: 792, y: 35) > Vector(x: 791, y: 36) > Vector(x: 9, y: 36))
Shape: rgb(102,153,102) Path (Vector(x: 792, y: 35) > Vector(x: 792, y: 117) > Vector(x: 791, y: 116) > Vector(x: 791, y: 36))
Shape: rgb(102,153,102) Path (Vector(x: 792, y: 117) > Vector(x: 8, y: 117) > Vector(x: 9, y: 116) > Vector(x: 791, y: 116))
Shape: rgb(102,153,102) Path (Vector(x: 8, y: 117) > Vector(x: 8, y: 35) > Vector(x: 9, y: 36) > Vector(x: 9, y: 116))
Text: rgb(0,0,0) normal normal 400 12px Arial
[14, 64]: position:
[62, 64]: relative;
Text: rgb(0,0,0) normal normal 700 12px Arial
[14, 50]: DIV
[37, 50]: #1
Clip: Path (Vector(x: 8, y: 131) > Vector(x: 792, y: 131) > Vector(x: 792, y: 213) > Vector(x: 8, y: 213))
Fill: rgb(204,255,204)
Shape: rgb(102,153,102) Path (Vector(x: 8, y: 131) > Vector(x: 792, y: 131) > Vector(x: 791, y: 132) > Vector(x: 9, y: 132))
Shape: rgb(102,153,102) Path (Vector(x: 792, y: 131) > Vector(x: 792, y: 213) > Vector(x: 791, y: 212) > Vector(x: 791, y: 132))
Shape: rgb(102,153,102) Path (Vector(x: 792, y: 213) > Vector(x: 8, y: 213) > Vector(x: 9, y: 212) > Vector(x: 791, y: 212))
Shape: rgb(102,153,102) Path (Vector(x: 8, y: 213) > Vector(x: 8, y: 131) > Vector(x: 9, y: 132) > Vector(x: 9, y: 212))
Text: rgb(0,0,0) normal normal 400 12px Arial
[14, 159]: position:
[62, 159]: relative;
Text: rgb(0,0,0) normal normal 700 12px Arial
[14, 146]: DIV
[37, 146]: #3
Opacity: 0.8
Clip: Path (Vector(x: 179, y: 56) > Vector(x: 331, y: 56) > Vector(x: 331, y: 258) > Vector(x: 179, y: 258))
Fill: rgb(255,221,221)
Shape: rgb(153,0,0) Path (Vector(x: 179, y: 56) > Vector(x: 331, y: 56) > Vector(x: 330, y: 57) > Vector(x: 180, y: 57))
Shape: rgb(153,0,0) Path (Vector(x: 331, y: 56) > Vector(x: 331, y: 258) > Vector(x: 330, y: 257) > Vector(x: 330, y: 57))
Shape: rgb(153,0,0) Path (Vector(x: 331, y: 258) > Vector(x: 179, y: 258) > Vector(x: 180, y: 257) > Vector(x: 330, y: 257))
Shape: rgb(153,0,0) Path (Vector(x: 179, y: 258) > Vector(x: 179, y: 56) > Vector(x: 180, y: 57) > Vector(x: 180, y: 257))
Text: rgb(0,0,0) normal normal 400 12px Arial
[205, 85]: position:
[253, 85]: absolute;
Text: rgb(0,0,0) normal normal 400 12px Arial
[227, 98]: z
[233, 98]: -
[237, 98]: index:
[273, 98]: 1;
Text: rgb(0,0,0) normal normal 700 12px Arial
[235, 71]: DIV
[258, 71]: #2
Clip: Path (Vector(x: 59, y: 197) > Vector(x: 271, y: 197) > Vector(x: 271, y: 269) > Vector(x: 59, y: 269))
Fill: rgb(221,221,255)
Shape: rgb(0,0,153) Path (Vector(x: 59, y: 197) > Vector(x: 271, y: 197) > Vector(x: 270, y: 198) > Vector(x: 60, y: 198))
Shape: rgb(0,0,153) Path (Vector(x: 271, y: 197) > Vector(x: 271, y: 269) > Vector(x: 270, y: 268) > Vector(x: 270, y: 198))
Shape: rgb(0,0,153) Path (Vector(x: 271, y: 269) > Vector(x: 59, y: 269) > Vector(x: 60, y: 268) > Vector(x: 270, y: 268))
Shape: rgb(0,0,153) Path (Vector(x: 59, y: 269) > Vector(x: 59, y: 197) > Vector(x: 60, y: 198) > Vector(x: 60, y: 268))
Text: rgb(0,0,0) normal normal 400 12px Arial
[70, 225]: position:
[118, 225]: absolute;
Text: rgb(0,0,0) normal normal 400 12px Arial
[70, 239]: z
[76, 239]: -
[80, 239]: index:
[115, 239]: 2;
Text: rgb(0,0,0) normal normal 700 12px Arial
[70, 212]: DIV
[93, 212]: #4

Some files were not shown because too many files have changed in this diff Show More