diff options
author | dpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-23 00:31:03 +0000 |
---|---|---|
committer | dpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-23 00:31:03 +0000 |
commit | 6798ffa8502897cf4485cc631c190b72c4e4b46d (patch) | |
tree | b51c732ba6750f78e9685af063c82e73ca8f04af /webkit | |
parent | 679545860b7a5bcf0cc2b2343d3b3099952bb48a (diff) | |
download | chromium_src-6798ffa8502897cf4485cc631c190b72c4e4b46d.zip chromium_src-6798ffa8502897cf4485cc631c190b72c4e4b46d.tar.gz chromium_src-6798ffa8502897cf4485cc631c190b72c4e4b46d.tar.bz2 |
Remove remaining layout tests under src/webkit/data/layout_tests. All
layout tests have been upstreamed to webkit.org; there are a few chromium-
specific tests under LayoutTests/platform/chromium.
Note that this removes some test expectations that will need to be put back
in when the tests show up with the next WebKit roll.
BUG=30503
TEST=many...
R=eseidel@chromium.org
Review URL: http://codereview.chromium.org/511002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35194 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
111 files changed, 7 insertions, 15201 deletions
diff --git a/webkit/data/layout_tests/chrome/fast/dom/extensions/interval-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/extensions/interval-expected.txt deleted file mode 100644 index f69fc7f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/extensions/interval-expected.txt +++ /dev/null @@ -1,9 +0,0 @@ -This tests that the chromium.Interval functionality works correctly. - -PASS - initial zero -PASS - start -PASS - restart -PASS - initial stop -PASS - stop -PASS - stopped -PASS - re-stopped diff --git a/webkit/data/layout_tests/chrome/fast/dom/extensions/interval.html b/webkit/data/layout_tests/chrome/fast/dom/extensions/interval.html deleted file mode 100644 index b05036d..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/extensions/interval.html +++ /dev/null @@ -1,76 +0,0 @@ -<html> -<body onload="test()"> -<div id="result"> -<p> -This tests that the chromium.Interval functionality works correctly. -</p> -</div> -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); -} - -var resultDiv = document.getElementById("result"); - -function check(name, passed, debug_output) { - if (passed) { - resultDiv.innerHTML += "PASS - " + name + "<br>"; - } else { - resultDiv.innerHTML += "FAIL - " + name + ", debug_output: " + debug_output + "<br>"; - } -} - -// Spin loop for a short time -function pause(millisecs) { - var start = new Date(); - while ((new Date() - start) < millisecs); -} - - -function test() { - var interval = new chromium.Interval(); - - // Verify initialization. - var ms = interval.microseconds(); - check("initial zero", ms == 0, "[ms: " + ms + "]"); - - // Verify that starting the timer works. - interval.start(); - pause(50); - ms = interval.microseconds(); - // Due to clock skew and granularity, we see sporadic failures if we check for - // ms >= 50000, so add a bit of buffer. - check("start", ms >= 49000, "[ms: " + ms + "]"); - - // Verify that restarting the interval should reset the beginning time - interval.start(); - pause(1); - ms = interval.microseconds(); - check("restart", ms > 0 && ms < 50000, "[ms: " + ms + "]"); - - // Verify that calling stop() before start() has no effect. - var interval = new chromium.Interval(); - interval.stop(); - ms = interval.microseconds(); - check("initial stop", ms == 0, "[ms: " + ms + "]"); - - // Verify a start/stop sequence. - interval.start(); - pause(50); - interval.stop(); - ms = interval.microseconds(); - check("stop", ms > 0 && ms < 100000, "[ms: " + ms + "]"); - - // Verify that the timer is really stopped. - var ms2 = interval.microseconds(); - check("stopped", ms == ms2, "[ms: " + ms + "]" + "[ms2: " + ms2 + "]"); - - // Verify that re-stopping the timer works. - pause(50); - interval.stop(); - ms2 = interval.microseconds(); - check("re-stopped", ms2 > ms, "[ms: " + ms + "]" + "[ms2: " + ms2 + "]"); -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash-expected.txt deleted file mode 100644 index 90742db..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash-expected.txt +++ /dev/null @@ -1,2 +0,0 @@ -This tests that setting remove a child frame in onload event handler does not crash the renderer. - diff --git a/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash.html b/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash.html deleted file mode 100644 index fca7d11..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/iframe-onload-remove-self-no-crash.html +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); -</script> -<script src="resources/iframe-onload-remove-self-no-crash.js"></script> -<body> -This tests that setting remove a child frame in onload event handler -does not crash the renderer. -<br> -<iframe src="resources/iframe-onload-remove-self-no-crash-child.html"></iframe> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash-child.html b/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash-child.html deleted file mode 100644 index c7daf2d..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash-child.html +++ /dev/null @@ -1,3 +0,0 @@ -<html> -<script src="iframe-onload-remove-self-no-crash.js"></script> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash.js b/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash.js deleted file mode 100644 index 2d3771e..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/resources/iframe-onload-remove-self-no-crash.js +++ /dev/null @@ -1,16 +0,0 @@ -function onWindowLoad() { - var doc = top.document; - var b = doc.body; - - var x = doc.getElementById('x'); - if (x) { - b.removeChild(x); - } - - x = doc.createElement("iframe"); - x.setAttribute('id','x'); - // appendChild triggers load - b.appendChild(x); -} - -window.addEventListener("load", onWindowLoad, false); diff --git a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.checksum b/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.checksum deleted file mode 100644 index e4a7e69c..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -8dec6ca8c808cdbb7326d3b75710a5b8
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.png b/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.png Binary files differdeleted file mode 100644 index 2012f29..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.txt deleted file mode 100644 index 990aea2..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/basic-selects-expected.txt +++ /dev/null @@ -1,174 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x442 - RenderBlock {HTML} at (0,0) size 800x442 - RenderBody {BODY} at (8,8) size 784x426 - RenderBlock {DIV} at (0,0) size 784x426 [border: (1px solid #FF0000)] - RenderText {#text} at (1,0) size 156x19 - text run at (1,0) width 156: "Whitespace in option text:" - RenderMenuList {SELECT} at (157,2) size 53x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 53x19 - RenderText at (8,2) size 22x14 - text run at (8,2) width 22: "f o o" - RenderText {#text} at (210,0) size 7x19 - text run at (210,0) width 7: "a" - RenderMenuList {SELECT} at (217,2) size 53x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 53x19 - RenderText at (8,2) size 22x14 - text run at (8,2) width 22: "f o o" - RenderText {#text} at (270,0) size 8x19 - text run at (270,0) width 8: "b" - RenderBR {BR} at (278,0) size 0x19 - RenderBR {BR} at (1,19) size 0x19 - RenderText {#text} at (1,35) size 128x19 - text run at (1,35) width 128: "Simple select control:" - RenderMenuList {SELECT} at (129,37) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (176,35) size 7x19 - text run at (176,35) width 7: "a" - RenderMenuList {SELECT} at (183,37) size 47x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (230,35) size 8x19 - text run at (230,35) width 8: "b" - RenderBR {BR} at (238,35) size 0x19 - RenderBR {BR} at (1,54) size 0x19 - RenderText {#text} at (1,70) size 181x19 - text run at (1,70) width 181: "Line-height should be ignored:" - RenderMenuList {SELECT} at (182,72) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (229,70) size 7x19 - text run at (229,70) width 7: "a" - RenderMenuList {SELECT} at (236,72) size 47x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (283,70) size 8x19 - text run at (283,70) width 8: "b" - RenderBR {BR} at (291,70) size 0x19 - RenderBR {BR} at (1,89) size 0x19 - RenderText {#text} at (1,105) size 414x19 - text run at (1,105) width 414: "Padding should be respected, the arrow button shouldn't change size:" - RenderMenuList {SELECT} at (415,107) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (462,105) size 7x19 - text run at (462,105) width 7: "a" - RenderMenuList {SELECT} at (469,107) size 47x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (516,105) size 8x19 - text run at (516,105) width 8: "b" - RenderBR {BR} at (524,105) size 0x19 - RenderBR {BR} at (1,124) size 0x19 - RenderText {#text} at (1,140) size 171x19 - text run at (1,140) width 171: "Border should be respected:" - RenderMenuList {SELECT} at (172,143) size 45x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 45x17 - RenderText at (8,1) size 16x14 - text run at (8,1) width 16: "foo" - RenderText {#text} at (217,140) size 7x19 - text run at (217,140) width 7: "a" - RenderMenuList {SELECT} at (224,143) size 45x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 45x17 - RenderText at (8,1) size 16x14 - text run at (8,1) width 16: "foo" - RenderText {#text} at (269,140) size 8x19 - text run at (269,140) width 8: "b" - RenderBR {BR} at (277,140) size 0x19 - RenderBR {BR} at (1,160) size 0x19 - RenderText {#text} at (1,176) size 111x19 - text run at (1,176) width 111: "Border + padding:" - RenderMenuList {SELECT} at (112,179) size 45x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 45x17 - RenderText at (8,1) size 16x14 - text run at (8,1) width 16: "foo" - RenderText {#text} at (157,176) size 7x19 - text run at (157,176) width 7: "a" - RenderMenuList {SELECT} at (164,179) size 45x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 45x17 - RenderText at (8,1) size 16x14 - text run at (8,1) width 16: "foo" - RenderText {#text} at (209,176) size 8x19 - text run at (209,176) width 8: "b" - RenderBR {BR} at (217,176) size 0x19 - RenderBR {BR} at (1,196) size 0x19 - RenderText {#text} at (1,212) size 454x19 - text run at (1,212) width 454: "Height larger than font-size, button should grow, text baseline should center:" - RenderMenuList {SELECT} at (455,214) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (502,212) size 7x19 - text run at (502,212) width 7: "a" - RenderMenuList {SELECT} at (509,214) size 47x18 [color=#808080] [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (556,212) size 8x19 - text run at (556,212) width 8: "b" - RenderBR {BR} at (564,212) size 0x19 - RenderBR {BR} at (1,231) size 0x19 - RenderText {#text} at (1,247) size 472x19 - text run at (1,247) width 472: "Heigh smaller than font-size, whole select shrinks and is baselined with the text:" - RenderMenuList {SELECT} at (473,249) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (520,247) size 7x19 - text run at (520,247) width 7: "a" - RenderMenuList {SELECT} at (527,249) size 47x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 47x19 - RenderText at (8,2) size 16x14 - text run at (8,2) width 16: "foo" - RenderText {#text} at (574,247) size 8x19 - text run at (574,247) width 8: "b" - RenderBR {BR} at (582,247) size 0x19 - RenderBR {BR} at (1,266) size 0x19 - RenderText {#text} at (1,282) size 159x19 - text run at (1,282) width 159: "select control with size=0: " - RenderBR {BR} at (160,282) size 0x19 - RenderMenuList {SELECT} at (1,300) size 181x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 181x19 - RenderText at (8,2) size 58x14 - text run at (8,2) width 58: "Future Series" - RenderText {#text} at (182,298) size 4x19 - text run at (182,298) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,317) size 159x19 - text run at (1,317) width 159: "select control with size=1: " - RenderBR {BR} at (160,317) size 0x19 - RenderMenuList {SELECT} at (1,335) size 181x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 181x19 - RenderText at (8,2) size 58x14 - text run at (8,2) width 58: "Future Series" - RenderText {#text} at (182,333) size 4x19 - text run at (182,333) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,352) size 159x19 - text run at (1,352) width 159: "Non-styled select control: " - RenderBR {BR} at (160,352) size 0x19 - RenderMenuList {SELECT} at (1,371) size 179x18 [bgcolor=#FFFFFF] - RenderBlock (anonymous) at (0,0) size 179x17 - RenderText at (8,1) size 58x14 - text run at (8,1) width 58: "Future Series" - RenderText {#text} at (180,368) size 4x19 - text run at (180,368) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,388) size 278x19 - text run at (1,388) width 278: "Styled select control with large border-radius: " - RenderBR {BR} at (279,388) size 0x19 - RenderMenuList {SELECT} at (1,407) size 179x18 [bgcolor=#33CCFF] - RenderBlock (anonymous) at (0,0) size 179x17 - RenderText at (8,1) size 58x14 - text run at (8,1) width 58: "Future Series" - RenderText {#text} at (180,404) size 4x19 - text run at (180,404) width 4: " " - RenderBR {BR} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fast/forms/basic-selects.html b/webkit/data/layout_tests/chrome/fast/forms/basic-selects.html deleted file mode 100644 index fdf341b..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/basic-selects.html +++ /dev/null @@ -1,77 +0,0 @@ -<!DocType html> -<html> -<head> -<style> -div { - border:1px solid red; - line-height:1em; -} -.borderRadius { - padding:10px; - -webkit-border-radius: 9px; -} -</style> -</head> - -<body> - -<div> - -Whitespace in option text:<select><option>f o o</option></select>a<select><option DISABLED>f o o</option></select>b<br><br> -Simple select control:<select><option>foo</option><option>bar</option></select>a<select DISABLED><option>foo</option><option>bar</option></select>b<br><br> -Line-height should be ignored:<select style="line-height:2em"><option>foo</option></select>a<select style="line-height:2em" DISABLED><option DISABLED>foo</option><option>bar</option></select>b<br><br> -Padding should be respected, the arrow button shouldn't change size:<select style="padding:4px;"><option>foo</option></select>a<select style="padding:4px;" DISABLED><option>foo</option></select>b<br><br> -Border should be respected:<select style="border:8px solid #3cf;"><option>foo</option></select>a<select style="border:8px solid #3cf;" DISABLED><option>foo</option></select>b<br><br> -Border + padding:<select style="padding:5px;border:4px solid #3cf;"><option>foo</option></select>a<select style="padding:5px;border:4px solid #3cf;" DISABLED><option>foo</option></select>b<br><br> -Height larger than font-size, button should grow, text baseline should center:<select style="height:30px"><option>foo</option></select>a<select style="height:30px" DISABLED><option DISABLED>foo</option></select>b<br><br> -Heigh smaller than font-size, whole select shrinks and is baselined with the text:<select style="height:3px"><option>foo</option><option>bar</option></select>a<select style="height:3px"><option DISABLED>foo</option><option>bar</option></select>b<br><br> - - -select control with size=0: -<br> -<select size=0> -<option>Future Series </option> -<option>ICC Intercontinental Cup </option> -<option>Twenty20 World Championship </option> -<option>Stanford 20/20 </option> -<option>All future series </option> -</select> -<br> - -select control with size=1: -<br> -<select size=1> -<option>Future Series </option> -<option>ICC Intercontinental Cup </option> -<option>Twenty20 World Championship </option> -<option>Stanford 20/20 </option> -<option>All future series </option> -</select> -<br> - -Non-styled select control: -<br> -<select class="borderRadius" style="border-width:1px"> -<option>Future Series </option> -<option>ICC Intercontinental Cup </option> -<option>Twenty20 World Championship </option> -<option>Stanford 20/20 </option> -<option>All future series </option> -</select> -<br> - -Styled select control with large border-radius: -<br> -<select class="borderRadius" style="background-color:#3cf"> -<option>Future Series </option> -<option>ICC Intercontinental Cup </option> -<option>Twenty20 World Championship </option> -<option>Stanford 20/20 </option> -<option>All future series </option> -</select> -<br> - -</div> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/forms/basic-textareas-quirks.html b/webkit/data/layout_tests/chrome/fast/forms/basic-textareas-quirks.html deleted file mode 100644 index bcbc6ba..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/basic-textareas-quirks.html +++ /dev/null @@ -1,252 +0,0 @@ -<html><head><style> -div { - border:1px solid red; - width:350px; - font-size:14px; - line-height:14px; -} -.wrapper-div { - float:left; -} -</style></head> -<body> - -<div class='wrapper-div'> -Plain textarea with little content -<div> -A -<textarea>Lorem ipsum dolor</textarea> -B -</div> - -Plain textarea -<div> -A -<textarea>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -Disabled textarea -<div> -A -<textarea DISABLED>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="padding:10px" -<div> -A -<textarea style="padding:10px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="padding:0px" -<div> -A -<textarea style="padding:0px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="margin:10px" -<div> -A -<textarea style="margin:10px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="margin:0px" -<div> -A -<textarea style="margin:0px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -cols=3 -<div> -A -<textarea cols=3>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -rows=3 -<div> -A -<textarea rows=3>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -cols=10 -<div> -A -<textarea cols=10>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -rows=10 -<div> -A -<textarea rows=10>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -cols=5 rows=4 -<div> -A -<textarea cols=5 rows=4>Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -</div> -<div class='wrapper-div'> - -style="width:60px" -<div> -A -<textarea style="width:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="width:60px;padding:20px" -<div> -A -<textarea style="width:60px;padding:20px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="width:60px;padding:0" -<div> -A -<textarea style="width:60px;padding:0">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="height:60px" -<div> -A -<textarea style="height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="width:60px;height:60px" -<div> -A -<textarea style="width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="overflow:hidden" -<div> -A -<textarea style="overflow:hidden">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="overflow:scroll" -<div> -A -<textarea style="overflow:scroll">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="overflow:hidden;width:60px;height:60px" -<div> -A -<textarea style="overflow:hidden;width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -style="overflow:scroll;width:60px;height:60px" -<div> -A -<textarea style="overflow:scroll;width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -cols=5 style="width:60px;height:60px" -<div> -A -<textarea cols=5 style="width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -rows=4 style="width:60px;height:60px" -<div> -A -<textarea rows=4 style="width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -cols=5 rows=4 style="width:60px;height:60px" -<div> -A -<textarea cols=5 rows=4 style="width:60px;height:60px">Lorem ipsum dolor ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuv </textarea> -B -</div> - -wrap="off" -<div> -A -<textarea wrap="off"> -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -</textarea> -B -</div> - -wrap="hard" -<div> -A -<textarea wrap="hard"> -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -</textarea> -B -</div> - -wrap="soft" -<div> -A -<textarea wrap="soft"> -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -This is a text area with wrap="soft" -</textarea> -B -</div> -</div> -</body></html>
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/forms/document-write-empty-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/document-write-empty-expected.txt deleted file mode 100644 index 35ffc24..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/document-write-empty-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -This tests that document.write() with no parameters does not output any text. See bug 815592. - -There should not be any text below this sentence. diff --git a/webkit/data/layout_tests/chrome/fast/forms/document-write-empty.html b/webkit/data/layout_tests/chrome/fast/forms/document-write-empty.html deleted file mode 100644 index e936d24..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/document-write-empty.html +++ /dev/null @@ -1,14 +0,0 @@ -<HTML> - - <BODY> - <p>This tests that document.write() with no parameters does not output any text. See bug 815592. </p> - - <p>There should not be any text below this sentence.</p> - <script> - if (window.layoutTestController) - layoutTestController.dumpAsText(); - document.write() - </script> - - </BODY> -</HTML>
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/forms/form-action-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/form-action-expected.txt deleted file mode 100644 index ebfb76b..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/form-action-expected.txt +++ /dev/null @@ -1,2 +0,0 @@ - -This test: PASSED! diff --git a/webkit/data/layout_tests/chrome/fast/forms/form-action.html b/webkit/data/layout_tests/chrome/fast/forms/form-action.html deleted file mode 100644 index ea5e51b..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/form-action.html +++ /dev/null @@ -1,33 +0,0 @@ -<html> -<body> -<script> - if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function test(ul) { -ul.document.getElementById('sourceViewDiv').innerHTML=' This test: PASSED!' -} -</script> - -<form action="javascript: test(this)" method="get" > - -<select onChange="submit();"> - <option >A</option> - <option >B</option> - <option >C</option> -</select> - -<div id='sourceViewDiv'>This test: FAILED</div> - -<script> -var x=document.getElementsByTagName('select')[0]; -x.options[2].selected=true; -var evt = document.createEvent("HTMLEvents"); -evt.initEvent("change", true, true); -x.dispatchEvent(evt); -</script> - -</form> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain-expected.txt deleted file mode 100644 index 62e6de9..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -This test tests that a lazy event listener attached to a form element keeps its form in the scope chain when the listener is called by javascript. - -abc diff --git a/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain.html b/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain.html deleted file mode 100644 index 45570de..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/lazy-event-listener-scope-chain.html +++ /dev/null @@ -1,32 +0,0 @@ -<html> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function run_test(x) { - var r = document.getElementById('result'); - r.innerHTML = x + '<br>'; -} - -function setup() { - var f = document.getElementsByTagName('form')[0]; - f.old_f = f.onsubmit; - f.onsubmit = function() {this.old_f();}; - f.login.click(); -} - -</script> -This test tests that a lazy event listener attached to a form element -keeps its form in the scope chain when the listener is called by -javascript. <br> - -<body onload="setup()"> -<form action="javascript:void(0)" onsubmit="run_test(username.value)"> -<input type="text" value="abc" name="username"/> -<input type="submit" name="login" value="Login"/> -</form> - -<div id="result"></div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/forms/resources/logo.gif b/webkit/data/layout_tests/chrome/fast/forms/resources/logo.gif Binary files differdeleted file mode 100644 index afa22bc..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/resources/logo.gif +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fast/forms/selected-index-value-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/selected-index-value-expected.txt deleted file mode 100644 index 5a7ed6e..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/selected-index-value-expected.txt +++ /dev/null @@ -1,4 +0,0 @@ -This tests that we can find the selected value of a dropdown when this format is used: [select_name][this.selectedIndex].value. See bug 798404. - - -This test: PASSED! diff --git a/webkit/data/layout_tests/chrome/fast/forms/selected-index-value.html b/webkit/data/layout_tests/chrome/fast/forms/selected-index-value.html deleted file mode 100644 index 43c4ce1..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/selected-index-value.html +++ /dev/null @@ -1,39 +0,0 @@ -<html > -<body> -<p>This tests that we can find the selected value of a dropdown when this format is used: [select_name][this.selectedIndex].value. -See bug 798404. </p> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function test(selected_value) { -if (selected_value == 'C') { - document.getElementById("sourceViewDiv").innerHTML=' This test: PASSED!'; -} -} -</script> - -<form> - -<select name="URL" onChange="javascript:test(URL[this.selectedIndex].value);" > -<option value="A">A</option> -<option value="B">B</option> -<option value="C">C</option> -</select> - -<div id='sourceViewDiv'>This test: FAILED</div> - -<script> -var x=document.getElementsByTagName('select')[0]; -x.options[2].selected=true; -var evt = document.createEvent("HTMLEvents"); -evt.initEvent("change", true, true); -x.dispatchEvent(evt); -</script> - -</form> - - -</body> -</html>
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/forms/style-display-none-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/style-display-none-expected.txt deleted file mode 100644 index 75972d2..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/style-display-none-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -This tests to see if 'style.display' for an element can be set dynamically. See bug 820947. - -This test: PASSED! diff --git a/webkit/data/layout_tests/chrome/fast/forms/style-display-none.html b/webkit/data/layout_tests/chrome/fast/forms/style-display-none.html deleted file mode 100644 index 10dce0d..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/style-display-none.html +++ /dev/null @@ -1,23 +0,0 @@ -<html> -<body> - <p>This tests to see if 'style.display' for an element can be set dynamically. See bug 820947. </p> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -document.writeln("<div id=\"result\"> \r\n This test: FAILED </div>\r\n"); -document.writeln("<div id=\"announce:Top\">\r\n This text should be hidden </div>\r\n"); - -with(document) { - var announceTop = getElementById("announce:Top"); - announceTop.style.display = "none"; - if ( announceTop.style.display == "none" ) - { getElementById("result").innerHTML=' This test: PASSED!'} - -} - -</script> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/js/resources/document-clear.js b/webkit/data/layout_tests/chrome/fast/js/resources/document-clear.js deleted file mode 100644 index bc3148c..0000000 --- a/webkit/data/layout_tests/chrome/fast/js/resources/document-clear.js +++ /dev/null @@ -1,5 +0,0 @@ -var doc = "<p>New line 1</p>"; -document.open(); -document.clear(); // No-op, but should not crash -document.write(doc); -document.close(); diff --git a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-post.js b/webkit/data/layout_tests/chrome/fast/js/resources/js-test-post.js deleted file mode 100644 index 72ba76f..0000000 --- a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-post.js +++ /dev/null @@ -1,2 +0,0 @@ -shouldBeTrue("successfullyParsed"); -debug('<br><span class="pass">TEST COMPLETE</span>');
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-pre.js b/webkit/data/layout_tests/chrome/fast/js/resources/js-test-pre.js deleted file mode 100644 index ae0bd48..0000000 --- a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-pre.js +++ /dev/null @@ -1,148 +0,0 @@ -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function description(msg) -{ - // For MSIE 6 compatibility - var span = document.createElement("span"); - span.innerHTML = '<p>' + msg + '</p><p>On success, you will see a series of "<span class="pass">PASS</span>" messages, followed by "<span class="pass">TEST COMPLETE</span>".</p>'; - var description = document.getElementById("description"); - if (description.firstChild) - description.replaceChild(span, description.firstChild); - else - description.appendChild(span); -} - -function debug(msg) -{ - var span = document.createElement("span"); - span.innerHTML = msg + '<br>'; - document.getElementById("console").appendChild(span); -} - -function escapeHTML(text) -{ - return text.replace(/&/g, "&").replace(/</g, "<"); -} - -function testPassed(msg) -{ - debug('<span class="pass">PASS</span> ' + escapeHTML(msg) + '</span>'); -} - -function testFailed(msg) -{ - debug('<span class="fail">FAIL</span> ' + escapeHTML(msg) + '</span>'); -} - -function areArraysEqual(_a, _b) -{ - if (_a.length !== _b.length) - return false; - for (var i = 0; i < _a.length; i++) - if (_a[i] !== _b[i]) - return false; - return true; -} - -function isResultCorrect(_actual, _expected) -{ - if (_actual === _expected) - return true; - if (typeof(_expected) == "number" && isNaN(_expected)) - return typeof(_actual) == "number" && isNaN(_actual); - if (Object.prototype.toString.call(_expected) == Object.prototype.toString.call([])) - return areArraysEqual(_actual, _expected); - return false; -} - -function shouldBe(_a, _b) -{ - if (typeof _a != "string" || typeof _b != "string") - debug("WARN: shouldBe() expects string arguments"); - var exception; - var _av; - try { - _av = eval(_a); - } catch (e) { - exception = e; - } - var _bv = eval(_b); - - if (exception) - testFailed(_a + " should be " + _bv + ". Threw exception " + exception); - else if (isResultCorrect(_av, _bv)) - testPassed(_a + " is " + _b); - else if (typeof(_av) == typeof(_bv)) - testFailed(_a + " should be " + _bv + ". Was " + _av + "."); - else - testFailed(_a + " should be " + _bv + " (of type " + typeof _bv + "). Was " + _av + " (of type " + typeof _av + ")."); -} - -function shouldBeTrue(_a) { shouldBe(_a, "true"); } -function shouldBeFalse(_a) { shouldBe(_a, "false"); } -function shouldBeNaN(_a) { shouldBe(_a, "NaN"); } - -function shouldBeUndefined(_a) -{ - var exception; - var _av; - try { - _av = eval(_a); - } catch (e) { - exception = e; - } - - if (exception) - testFailed(_a + " should be undefined. Threw exception " + exception); - else if (typeof _av == "undefined") - testPassed(_a + " is undefined."); - else - testFailed(_a + " should be undefined. Was " + _av); -} - - -function shouldThrow(_a, _e) -{ - var exception; - var _av; - try { - _av = eval(_a); - } catch (e) { - exception = e; - } - - var _ev; - if (_e) - _ev = eval(_e); - - if (exception) { - if (typeof _e == "undefined" || exception == _ev) - testPassed(_a + " threw exception " + exception + "."); - else - testFailed(_a + " should throw exception " + _ev + ". Threw exception " + exception + "."); - } else if (typeof _av == "undefined") - testFailed(_a + " should throw exception " + _e + ". Was undefined."); - else - testFailed(_a + " should throw exception " + _e + ". Was " + _av + "."); -} - -function shouldThrowInstanceOf(_a, _e) -{ - if (typeof _a != "string" || typeof _e != "function") - debug("WARN: shouldThrowInstanceOf usage: shouldThrowInstanceOf(string, function)"); - var exception; - var _av; - try { - _av = eval(_a); - } catch (e) { - exception = e; - } - - var exceptionType = exception ? exception.toString().split(":")[0] : undefined; - - if (exception instanceof _e) - testPassed(_a + " threw exception " + exceptionType + "."); - else - testFailed(_a + " should throw exception " + _e + ". Threw exception " + exceptionType + "."); -} diff --git a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-style.css b/webkit/data/layout_tests/chrome/fast/js/resources/js-test-style.css deleted file mode 100644 index f12147c..0000000 --- a/webkit/data/layout_tests/chrome/fast/js/resources/js-test-style.css +++ /dev/null @@ -1,12 +0,0 @@ -.pass { - font-weight: bold; - color: green; -} -.fail { - font-weight: bold; - color: red; -} -#console { - white-space: pre-wrap; - font-family: monospace; -} diff --git a/webkit/data/layout_tests/chrome/http/tests/misc/resources/content-iframe.html b/webkit/data/layout_tests/chrome/http/tests/misc/resources/content-iframe.html deleted file mode 100644 index 2109a5e..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/misc/resources/content-iframe.html +++ /dev/null @@ -1,4 +0,0 @@ -<script> -if (window.layoutTestController) - layoutTestController.globalFlag = true; -</script> diff --git a/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null-expected.txt b/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null-expected.txt deleted file mode 100644 index 720805c..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null-expected.txt +++ /dev/null @@ -1,5 +0,0 @@ -This tests that following code works in Chrome: -var w = window.open(...); -w.opener = null; -After new page finishes loading, its opener should stay as null. -PASS diff --git a/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null.html b/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null.html deleted file mode 100644 index 9598371..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/misc/set-window-opener-to-null.html +++ /dev/null @@ -1,55 +0,0 @@ -<html> -<script> -if (window.layoutTestController) { - layoutTestController.setCanOpenWindows(); - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); - layoutTestController.globalFlag = false; -} - -var w = window.open("http://localhost:8081/chrome/http/tests/misc/resources/content-iframe.html"); -w.opener = null; - -function wait_to_start() { - var child_window_opened; - - // polling layoutTestController.globalFlag or w.document - if (window.layoutTestController) { - child_window_opened = layoutTestController.globalFlag; - } else { - // polling w.document is not very reliable cross browsers, - // it works in chrome for manual testsing. - // We might want to change it to using postMessage when it - // is supported. - child_window_opened = !w.document; - } - - if (!child_window_opened) { - setTimeout(wait_to_start, 30); - return; - } - - var e = document.getElementById('console'); - e.innerHTML = w.opener == null ? 'PASS' : 'FAIL'; - - w.close(); - - if (window.layoutTestController) - layoutTestController.notifyDone(); -} - -window.onload = wait_to_start; - -</script> -<body> -This tests that following code works in Chrome: -<pre> -var w = window.open(...); -w.opener = null; -</pre> -After new page finishes loading, its opener should stay as null. - -<p> -<div id="console">Running ...<div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/childWithButton.html b/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/childWithButton.html deleted file mode 100644 index 246a70d..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/childWithButton.html +++ /dev/null @@ -1,6 +0,0 @@ -<html> -<body> - <p>Other Child</p> - <button id="button">I am a button</button> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child-2.html b/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child-2.html deleted file mode 100644 index 9b575d3..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child-2.html +++ /dev/null @@ -1,8 +0,0 @@ -<html> -<body> -A new child window. My bar is 100. -<script> - document.bar = 100; -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child.html b/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child.html deleted file mode 100644 index 0e76619b..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/security/listener/resources/xss-inactive-closure-child.html +++ /dev/null @@ -1,12 +0,0 @@ -<html> -<body> - <p>Target Child</p> - <script> - window.parent.frames[1].document.getElementById('button').addEventListener("click", function() { - parent.log("FAILED: document.bar = " + document.bar); - }, false); - - window.location = "http://localhost:8000/security/listener/resources/xss-inactive-closure-child-2.html"; - </script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure-expected.txt b/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure-expected.txt deleted file mode 100644 index b68d599..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure-expected.txt +++ /dev/null @@ -1,9 +0,0 @@ -CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/listener/resources/xss-inactive-closure-child-2.html from frame with URL http://127.0.0.1:8081/chrome/http/tests/security/listener/resources/childWithButton.html. Domains, protocols and ports must match. - -CONSOLE MESSAGE: line 6: Uncaught TypeError: Cannot read property 'bar' of undefined -This tests that when a frame navigates to a new page, closures in the old page cannot access page content of the new page if there are from different domains. - -You should see PASSSED at the end of page if the test passes. - - -PASSED diff --git a/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure.html b/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure.html deleted file mode 100644 index 6f513a4..0000000 --- a/webkit/data/layout_tests/chrome/http/tests/security/listener/xss-inactive-closure.html +++ /dev/null @@ -1,34 +0,0 @@ -<html> -<head> - <script> - if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); - } - - function onloadForButtonChild() { - var targetChild = document.getElementById('targetChild'); - targetChild.src = "resources/xss-inactive-closure-child.html"; - targetChild.onload = start; - } - - function start() { - var buttonChild = window.frames[1]; - buttonChild.document.getElementById('button').click(); - - if (window.layoutTestController) - layoutTestController.notifyDone(); - } - function log(msg) { - document.getElementById('result').innerHTML = msg; - } - </script> -</head> -<body> - <p>This tests that when a frame navigates to a new page, closures in the old page cannot access page content of the new page if there are from different domains.</p> - <p>You should see PASSSED at the end of page if the test passes.</p> - <iframe id="targetChild" src=""></iframe> - <iframe src="resources/childWithButton.html" onload="onloadForButtonChild();"></iframe> - <div id="result">PASSED</div> -</body> -</html> diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.checksum deleted file mode 100644 index 355c449..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -3896d947460f50903a897ddee78fae17
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.png Binary files differdeleted file mode 100644 index 2a823dc..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/dom/xmlhttprequest-gc-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum deleted file mode 100644 index 495fdeb..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -a67b9f615c1c84909bdc862671b9fbc4
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png Binary files differdeleted file mode 100644 index 4c5e19f..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.txt b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.txt deleted file mode 100644 index e9bfac2..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-buttons-expected.txt +++ /dev/null @@ -1,156 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x355 - RenderBlock {HTML} at (0,0) size 800x355 - RenderBody {BODY} at (8,8) size 784x339 - RenderTable {TABLE} at (0,0) size 673x339 - RenderTableSection {TBODY} at (0,0) size 673x339 - RenderTableRow {TR} at (0,0) size 673x22 - RenderTableCell {TD} at (0,0) size 161x22 [r=0 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 37x19 - text run at (1,1) width 37: "styling" - RenderTableCell {TD} at (161,0) size 76x22 [r=0 c=1 rs=1 cs=1] - RenderText {#text} at (1,1) size 56x19 - text run at (1,1) width 56: "<button>" - RenderTableCell {TD} at (237,0) size 150x22 [r=0 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 148x19 - text run at (1,1) width 148: "(offsetH,W) (clientH,W)" - RenderTableCell {TD} at (387,0) size 126x22 [r=0 c=3 rs=1 cs=1] - RenderText {#text} at (1,1) size 124x19 - text run at (1,1) width 124: "<input type=button>" - RenderTableCell {TD} at (513,0) size 160x22 [r=0 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 158x19 - text run at (1,1) width 158: "(offsetH,W) (clientH, -W)" - RenderTableRow {TR} at (0,22) size 673x35 - RenderTableCell {TD} at (0,28) size 161x22 [r=1 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 50x19 - text run at (1,1) width 50: "(default)" - RenderTableCell {TD} at (161,22) size 76x35 [r=1 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 42x29 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (8,2) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,28) size 150x22 [r=1 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(29, 42) (25, 38)" - RenderTableCell {TD} at (387,25) size 126x28 [r=1 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 39x22 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (8,2) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,28) size 160x22 [r=1 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(22, 39) (18, 35)" - RenderTableRow {TR} at (0,57) size 673x35 - RenderTableCell {TD} at (0,63) size 161x22 [r=2 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 63x19 - text run at (1,1) width 63: "padding: 0" - RenderTableCell {TD} at (161,57) size 76x35 [r=2 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 30x29 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (2,2) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,63) size 150x22 [r=2 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(29, 30) (25, 26)" - RenderTableCell {TD} at (387,60) size 126x28 [r=2 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 27x22 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (2,2) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,63) size 160x22 [r=2 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(22, 27) (18, 23)" - RenderTableRow {TR} at (0,92) size 673x52 - RenderTableCell {TD} at (0,107) size 161x22 [r=3 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 84x19 - text run at (1,1) width 84: "padding: 10%" - RenderTableCell {TD} at (161,93) size 76x49 [r=3 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 44x43 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (9,9) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,107) size 150x22 [r=3 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(43, 44) (39, 40)" - RenderTableCell {TD} at (387,92) size 126x52 [r=3 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 51x46 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (14,14) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,107) size 160x22 [r=3 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(46, 51) (42, 47)" - RenderTableRow {TR} at (0,144) size 673x39 - RenderTableCell {TD} at (0,152) size 161x22 [r=4 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 78x19 - text run at (1,1) width 78: "padding: 2px" - RenderTableCell {TD} at (161,144) size 76x39 [r=4 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 34x33 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (4,4) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,152) size 150x22 [r=4 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(33, 34) (29, 30)" - RenderTableCell {TD} at (387,147) size 126x32 [r=4 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 31x26 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (4,4) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,152) size 160x22 [r=4 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(26, 31) (22, 27)" - RenderTableRow {TR} at (0,183) size 673x40 - RenderTableCell {TD} at (0,192) size 161x22 [r=5 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 159x19 - text run at (1,1) width 159: "padding: 2px 6px 3px 6px" - RenderTableCell {TD} at (161,183) size 76x40 [r=5 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 42x34 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (8,4) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,192) size 150x22 [r=5 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(34, 42) (30, 38)" - RenderTableCell {TD} at (387,186) size 126x33 [r=5 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 39x27 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (8,4) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,192) size 160x22 [r=5 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(27, 39) (23, 35)" - RenderTableRow {TR} at (0,223) size 673x41 - RenderTableCell {TD} at (0,232) size 161x22 [r=6 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 105x19 - text run at (1,1) width 105: "padding: 3px 7px" - RenderTableCell {TD} at (161,223) size 76x41 [r=6 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 44x35 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (9,5) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,232) size 150x22 [r=6 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(35, 44) (31, 40)" - RenderTableCell {TD} at (387,226) size 126x34 [r=6 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 41x28 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (9,5) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,232) size 160x22 [r=6 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(28, 41) (24, 37)" - RenderTableRow {TR} at (0,264) size 673x75 - RenderTableCell {TD} at (0,290) size 161x22 [r=7 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 86x19 - text run at (1,1) width 86: "padding: 20px" - RenderTableCell {TD} at (161,264) size 76x75 [r=7 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 70x69 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (22,22) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,290) size 150x22 [r=7 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(69, 70) (65, 66)" - RenderTableCell {TD} at (387,267) size 126x68 [r=7 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 67x62 [bgcolor=#DDDDDD] [border: (2px outset #DDDDDD)] - RenderBlock (anonymous) at (22,22) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,290) size 160x22 [r=7 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(62, 67) (58, 63)" diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.checksum deleted file mode 100644 index 80f3044..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -ea6ddc785e64c7601fbea3425b5a09f8
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.png Binary files differdeleted file mode 100644 index e134812..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-inputs-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.checksum deleted file mode 100644 index 471508c..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -d8b46b0bc1c8ed4fc74e221689fa22fa
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.png Binary files differdeleted file mode 100644 index c2023c9..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fast/forms/basic-textareas-quirks-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.checksum deleted file mode 100644 index 78f41ac..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -055851657f04516824448138630547c0
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.png Binary files differdeleted file mode 100644 index b01ea7f..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/arial-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.checksum deleted file mode 100644 index da5362d..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -ec58f2100c9020037afce75230a707c1
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.png Binary files differdeleted file mode 100644 index 219d8a9..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/comic-sans-ms-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.checksum deleted file mode 100644 index 3f0f4a1..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -7dbf53b1690861c0e8300189d48b1811
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.png Binary files differdeleted file mode 100644 index 0f9d13c..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/courier-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.checksum deleted file mode 100644 index 2d83639..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -7a10011fcde1928e50bda3bbf95895f3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.png Binary files differdeleted file mode 100644 index 0d4a0f9..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/default-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.checksum deleted file mode 100644 index e8f9fbc..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -1f71bdb6070ddb18273dc4579f70983d
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.png Binary files differdeleted file mode 100644 index f27fc35..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/helvetica-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.checksum deleted file mode 100644 index 2d83639..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -7a10011fcde1928e50bda3bbf95895f3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.png Binary files differdeleted file mode 100644 index 0d4a0f9..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/lucida-grande-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.checksum deleted file mode 100644 index 2d83639..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -7a10011fcde1928e50bda3bbf95895f3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.png Binary files differdeleted file mode 100644 index 0d4a0f9..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/fonts/times-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.checksum b/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.checksum deleted file mode 100644 index 0dfe7c3..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -351c1e10e50140cc43d57fca80ffbc36
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.png b/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.png Binary files differdeleted file mode 100644 index ee102a5..0000000 --- a/webkit/data/layout_tests/platform/chromium-linux/chrome/plugins/return-npobject-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt deleted file mode 100644 index 43cd16d..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt +++ /dev/null @@ -1,228 +0,0 @@ -window.Attr : PASS -window.CDATASection : PASS -window.CSSCharsetRule : PASS -window.CSSFontFaceRule : PASS -window.CSSImportRule : PASS -window.CSSMediaRule : PASS -window.CSSPageRule : PASS -window.CSSPrimitiveValue : PASS -window.CSSRule : PASS -window.CSSRuleList : PASS -window.CSSStyleDeclaration : PASS -window.CSSStyleRule : PASS -window.CSSStyleSheet : PASS -window.CSSValue : PASS -window.CSSValueList : PASS -window.CharacterData : PASS -window.Comment : PASS -window.Counter : PASS -window.DOMException : PASS -window.DOMImplementation : PASS -window.DOMParser : PASS -window.Document : PASS -window.DocumentFragment : PASS -window.DocumentType : PASS -window.Element : PASS -window.Entity : PASS -window.EntityReference : PASS -window.Event : PASS -window.EventException : PASS -window.HTMLAnchorElement : PASS -window.HTMLAppletElement : PASS -window.HTMLAreaElement : PASS -window.HTMLBRElement : PASS -window.HTMLBaseElement : PASS -window.HTMLBaseFontElement : PASS -window.HTMLBlockquoteElement : PASS -window.HTMLBodyElement : PASS -window.HTMLButtonElement : PASS -window.HTMLCanvasElement : PASS -window.HTMLDListElement : PASS -window.HTMLDirectoryElement : PASS -window.HTMLDivElement : PASS -window.HTMLDocument : PASS -window.HTMLElement : PASS -window.HTMLEmbedElement : PASS -window.HTMLFieldSetElement : PASS -window.HTMLFontElement : PASS -window.HTMLFormElement : PASS -window.HTMLFrameElement : PASS -window.HTMLFrameSetElement : PASS -window.HTMLHRElement : PASS -window.HTMLHeadElement : PASS -window.HTMLHeadingElement : PASS -window.HTMLHtmlElement : PASS -window.HTMLIFrameElement : PASS -window.HTMLImageElement : PASS -window.HTMLInputElement : PASS -window.HTMLIsIndexElement : PASS -window.HTMLLIElement : PASS -window.HTMLLabelElement : PASS -window.HTMLLegendElement : PASS -window.HTMLLinkElement : PASS -window.HTMLMapElement : PASS -window.HTMLMarqueeElement : PASS -window.HTMLMenuElement : PASS -window.HTMLMetaElement : PASS -window.HTMLModElement : PASS -window.HTMLOListElement : PASS -window.HTMLObjectElement : PASS -window.HTMLOptGroupElement : PASS -window.HTMLOptionElement : PASS -window.HTMLParagraphElement : PASS -window.HTMLParamElement : PASS -window.HTMLPreElement : PASS -window.HTMLQuoteElement : PASS -window.HTMLScriptElement : PASS -window.HTMLSelectElement : PASS -window.HTMLStyleElement : PASS -window.HTMLTableCaptionElement : PASS -window.HTMLTableCellElement : PASS -window.HTMLTableColElement : PASS -window.HTMLTableElement : PASS -window.HTMLTableRowElement : PASS -window.HTMLTableSectionElement : PASS -window.HTMLTextAreaElement : PASS -window.HTMLTitleElement : PASS -window.HTMLUListElement : PASS -window.KeyboardEvent : PASS -window.MediaList : PASS -window.MessageEvent : PASS -window.MouseEvent : PASS -window.MutationEvent : PASS -window.NamedNodeMap : PASS -window.Node : PASS -window.NodeFilter : PASS -window.NodeList : PASS -window.Notation : PASS -window.OverflowEvent : PASS -window.ProcessingInstruction : PASS -window.ProgressEvent : PASS -window.Range : PASS -window.RangeException : PASS -window.Rect : PASS -window.SVGAngle : PASS -window.SVGColor : PASS -window.SVGException : PASS -window.SVGGradientElement : PASS -window.SVGLength : PASS -window.SVGMarkerElement : PASS -window.SVGPaint : PASS -window.SVGPathSeg : PASS -window.SVGPreserveAspectRatio : PASS -window.SVGRenderingIntent : PASS -window.SVGTextContentElement : PASS -window.SVGTextPathElement : PASS -window.SVGTransform : PASS -window.SVGUnitTypes : PASS -window.StyleSheet : PASS -window.StyleSheetList : PASS -window.Text : PASS -window.TextEvent : PASS -window.UIEvent : PASS -window.WheelEvent : PASS -window.XMLDocument : PASS -window.XMLHttpRequest : PASS -window.XMLHttpRequestException : PASS -window.XMLSerializer : PASS -window.XPathEvaluator : PASS -window.XPathException : PASS -window.XPathResult : PASS -window.XSLTProcessor : PASS -window.alert : PASS -window.atob : PASS -window.blur : PASS -window.btoa : PASS -window.captureEvents : PASS -window.clearInterval : PASS -window.clearTimeout : PASS -window.clientInformation : PASS -window.close : PASS -window.closed : PASS -window.confirm : PASS -window.console : PASS -window.defaultStatus : PASS -window.defaultstatus : PASS -window.devicePixelRatio : PASS -window.document : PASS -window.find : PASS -window.focus : PASS -window.frameElement : PASS -window.frames : PASS -window.getComputedStyle : PASS -window.getMatchedCSSRules : PASS -window.getSelection : PASS -window.history : PASS -window.innerHeight : PASS -window.innerWidth : PASS -window.length : PASS -window.location : PASS -window.locationbar : PASS -window.menubar : PASS -window.moveBy : PASS -window.moveTo : PASS -window.name : PASS -window.navigator : PASS -window.offscreenBuffering : PASS -window.onabort : PASS -window.onbeforeunload : PASS -window.onblur : PASS -window.onchange : PASS -window.onclick : PASS -window.ondblclick : PASS -window.ondragdrop : PASS -window.onerror : PASS -window.onfocus : PASS -window.onkeydown : PASS -window.onkeypress : PASS -window.onkeyup : PASS -window.onload : PASS -window.onmousedown : PASS -window.onmousemove : PASS -window.onmouseout : PASS -window.onmouseover : PASS -window.onmouseup : PASS -window.onmousewheel : PASS -window.onmove : PASS -window.onreset : PASS -window.onresize : PASS -window.onscroll : PASS -window.onsearch : PASS -window.onselect : PASS -window.onsubmit : PASS -window.onunload : PASS -window.open : PASS -window.opener : PASS -window.outerHeight : PASS -window.outerWidth : PASS -window.pageXOffset : PASS -window.pageYOffset : PASS -window.parent : PASS -window.personalbar : PASS -window.print : PASS -window.prompt : PASS -window.releaseEvents : PASS -window.resizeBy : PASS -window.resizeTo : PASS -window.screen : PASS -window.screenLeft : PASS -window.screenTop : PASS -window.screenX : PASS -window.screenY : PASS -window.scroll : PASS -window.scrollBy : PASS -window.scrollTo : PASS -window.scrollX : PASS -window.scrollY : PASS -window.scrollbars : PASS -window.self : PASS -window.setInterval : PASS -window.setTimeout : PASS -window.showModalDialog : PASS -window.status : PASS -window.statusbar : PASS -window.stop : PASS -window.toString : PASS -window.toolbar : PASS -window.top : PASS -window.window : PASS diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-expected.txt deleted file mode 100644 index 0ea2dd8..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/dom/Window/window-lookup-precedence-expected.txt +++ /dev/null @@ -1,230 +0,0 @@ - -window.Attr IS function Attr() { [native code] } -window.CDATASection IS function CDATASection() { [native code] } -window.CSSCharsetRule IS function CSSCharsetRule() { [native code] } -window.CSSFontFaceRule IS function CSSFontFaceRule() { [native code] } -window.CSSImportRule IS function CSSImportRule() { [native code] } -window.CSSMediaRule IS function CSSMediaRule() { [native code] } -window.CSSPageRule IS function CSSPageRule() { [native code] } -window.CSSPrimitiveValue IS function CSSPrimitiveValue() { [native code] } -window.CSSRule IS function CSSRule() { [native code] } -window.CSSRuleList IS function CSSRuleList() { [native code] } -window.CSSStyleDeclaration IS function CSSStyleDeclaration() { [native code] } -window.CSSStyleRule IS function CSSStyleRule() { [native code] } -window.CSSStyleSheet IS function CSSStyleSheet() { [native code] } -window.CSSValue IS function CSSValue() { [native code] } -window.CSSValueList IS function CSSValueList() { [native code] } -window.CharacterData IS function CharacterData() { [native code] } -window.Comment IS function Comment() { [native code] } -window.Counter IS function Counter() { [native code] } -window.DOMException IS function DOMCoreException() { [native code] } -window.DOMImplementation IS function DOMImplementation() { [native code] } -window.DOMParser IS function DOMParser() { [native code] } -window.Document IS function Document() { [native code] } -window.DocumentFragment IS function DocumentFragment() { [native code] } -window.DocumentType IS function DocumentType() { [native code] } -window.Element IS function Element() { [native code] } -window.Entity IS function Entity() { [native code] } -window.EntityReference IS function EntityReference() { [native code] } -window.Event IS function Event() { [native code] } -window.EventException IS function EventException() { [native code] } -window.HTMLAnchorElement IS function HTMLAnchorElement() { [native code] } -window.HTMLAppletElement IS function HTMLAppletElement() { [native code] } -window.HTMLAreaElement IS function HTMLAreaElement() { [native code] } -window.HTMLBRElement IS function HTMLBRElement() { [native code] } -window.HTMLBaseElement IS function HTMLBaseElement() { [native code] } -window.HTMLBaseFontElement IS function HTMLBaseFontElement() { [native code] } -window.HTMLBlockquoteElement IS function HTMLBlockquoteElement() { [native code] } -window.HTMLBodyElement IS function HTMLBodyElement() { [native code] } -window.HTMLButtonElement IS function HTMLButtonElement() { [native code] } -window.HTMLCanvasElement IS function HTMLCanvasElement() { [native code] } -window.HTMLDListElement IS function HTMLDListElement() { [native code] } -window.HTMLDirectoryElement IS function HTMLDirectoryElement() { [native code] } -window.HTMLDivElement IS function HTMLDivElement() { [native code] } -window.HTMLDocument IS function HTMLDocument() { [native code] } -window.HTMLElement IS function HTMLElement() { [native code] } -window.HTMLEmbedElement IS function HTMLEmbedElement() { [native code] } -window.HTMLFieldSetElement IS function HTMLFieldSetElement() { [native code] } -window.HTMLFontElement IS function HTMLFontElement() { [native code] } -window.HTMLFormElement IS function HTMLFormElement() { [native code] } -window.HTMLFrameElement IS function HTMLFrameElement() { [native code] } -window.HTMLFrameSetElement IS function HTMLFrameSetElement() { [native code] } -window.HTMLHRElement IS function HTMLHRElement() { [native code] } -window.HTMLHeadElement IS function HTMLHeadElement() { [native code] } -window.HTMLHeadingElement IS function HTMLHeadingElement() { [native code] } -window.HTMLHtmlElement IS function HTMLHtmlElement() { [native code] } -window.HTMLIFrameElement IS function HTMLIFrameElement() { [native code] } -window.HTMLImageElement IS function HTMLImageElement() { [native code] } -window.HTMLInputElement IS function HTMLInputElement() { [native code] } -window.HTMLIsIndexElement IS function HTMLIsIndexElement() { [native code] } -window.HTMLLIElement IS function HTMLLIElement() { [native code] } -window.HTMLLabelElement IS function HTMLLabelElement() { [native code] } -window.HTMLLegendElement IS function HTMLLegendElement() { [native code] } -window.HTMLLinkElement IS function HTMLLinkElement() { [native code] } -window.HTMLMapElement IS function HTMLMapElement() { [native code] } -window.HTMLMarqueeElement IS function HTMLMarqueeElement() { [native code] } -window.HTMLMenuElement IS function HTMLMenuElement() { [native code] } -window.HTMLMetaElement IS function HTMLMetaElement() { [native code] } -window.HTMLModElement IS function HTMLModElement() { [native code] } -window.HTMLOListElement IS function HTMLOListElement() { [native code] } -window.HTMLObjectElement IS function HTMLObjectElement() { [native code] } -window.HTMLOptGroupElement IS function HTMLOptGroupElement() { [native code] } -window.HTMLOptionElement IS function HTMLOptionElement() { [native code] } -window.HTMLParagraphElement IS function HTMLParagraphElement() { [native code] } -window.HTMLParamElement IS function HTMLParamElement() { [native code] } -window.HTMLPreElement IS function HTMLPreElement() { [native code] } -window.HTMLQuoteElement IS function HTMLQuoteElement() { [native code] } -window.HTMLScriptElement IS function HTMLScriptElement() { [native code] } -window.HTMLSelectElement IS function HTMLSelectElement() { [native code] } -window.HTMLStyleElement IS function HTMLStyleElement() { [native code] } -window.HTMLTableCaptionElement IS function HTMLTableCaptionElement() { [native code] } -window.HTMLTableCellElement IS function HTMLTableCellElement() { [native code] } -window.HTMLTableColElement IS function HTMLTableColElement() { [native code] } -window.HTMLTableElement IS function HTMLTableElement() { [native code] } -window.HTMLTableRowElement IS function HTMLTableRowElement() { [native code] } -window.HTMLTableSectionElement IS function HTMLTableSectionElement() { [native code] } -window.HTMLTextAreaElement IS function HTMLTextAreaElement() { [native code] } -window.HTMLTitleElement IS function HTMLTitleElement() { [native code] } -window.HTMLUListElement IS function HTMLUListElement() { [native code] } -window.KeyboardEvent IS function KeyboardEvent() { [native code] } -window.MediaList IS function MediaList() { [native code] } -window.MessageEvent IS function MessageEvent() { [native code] } -window.MouseEvent IS function MouseEvent() { [native code] } -window.MutationEvent IS function MutationEvent() { [native code] } -window.NamedNodeMap IS function NamedNodeMap() { [native code] } -window.Node IS function Node() { [native code] } -window.NodeFilter IS function NodeFilter() { [native code] } -window.NodeList IS function NodeList() { [native code] } -window.Notation IS function Notation() { [native code] } -window.OverflowEvent IS function OverflowEvent() { [native code] } -window.ProcessingInstruction IS function ProcessingInstruction() { [native code] } -window.ProgressEvent IS function ProgressEvent() { [native code] } -window.Range IS function Range() { [native code] } -window.RangeException IS function RangeException() { [native code] } -window.Rect IS function Rect() { [native code] } -window.SVGAngle IS function SVGAngle() { [native code] } -window.SVGColor IS function SVGColor() { [native code] } -window.SVGException IS function SVGException() { [native code] } -window.SVGGradientElement IS function SVGGradientElement() { [native code] } -window.SVGLength IS function SVGLength() { [native code] } -window.SVGMarkerElement IS function SVGMarkerElement() { [native code] } -window.SVGPaint IS function SVGPaint() { [native code] } -window.SVGPathSeg IS function SVGPathSeg() { [native code] } -window.SVGPreserveAspectRatio IS function SVGPreserveAspectRatio() { [native code] } -window.SVGRenderingIntent IS function SVGRenderingIntent() { [native code] } -window.SVGTextContentElement IS function SVGTextContentElement() { [native code] } -window.SVGTextPathElement IS function SVGTextPathElement() { [native code] } -window.SVGTransform IS function SVGTransform() { [native code] } -window.SVGUnitTypes IS function SVGUnitTypes() { [native code] } -window.StyleSheet IS function StyleSheet() { [native code] } -window.StyleSheetList IS function StyleSheetList() { [native code] } -window.Text IS function Text() { [native code] } -window.TextEvent IS function TextEvent() { [native code] } -window.UIEvent IS function UIEvent() { [native code] } -window.WheelEvent IS function WheelEvent() { [native code] } -window.XMLDocument IS function Document() { [native code] } -window.XMLHttpRequest IS function XMLHttpRequest() { [native code] } -window.XMLHttpRequestException IS function XMLHttpRequestException() { [native code] } -window.XMLSerializer IS function XMLSerializer() { [native code] } -window.XPathEvaluator IS function XPathEvaluator() { [native code] } -window.XPathException IS function XPathException() { [native code] } -window.XPathResult IS function XPathResult() { [native code] } -window.XSLTProcessor IS function XSLTProcessor() { [native code] } -window.alert IS [object global] -window.atob IS [object global] -window.blur IS [object global] -window.btoa IS [object global] -window.captureEvents IS [object global] -window.clearInterval IS [object global] -window.clearTimeout IS [object global] -window.clientInformation IS [object Navigator] -window.close IS [object global] -window.closed IS false -window.confirm IS [object global] -window.console IS [object Console] -window.defaultStatus IS -window.defaultstatus IS -window.devicePixelRatio IS Number -window.document IS [object HTMLDocument] -window.find IS [object global] -window.focus IS [object global] -window.frameElement IS undefined -window.frames IS [object global] -window.getComputedStyle IS [object global] -window.getMatchedCSSRules IS [object global] -window.getSelection IS [object global] -window.history IS [object History] -window.innerHeight IS Number -window.innerWidth IS Number -window.length IS Number -window.location IS Location -window.locationbar IS [object BarInfo] -window.menubar IS [object BarInfo] -window.moveBy IS [object global] -window.moveTo IS [object global] -window.name IS -window.navigator IS [object Navigator] -window.offscreenBuffering IS true -window.onabort IS null -window.onbeforeunload IS null -window.onblur IS null -window.onchange IS null -window.onclick IS null -window.ondblclick IS null -window.ondragdrop IS null -window.onerror IS null -window.onfocus IS null -window.onkeydown IS null -window.onkeypress IS null -window.onkeyup IS null -window.onload IS function onload(evt) { with (this.ownerDocument ? this.ownerDocument : {}) { with (this.form ? this.form : {}) { with (this) { return (function(evt){ runTest() }).call(this, evt); } } } } -window.onmousedown IS null -window.onmousemove IS null -window.onmouseout IS null -window.onmouseover IS null -window.onmouseup IS null -window.onmousewheel IS null -window.onmove IS null -window.onreset IS null -window.onresize IS null -window.onscroll IS null -window.onsearch IS null -window.onselect IS null -window.onsubmit IS null -window.onunload IS null -window.open IS [object global] -window.opener IS null -window.outerHeight IS Number -window.outerWidth IS Number -window.pageXOffset IS Number -window.pageYOffset IS Number -window.parent IS [object global] -window.personalbar IS [object BarInfo] -window.print IS [object global] -window.prompt IS [object global] -window.releaseEvents IS [object global] -window.resizeBy IS [object global] -window.resizeTo IS [object global] -window.screen IS [object Screen] -window.screenLeft IS Number -window.screenTop IS Number -window.screenX IS Number -window.screenY IS Number -window.scroll IS [object global] -window.scrollBy IS [object global] -window.scrollTo IS [object global] -window.scrollX IS Number -window.scrollY IS Number -window.scrollbars IS [object BarInfo] -window.self IS [object global] -window.setInterval IS [object global] -window.setTimeout IS [object global] -window.showModalDialog IS [object global] -window.status IS -window.statusbar IS [object BarInfo] -window.stop IS [object global] -window.toString IS [object global] -window.toolbar IS [object BarInfo] -window.top IS [object global] -window.window IS [object global] - diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.checksum deleted file mode 100644 index 1aced16..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -b97db7b9b4e4db6d51fc0170fef5d5b3
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.png Binary files differdeleted file mode 100644 index 6e5b821..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.txt deleted file mode 100644 index 875ef09..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fast/forms/basic-textareas-quirks-expected.txt +++ /dev/null @@ -1,731 +0,0 @@ -layer at (0,0) size 785x1026 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x1026 - RenderBlock {HTML} at (0,0) size 785x600 - RenderBody {BODY} at (8,8) size 769x584 - RenderBlock (floating) {DIV} at (0,0) size 352x777 [border: (1px solid #FF0000)] - RenderBlock (anonymous) at (1,1) size 350x14 - RenderText {#text} at (0,-1) size 181x17 - text run at (0,-1) width 181: "Plain textarea with little content" - RenderBlock {DIV} at (1,15) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 13: " B" - RenderBlock (anonymous) at (1,51) size 350x14 - RenderText {#text} at (0,-1) size 77x17 - text run at (0,-1) width 77: "Plain textarea" - RenderBlock {DIV} at (1,65) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 13: " B" - RenderBlock (anonymous) at (1,101) size 350x14 - RenderText {#text} at (0,-1) size 97x17 - text run at (0,-1) width 97: "Disabled textarea" - RenderBlock {DIV} at (1,115) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 13: " B" - RenderBlock (anonymous) at (1,151) size 350x14 - RenderText {#text} at (0,-1) size 123x17 - text run at (0,-1) width 123: "style=\"padding:10px\"" - RenderBlock {DIV} at (1,165) size 352x56 [border: (1px solid #FF0000)] - RenderText {#text} at (1,40) size 14x17 - text run at (1,40) width 14: "A " - RenderText {#text} at (176,40) size 13x17 - text run at (176,40) width 13: " B" - RenderBlock (anonymous) at (1,221) size 350x14 - RenderText {#text} at (0,-1) size 116x17 - text run at (0,-1) width 116: "style=\"padding:0px\"" - RenderBlock {DIV} at (1,235) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 13: " B" - RenderBlock (anonymous) at (1,271) size 350x14 - RenderText {#text} at (0,-1) size 118x17 - text run at (0,-1) width 118: "style=\"margin:10px\"" - RenderBlock {DIV} at (1,285) size 352x52 [border: (1px solid #FF0000)] - RenderText {#text} at (1,36) size 14x17 - text run at (1,36) width 14: "A " - RenderText {#text} at (172,36) size 13x17 - text run at (172,36) width 13: " B" - RenderBlock (anonymous) at (1,337) size 350x14 - RenderText {#text} at (0,-1) size 111x17 - text run at (0,-1) width 111: "style=\"margin:0px\"" - RenderBlock {DIV} at (1,351) size 352x32 [border: (1px solid #FF0000)] - RenderText {#text} at (1,16) size 14x17 - text run at (1,16) width 14: "A " - RenderText {#text} at (152,16) size 13x17 - text run at (152,16) width 13: " B" - RenderBlock (anonymous) at (1,383) size 350x14 - RenderText {#text} at (0,-1) size 37x17 - text run at (0,-1) width 37: "cols=3" - RenderBlock {DIV} at (1,397) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (54,20) size 13x17 - text run at (54,20) width 13: " B" - RenderBlock (anonymous) at (1,433) size 350x14 - RenderText {#text} at (0,-1) size 42x17 - text run at (0,-1) width 42: "rows=3" - RenderBlock {DIV} at (1,447) size 352x49 [border: (1px solid #FF0000)] - RenderText {#text} at (1,33) size 14x17 - text run at (1,33) width 14: "A " - RenderText {#text} at (156,33) size 13x17 - text run at (156,33) width 13: " B" - RenderBlock (anonymous) at (1,496) size 350x14 - RenderText {#text} at (0,-1) size 44x17 - text run at (0,-1) width 44: "cols=10" - RenderBlock {DIV} at (1,510) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (96,20) size 13x17 - text run at (96,20) width 13: " B" - RenderBlock (anonymous) at (1,546) size 350x14 - RenderText {#text} at (0,-1) size 49x17 - text run at (0,-1) width 49: "rows=10" - RenderBlock {DIV} at (1,560) size 352x140 [border: (1px solid #FF0000)] - RenderText {#text} at (1,124) size 14x17 - text run at (1,124) width 14: "A " - RenderText {#text} at (156,124) size 13x17 - text run at (156,124) width 13: " B" - RenderBlock (anonymous) at (1,700) size 350x14 - RenderText {#text} at (0,-1) size 83x17 - text run at (0,-1) width 83: "cols=5 rows=4" - RenderBlock {DIV} at (1,714) size 352x62 [border: (1px solid #FF0000)] - RenderText {#text} at (1,46) size 14x17 - text run at (1,46) width 14: "A " - RenderText {#text} at (66,46) size 13x17 - text run at (66,46) width 13: " B" - RenderBlock (floating) {DIV} at (352,0) size 352x1018 [border: (1px solid #FF0000)] - RenderBlock (anonymous) at (1,1) size 350x14 - RenderText {#text} at (0,-1) size 110x17 - text run at (0,-1) width 110: "style=\"width:60px\"" - RenderBlock {DIV} at (1,15) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (75,20) size 13x17 - text run at (75,20) width 13: " B" - RenderBlock (anonymous) at (1,51) size 350x14 - RenderText {#text} at (0,-1) size 191x17 - text run at (0,-1) width 191: "style=\"width:60px;padding:20px\"" - RenderBlock {DIV} at (1,65) size 352x76 [border: (1px solid #FF0000)] - RenderText {#text} at (1,60) size 14x17 - text run at (1,60) width 14: "A " - RenderText {#text} at (75,60) size 13x17 - text run at (75,60) width 13: " B" - RenderBlock (anonymous) at (1,141) size 350x14 - RenderText {#text} at (0,-1) size 170x17 - text run at (0,-1) width 170: "style=\"width:60px;padding:0\"" - RenderBlock {DIV} at (1,155) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (75,20) size 13x17 - text run at (75,20) width 13: " B" - RenderBlock (anonymous) at (1,191) size 350x14 - RenderText {#text} at (0,-1) size 113x17 - text run at (0,-1) width 113: "style=\"height:60px\"" - RenderBlock {DIV} at (1,205) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (156,48) size 13x17 - text run at (156,48) width 13: " B" - RenderBlock (anonymous) at (1,269) size 350x14 - RenderText {#text} at (0,-1) size 181x17 - text run at (0,-1) width 181: "style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,283) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,347) size 350x14 - RenderText {#text} at (0,-1) size 139x17 - text run at (0,-1) width 139: "style=\"overflow:hidden\"" - RenderBlock {DIV} at (1,361) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (141,20) size 13x17 - text run at (141,20) width 13: " B" - RenderBlock (anonymous) at (1,397) size 350x14 - RenderText {#text} at (0,-1) size 132x17 - text run at (0,-1) width 132: "style=\"overflow:scroll\"" - RenderBlock {DIV} at (1,411) size 352x51 [border: (1px solid #FF0000)] - RenderText {#text} at (1,35) size 14x17 - text run at (1,35) width 14: "A " - RenderText {#text} at (156,35) size 13x17 - text run at (156,35) width 13: " B" - RenderBlock (anonymous) at (1,462) size 350x14 - RenderText {#text} at (0,-1) size 278x17 - text run at (0,-1) width 278: "style=\"overflow:hidden;width:60px;height:60px\"" - RenderBlock {DIV} at (1,476) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,540) size 350x14 - RenderText {#text} at (0,-1) size 271x17 - text run at (0,-1) width 271: "style=\"overflow:scroll;width:60px;height:60px\"" - RenderBlock {DIV} at (1,554) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,618) size 350x14 - RenderText {#text} at (0,-1) size 222x17 - text run at (0,-1) width 222: "cols=5 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,632) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,696) size 350x14 - RenderText {#text} at (0,-1) size 227x17 - text run at (0,-1) width 227: "rows=4 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,710) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,774) size 350x14 - RenderText {#text} at (0,-1) size 268x17 - text run at (0,-1) width 268: "cols=5 rows=4 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,788) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 14x17 - text run at (1,48) width 14: "A " - RenderText {#text} at (75,48) size 13x17 - text run at (75,48) width 13: " B" - RenderBlock (anonymous) at (1,852) size 350x14 - RenderText {#text} at (0,-1) size 65x17 - text run at (0,-1) width 65: "wrap=\"off\"" - RenderBlock {DIV} at (1,866) size 352x51 [border: (1px solid #FF0000)] - RenderText {#text} at (1,35) size 14x17 - text run at (1,35) width 14: "A " - RenderText {#text} at (156,35) size 13x17 - text run at (156,35) width 4: " " - text run at (160,35) width 9: "B" - RenderBlock (anonymous) at (1,917) size 350x14 - RenderText {#text} at (0,-1) size 73x17 - text run at (0,-1) width 73: "wrap=\"hard\"" - RenderBlock {DIV} at (1,931) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 4: " " - text run at (160,20) width 9: "B" - RenderBlock (anonymous) at (1,967) size 350x14 - RenderText {#text} at (0,-1) size 69x17 - text run at (0,-1) width 69: "wrap=\"soft\"" - RenderBlock {DIV} at (1,981) size 352x36 [border: (1px solid #FF0000)] - RenderText {#text} at (1,20) size 14x17 - text run at (1,20) width 14: "A " - RenderText {#text} at (156,20) size 13x17 - text run at (156,20) width 4: " " - text run at (160,20) width 9: "B" -layer at (26,26) size 137x28 clip at (27,27) size 135x26 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x13 - RenderText {#text} at (0,0) size 102x13 - text run at (0,0) width 102: "Lorem ipsum dolor" -layer at (26,76) size 137x28 clip at (27,77) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,126) size 137x28 clip at (27,127) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 [color=#545454] - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,176) size 157x48 clip at (27,177) size 140x46 scrollHeight 75 - RenderTextControl {TEXTAREA} at (17,3) size 157x48 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (11,11) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,246) size 137x28 clip at (27,247) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (34,304) size 137x28 clip at (35,305) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (25,11) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (24,360) size 137x28 clip at (25,361) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (15,1) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,408) size 35x28 clip at (27,409) size 18x26 scrollHeight 429 - RenderTextControl {TEXTAREA} at (17,3) size 35x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 16x429 - RenderText {#text} at (0,0) size 16x429 - text run at (0,0) width 13: "Lo" - text run at (0,13) width 11: "re" - text run at (0,26) width 14: "m " - text run at (0,39) width 16: "ips" - text run at (0,52) width 7: "u" - text run at (0,65) width 14: "m " - text run at (0,78) width 14: "do" - text run at (0,91) width 16: "lor " - text run at (0,104) width 14: "AB" - text run at (0,117) width 16: "CD" - text run at (0,130) width 12: "EF" - text run at (0,143) width 8: "G" - text run at (0,156) width 15: "HIJ" - text run at (0,169) width 14: "KL" - text run at (0,182) width 10: "M" - text run at (0,195) width 9: "N" - text run at (0,208) width 15: "OP" - text run at (0,221) width 16: "QR" - text run at (0,234) width 13: "ST" - text run at (0,247) width 15: "UV" - text run at (0,260) width 10: "W" - text run at (0,273) width 14: "XY" - text run at (0,286) width 10: "Z " - text run at (0,299) width 13: "ab" - text run at (0,312) width 13: "cd" - text run at (0,325) width 11: "ef" - text run at (0,338) width 14: "gh" - text run at (0,351) width 13: "ijk" - text run at (0,364) width 14: "lm" - text run at (0,377) width 14: "no" - text run at (0,390) width 14: "pq" - text run at (0,403) width 15: "rst" - text run at (0,416) width 16: "uv " -layer at (26,458) size 137x41 clip at (27,459) size 120x39 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 137x41 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,521) size 77x28 clip at (27,522) size 60x26 scrollHeight 130 - RenderTextControl {TEXTAREA} at (17,3) size 77x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 58x130 - RenderText {#text} at (0,0) size 58x130 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 58: "ABCDEFGH" - text run at (0,52) width 52: "IJKLMNOP" - text run at (0,65) width 53: "QRSTUVW" - text run at (0,78) width 24: "XYZ " - text run at (0,91) width 56: "abcdefghij" - text run at (0,104) width 58: "klmnopqrs" - text run at (0,117) width 20: "tuv " -layer at (26,571) size 137x132 clip at (27,572) size 135x130 - RenderTextControl {TEXTAREA} at (17,3) size 137x132 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (26,725) size 47x54 clip at (27,726) size 30x52 scrollHeight 260 - RenderTextControl {TEXTAREA} at (17,3) size 47x54 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 28x260 - RenderText {#text} at (0,0) size 28x260 - text run at (0,0) width 24: "Lore" - text run at (0,13) width 14: "m " - text run at (0,26) width 23: "ipsu" - text run at (0,39) width 14: "m " - text run at (0,52) width 24: "dolo" - text run at (0,65) width 8: "r " - text run at (0,78) width 22: "ABC" - text run at (0,91) width 21: "DEF" - text run at (0,104) width 23: "GHIJ" - text run at (0,117) width 23: "KLM" - text run at (0,130) width 23: "NOP" - text run at (0,143) width 22: "QRS" - text run at (0,156) width 22: "TUV" - text run at (0,169) width 24: "WXY" - text run at (0,182) width 10: "Z " - text run at (0,195) width 26: "abcd" - text run at (0,208) width 28: "efghi" - text run at (0,221) width 24: "jklm" - text run at (0,234) width 28: "nopq" - text run at (0,247) width 27: "rstuv" -layer at (376,26) size 60x28 clip at (377,27) size 43x26 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,3) size 60x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (376,76) size 60x68 clip at (377,77) size 43x66 scrollHeight 839 - RenderTextControl {TEXTAREA} at (15,3) size 60x68 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (21,21) size 1x819 - RenderText {#text} at (0,0) size 11x819 - text run at (0,0) width 6: "L" - text run at (0,13) width 7: "o" - text run at (0,26) width 5: "r" - text run at (0,39) width 7: "e" - text run at (0,52) width 11: "m" - text run at (0,65) width 4: "i" - text run at (0,78) width 7: "p" - text run at (0,91) width 6: "s" - text run at (0,104) width 7: "u" - text run at (0,117) width 11: "m" - text run at (0,130) width 7: "d" - text run at (0,143) width 7: "o" - text run at (0,156) width 4: "l" - text run at (0,169) width 7: "o" - text run at (0,182) width 5: "r" - text run at (0,195) width 8: "A" - text run at (0,208) width 7: "B" - text run at (0,221) width 8: "C" - text run at (0,234) width 9: "D" - text run at (0,247) width 6: "E" - text run at (0,260) width 6: "F" - text run at (0,273) width 8: "G" - text run at (0,286) width 9: "H" - text run at (0,299) width 4: "I" - text run at (0,312) width 4: "J" - text run at (0,325) width 8: "K" - text run at (0,338) width 6: "L" - text run at (0,351) width 10: "M" - text run at (0,364) width 9: "N" - text run at (0,377) width 9: "O" - text run at (0,390) width 7: "P" - text run at (0,403) width 9: "Q" - text run at (0,416) width 7: "R" - text run at (0,429) width 6: "S" - text run at (0,442) width 7: "T" - text run at (0,455) width 8: "U" - text run at (0,468) width 8: "V" - text run at (0,481) width 10: "W" - text run at (0,494) width 7: "X" - text run at (0,507) width 7: "Y" - text run at (0,520) width 7: "Z" - text run at (0,533) width 7: "a" - text run at (0,546) width 7: "b" - text run at (0,559) width 6: "c" - text run at (0,572) width 7: "d" - text run at (0,585) width 7: "e" - text run at (0,598) width 5: "f" - text run at (0,611) width 7: "g" - text run at (0,624) width 7: "h" - text run at (0,637) width 4: "i" - text run at (0,650) width 4: "j" - text run at (0,663) width 7: "k" - text run at (0,676) width 4: "l" - text run at (0,689) width 11: "m" - text run at (0,702) width 7: "n" - text run at (0,715) width 7: "o" - text run at (0,728) width 7: "p" - text run at (0,741) width 7: "q" - text run at (0,754) width 5: "r" - text run at (0,767) width 6: "s" - text run at (0,780) width 5: "t" - text run at (0,793) width 7: "u" - text run at (0,806) width 6: "v" -layer at (376,166) size 60x28 clip at (377,167) size 43x26 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,3) size 60x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (378,214) size 137x60 clip at (379,215) size 120x58 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,1) size 137x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (376,292) size 60x60 clip at (377,293) size 43x58 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (378,372) size 122x28 clip at (379,373) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 122x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (378,422) size 137x43 clip at (379,423) size 120x26 scrollHeight 65 - RenderTextControl {TEXTAREA} at (17,3) size 137x43 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x65 - RenderText {#text} at (0,0) size 118x65 - text run at (0,0) width 105: "Lorem ipsum dolor " - text run at (0,13) width 110: "ABCDEFGHIJKLMNOP" - text run at (0,26) width 76: "QRSTUVWXYZ " - text run at (0,39) width 118: "abcdefghijklmnopqrst" - text run at (0,52) width 16: "uv " -layer at (376,485) size 60x60 clip at (377,486) size 58x58 scrollHeight 130 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 56x130 - RenderText {#text} at (0,0) size 56x130 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 50: "ABCDEFG" - text run at (0,52) width 54: "HIJKLMNO" - text run at (0,65) width 50: "PQRSTUV" - text run at (0,78) width 33: "WXYZ " - text run at (0,91) width 56: "abcdefghij" - text run at (0,104) width 52: "klmnopqr" - text run at (0,117) width 26: "stuv " -layer at (376,563) size 60x60 clip at (377,564) size 43x43 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (376,641) size 60x60 clip at (377,642) size 43x58 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (376,719) size 60x60 clip at (377,720) size 43x58 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (376,797) size 60x60 clip at (377,798) size 43x58 scrollHeight 156 - RenderTextControl {TEXTAREA} at (15,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 41x156 - RenderText {#text} at (0,0) size 41x156 - text run at (0,0) width 37: "Lorem " - text run at (0,13) width 36: "ipsum " - text run at (0,26) width 32: "dolor " - text run at (0,39) width 36: "ABCDE" - text run at (0,52) width 36: "FGHIJK" - text run at (0,65) width 39: "LMNOP" - text run at (0,78) width 37: "QRSTU" - text run at (0,91) width 40: "VWXYZ " - text run at (0,104) width 36: "abcdef" - text run at (0,117) width 41: "ghijklm" - text run at (0,130) width 38: "nopqrs" - text run at (0,143) width 20: "tuv " -layer at (378,877) size 137x43 clip at (379,878) size 120x26 scrollWidth 189 scrollHeight 208 - RenderTextControl {TEXTAREA} at (17,3) size 137x43 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x208 - RenderText {#text} at (0,0) size 189x195 - text run at (0,0) width 3: " " - text run at (3,0) width 0: " " - text run at (0,13) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,13) width 0: " " - text run at (0,26) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,26) width 0: " " - text run at (0,39) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,39) width 0: " " - text run at (0,52) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,52) width 0: " " - text run at (0,65) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,65) width 0: " " - text run at (0,78) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,78) width 0: " " - text run at (0,91) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,91) width 0: " " - text run at (0,104) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,104) width 0: " " - text run at (0,117) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,117) width 0: " " - text run at (0,130) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,130) width 0: " " - text run at (0,143) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,143) width 0: " " - text run at (0,156) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,156) width 0: " " - text run at (0,169) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,169) width 0: " " - text run at (0,182) width 189: "This is a text area with wrap=\"soft\"" - text run at (189,182) width 0: " " - RenderBR {BR} at (0,195) size 0x13 -layer at (378,942) size 137x28 clip at (379,943) size 120x26 scrollHeight 390 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x390 - RenderText {#text} at (0,0) size 99x377 - text run at (0,0) width 3: " " - text run at (3,0) width 0: " " - text run at (0,13) width 99: "This is a text area " - text run at (0,26) width 90: "with wrap=\"soft\"" - text run at (90,26) width 0: " " - text run at (0,39) width 99: "This is a text area " - text run at (0,52) width 90: "with wrap=\"soft\"" - text run at (90,52) width 0: " " - text run at (0,65) width 99: "This is a text area " - text run at (0,78) width 90: "with wrap=\"soft\"" - text run at (90,78) width 0: " " - text run at (0,91) width 99: "This is a text area " - text run at (0,104) width 90: "with wrap=\"soft\"" - text run at (90,104) width 0: " " - text run at (0,117) width 99: "This is a text area " - text run at (0,130) width 90: "with wrap=\"soft\"" - text run at (90,130) width 0: " " - text run at (0,143) width 99: "This is a text area " - text run at (0,156) width 90: "with wrap=\"soft\"" - text run at (90,156) width 0: " " - text run at (0,169) width 99: "This is a text area " - text run at (0,182) width 90: "with wrap=\"soft\"" - text run at (90,182) width 0: " " - text run at (0,195) width 99: "This is a text area " - text run at (0,208) width 90: "with wrap=\"soft\"" - text run at (90,208) width 0: " " - text run at (0,221) width 99: "This is a text area " - text run at (0,234) width 90: "with wrap=\"soft\"" - text run at (90,234) width 0: " " - text run at (0,247) width 99: "This is a text area " - text run at (0,260) width 90: "with wrap=\"soft\"" - text run at (90,260) width 0: " " - text run at (0,273) width 99: "This is a text area " - text run at (0,286) width 90: "with wrap=\"soft\"" - text run at (90,286) width 0: " " - text run at (0,299) width 99: "This is a text area " - text run at (0,312) width 90: "with wrap=\"soft\"" - text run at (90,312) width 0: " " - text run at (0,325) width 99: "This is a text area " - text run at (0,338) width 90: "with wrap=\"soft\"" - text run at (90,338) width 0: " " - text run at (0,351) width 99: "This is a text area " - text run at (0,364) width 90: "with wrap=\"soft\"" - text run at (90,364) width 0: " " - RenderBR {BR} at (0,377) size 0x13 -layer at (378,992) size 137x28 clip at (379,993) size 120x26 scrollHeight 390 - RenderTextControl {TEXTAREA} at (17,3) size 137x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 118x390 - RenderText {#text} at (0,0) size 99x377 - text run at (0,0) width 3: " " - text run at (3,0) width 0: " " - text run at (0,13) width 99: "This is a text area " - text run at (0,26) width 90: "with wrap=\"soft\"" - text run at (90,26) width 0: " " - text run at (0,39) width 99: "This is a text area " - text run at (0,52) width 90: "with wrap=\"soft\"" - text run at (90,52) width 0: " " - text run at (0,65) width 99: "This is a text area " - text run at (0,78) width 90: "with wrap=\"soft\"" - text run at (90,78) width 0: " " - text run at (0,91) width 99: "This is a text area " - text run at (0,104) width 90: "with wrap=\"soft\"" - text run at (90,104) width 0: " " - text run at (0,117) width 99: "This is a text area " - text run at (0,130) width 90: "with wrap=\"soft\"" - text run at (90,130) width 0: " " - text run at (0,143) width 99: "This is a text area " - text run at (0,156) width 90: "with wrap=\"soft\"" - text run at (90,156) width 0: " " - text run at (0,169) width 99: "This is a text area " - text run at (0,182) width 90: "with wrap=\"soft\"" - text run at (90,182) width 0: " " - text run at (0,195) width 99: "This is a text area " - text run at (0,208) width 90: "with wrap=\"soft\"" - text run at (90,208) width 0: " " - text run at (0,221) width 99: "This is a text area " - text run at (0,234) width 90: "with wrap=\"soft\"" - text run at (90,234) width 0: " " - text run at (0,247) width 99: "This is a text area " - text run at (0,260) width 90: "with wrap=\"soft\"" - text run at (90,260) width 0: " " - text run at (0,273) width 99: "This is a text area " - text run at (0,286) width 90: "with wrap=\"soft\"" - text run at (90,286) width 0: " " - text run at (0,299) width 99: "This is a text area " - text run at (0,312) width 90: "with wrap=\"soft\"" - text run at (90,312) width 0: " " - text run at (0,325) width 99: "This is a text area " - text run at (0,338) width 90: "with wrap=\"soft\"" - text run at (90,338) width 0: " " - text run at (0,351) width 99: "This is a text area " - text run at (0,364) width 90: "with wrap=\"soft\"" - text run at (90,364) width 0: " " - RenderBR {BR} at (0,377) size 0x13 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.checksum deleted file mode 100644 index 691af41..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -7431e5b28b5a29e332f2d5c0e00d5759
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.png Binary files differdeleted file mode 100644 index 8897290..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.txt deleted file mode 100644 index dec20e8..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.txt +++ /dev/null @@ -1,865 +0,0 @@ -layer at (0,0) size 785x5132 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x5132 - RenderBlock {HTML} at (0,0) size 785x5132 - RenderBody {BODY} at (8,8) size 769x5108 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderInline {FONT} at (0,0) size 64x1691 - RenderText {#text} at (0,0) size 16x17 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 16x17 - text run at (0,18) width 16: "!!!!" - RenderBR {BR} at (16,32) size 0x0 - RenderText {#text} at (0,36) size 24x17 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,50) size 0x0 - RenderText {#text} at (0,54) size 36x17 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x17 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x17 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 44x17 - text run at (0,108) width 44: "&&&&" - RenderBR {BR} at (44,122) size 0x0 - RenderText {#text} at (0,126) size 12x17 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x17 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x17 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x17 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x17 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x17 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x17 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x17 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x17 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x17 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x17 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x17 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x17 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x17 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x17 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x17 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x17 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x17 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x17 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 16x17 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x17 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x17 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x17 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x17 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 36x17 - text run at (0,558) width 36: "????" - RenderBR {BR} at (36,572) size 0x0 - RenderText {#text} at (0,576) size 64x17 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 44x17 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x17 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x17 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x17 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x17 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x17 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x17 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x17 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x17 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 32x17 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x17 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x17 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x17 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x17 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x17 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x17 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x17 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x17 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x17 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x17 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x17 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x17 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x17 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x17 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x17 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x17 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 16x17 - text run at (0,1062) width 16: "[[[[" - RenderBR {BR} at (16,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x17 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 16x17 - text run at (0,1098) width 16: "]]]]" - RenderBR {BR} at (16,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x17 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x17 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x17 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x17 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x17 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 32x17 - text run at (0,1206) width 32: "cccc" - RenderBR {BR} at (32,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x17 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x17 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x17 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 36x17 - text run at (0,1278) width 36: "gggg" - RenderBR {BR} at (36,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x17 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x17 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x17 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x17 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x17 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x17 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x17 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 36x17 - text run at (0,1422) width 36: "oooo" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x17 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x17 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x17 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 32x17 - text run at (0,1494) width 32: "ssss" - RenderBR {BR} at (32,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x17 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x17 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x17 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x17 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x17 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x17 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x17 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 20x17 - text run at (0,1638) width 20: "{{{{" - RenderBR {BR} at (20,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x17 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 20x17 - text run at (0,1674) width 20: "}}}}" - RenderBR {BR} at (20,1688) size 0x0 - RenderBlock (anonymous) at (0,1708) size 769x1692 - RenderBlock {P} at (0,0) size 769x1692 - RenderInline {B} at (0,0) size 64x1691 - RenderText {#text} at (0,0) size 16x17 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x17 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 32x17 - text run at (0,36) width 32: "\"\"\"\"" - RenderBR {BR} at (32,50) size 0x0 - RenderText {#text} at (0,54) size 36x17 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x17 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x17 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 48x17 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 16x17 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x17 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x17 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x17 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x17 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x17 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x17 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x17 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x17 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x17 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x17 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x17 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x17 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x17 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x17 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x17 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x17 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x17 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x17 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 20x17 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x17 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x17 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x17 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x17 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 40x17 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 64x17 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 48x17 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 48x17 - text run at (0,612) width 48: "BBBB" - RenderBR {BR} at (48,626) size 0x0 - RenderText {#text} at (0,630) size 48x17 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x17 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x17 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x17 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x17 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x17 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x17 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 36x17 - text run at (0,756) width 36: "JJJJ" - RenderBR {BR} at (36,770) size 0x0 - RenderText {#text} at (0,774) size 48x17 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 40x17 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 52x17 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x17 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x17 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x17 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x17 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x17 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x17 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x17 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x17 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x17 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x17 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x17 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x17 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x17 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x17 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x17 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x17 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x17 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x17 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x17 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x17 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x17 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 36x17 - text run at (0,1206) width 36: "cccc" - RenderBR {BR} at (36,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x17 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x17 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x17 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x17 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x17 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x17 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x17 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 36x17 - text run at (0,1350) width 36: "kkkk" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x17 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 56x17 - text run at (0,1386) width 56: "mmmm" - RenderBR {BR} at (56,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x17 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x17 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x17 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x17 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x17 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 36x17 - text run at (0,1494) width 36: "ssss" - RenderBR {BR} at (36,1508) size 0x0 - RenderText {#text} at (0,1512) size 20x17 - text run at (0,1512) width 20: "tttt" - RenderBR {BR} at (20,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x17 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 36x17 - text run at (0,1548) width 36: "vvvv" - RenderBR {BR} at (36,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x17 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 36x17 - text run at (0,1584) width 36: "xxxx" - RenderBR {BR} at (36,1598) size 0x0 - RenderText {#text} at (0,1602) size 36x17 - text run at (0,1602) width 36: "yyyy" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x17 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x17 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x17 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x17 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,3416) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,3416) size 769x1692 - RenderInline {FONT} at (0,0) size 64x1691 - RenderText {#text} at (0,0) size 0x0 - RenderInline {I} at (0,0) size 64x1691 - RenderText {#text} at (0,0) size 16x17 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 16x17 - text run at (0,18) width 16: "!!!!" - RenderBR {BR} at (16,32) size 0x0 - RenderText {#text} at (0,36) size 24x17 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,50) size 0x0 - RenderText {#text} at (0,54) size 36x17 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x17 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x17 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 44x17 - text run at (0,108) width 44: "&&&&" - RenderBR {BR} at (44,122) size 0x0 - RenderText {#text} at (0,126) size 12x17 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x17 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x17 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x17 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x17 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x17 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x17 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x17 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x17 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x17 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x17 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x17 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x17 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x17 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x17 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x17 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x17 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x17 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x17 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 16x17 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x17 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x17 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x17 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x17 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 36x17 - text run at (0,558) width 36: "????" - RenderBR {BR} at (36,572) size 0x0 - RenderText {#text} at (0,576) size 64x17 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 44x17 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x17 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x17 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x17 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x17 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x17 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x17 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x17 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x17 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 32x17 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x17 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x17 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x17 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x17 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x17 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x17 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x17 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x17 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x17 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x17 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x17 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x17 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x17 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x17 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x17 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x17 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 16x17 - text run at (0,1062) width 16: "[[[[" - RenderBR {BR} at (16,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x17 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 16x17 - text run at (0,1098) width 16: "]]]]" - RenderBR {BR} at (16,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x17 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x17 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x17 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x17 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x17 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 32x17 - text run at (0,1206) width 32: "cccc" - RenderBR {BR} at (32,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x17 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x17 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x17 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 36x17 - text run at (0,1278) width 36: "gggg" - RenderBR {BR} at (36,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x17 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x17 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x17 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x17 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x17 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x17 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x17 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 36x17 - text run at (0,1422) width 36: "oooo" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x17 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x17 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x17 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 32x17 - text run at (0,1494) width 32: "ssss" - RenderBR {BR} at (32,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x17 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x17 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x17 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x17 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x17 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x17 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x17 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 20x17 - text run at (0,1638) width 20: "{{{{" - RenderBR {BR} at (20,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x17 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 20x17 - text run at (0,1674) width 20: "}}}}" - RenderBR {BR} at (20,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.checksum deleted file mode 100644 index e782eef..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -ce24a9dff2a762c44d809123286a05b8
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.png Binary files differdeleted file mode 100644 index ddd4e51..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.txt deleted file mode 100644 index e458dba..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x8720 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x8720 - RenderBlock {HTML} at (0,0) size 785x8720 - RenderBody {BODY} at (8,8) size 769x8696 - RenderBlock (anonymous) at (0,0) size 769x2162 - RenderInline {FONT} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 20x23 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,18) size 0x0 - RenderText {#text} at (0,23) size 16x23 - text run at (0,23) width 16: "!!!!" - RenderBR {BR} at (16,41) size 0x0 - RenderText {#text} at (0,46) size 28x23 - text run at (0,46) width 28: "\"\"\"\"" - RenderBR {BR} at (28,64) size 0x0 - RenderText {#text} at (0,69) size 52x23 - text run at (0,69) width 52: "####" - RenderBR {BR} at (52,87) size 0x0 - RenderText {#text} at (0,92) size 44x23 - text run at (0,92) width 44: "$$$$" - RenderBR {BR} at (44,110) size 0x0 - RenderText {#text} at (0,115) size 52x23 - text run at (0,115) width 52: "%%%%" - RenderBR {BR} at (52,133) size 0x0 - RenderText {#text} at (0,138) size 40x23 - text run at (0,138) width 40: "&&&&" - RenderBR {BR} at (40,156) size 0x0 - RenderText {#text} at (0,161) size 24x23 - text run at (0,161) width 24: "''''" - RenderBR {BR} at (24,179) size 0x0 - RenderText {#text} at (0,184) size 24x23 - text run at (0,184) width 24: "((((" - RenderBR {BR} at (24,202) size 0x0 - RenderText {#text} at (0,207) size 24x23 - text run at (0,207) width 24: "))))" - RenderBR {BR} at (24,225) size 0x0 - RenderText {#text} at (0,230) size 32x23 - text run at (0,230) width 32: "****" - RenderBR {BR} at (32,248) size 0x0 - RenderText {#text} at (0,253) size 32x23 - text run at (0,253) width 32: "++++" - RenderBR {BR} at (32,271) size 0x0 - RenderText {#text} at (0,276) size 16x23 - text run at (0,276) width 16: ",,,," - RenderBR {BR} at (16,294) size 0x0 - RenderText {#text} at (0,299) size 28x23 - text run at (0,299) width 28: "----" - RenderBR {BR} at (28,317) size 0x0 - RenderText {#text} at (0,322) size 16x23 - text run at (0,322) width 16: "...." - RenderBR {BR} at (16,340) size 0x0 - RenderText {#text} at (0,345) size 32x23 - text run at (0,345) width 32: "////" - RenderBR {BR} at (32,363) size 0x0 - RenderText {#text} at (0,368) size 40x23 - text run at (0,368) width 40: "0000" - RenderBR {BR} at (40,386) size 0x0 - RenderText {#text} at (0,391) size 28x23 - text run at (0,391) width 28: "1111" - RenderBR {BR} at (28,409) size 0x0 - RenderText {#text} at (0,414) size 40x23 - text run at (0,414) width 40: "2222" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x23 - text run at (0,437) width 40: "3333" - RenderBR {BR} at (40,455) size 0x0 - RenderText {#text} at (0,460) size 40x23 - text run at (0,460) width 40: "4444" - RenderBR {BR} at (40,478) size 0x0 - RenderText {#text} at (0,483) size 40x23 - text run at (0,483) width 40: "5555" - RenderBR {BR} at (40,501) size 0x0 - RenderText {#text} at (0,506) size 40x23 - text run at (0,506) width 40: "6666" - RenderBR {BR} at (40,524) size 0x0 - RenderText {#text} at (0,529) size 40x23 - text run at (0,529) width 40: "7777" - RenderBR {BR} at (40,547) size 0x0 - RenderText {#text} at (0,552) size 40x23 - text run at (0,552) width 40: "8888" - RenderBR {BR} at (40,570) size 0x0 - RenderText {#text} at (0,575) size 40x23 - text run at (0,575) width 40: "9999" - RenderBR {BR} at (40,593) size 0x0 - RenderText {#text} at (0,598) size 20x23 - text run at (0,598) width 20: "::::" - RenderBR {BR} at (20,616) size 0x0 - RenderText {#text} at (0,621) size 20x23 - text run at (0,621) width 20: ";;;;" - RenderBR {BR} at (20,639) size 0x0 - RenderText {#text} at (0,644) size 24x23 - text run at (0,644) width 24: "<<<<" - RenderBR {BR} at (24,662) size 0x0 - RenderText {#text} at (0,667) size 32x23 - text run at (0,667) width 32: "====" - RenderBR {BR} at (32,685) size 0x0 - RenderText {#text} at (0,690) size 24x23 - text run at (0,690) width 24: ">>>>" - RenderBR {BR} at (24,708) size 0x0 - RenderText {#text} at (0,713) size 32x23 - text run at (0,713) width 32: "????" - RenderBR {BR} at (32,731) size 0x0 - RenderText {#text} at (0,736) size 60x23 - text run at (0,736) width 60: "@@@@" - RenderBR {BR} at (60,754) size 0x0 - RenderText {#text} at (0,759) size 48x23 - text run at (0,759) width 48: "AAAA" - RenderBR {BR} at (48,777) size 0x0 - RenderText {#text} at (0,782) size 40x23 - text run at (0,782) width 40: "BBBB" - RenderBR {BR} at (40,800) size 0x0 - RenderText {#text} at (0,805) size 40x23 - text run at (0,805) width 40: "CCCC" - RenderBR {BR} at (40,823) size 0x0 - RenderText {#text} at (0,828) size 48x23 - text run at (0,828) width 48: "DDDD" - RenderBR {BR} at (48,846) size 0x0 - RenderText {#text} at (0,851) size 40x23 - text run at (0,851) width 40: "EEEE" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x23 - text run at (0,874) width 40: "FFFF" - RenderBR {BR} at (40,892) size 0x0 - RenderText {#text} at (0,897) size 44x23 - text run at (0,897) width 44: "GGGG" - RenderBR {BR} at (44,915) size 0x0 - RenderText {#text} at (0,920) size 48x23 - text run at (0,920) width 48: "HHHH" - RenderBR {BR} at (48,938) size 0x0 - RenderText {#text} at (0,943) size 36x23 - text run at (0,943) width 36: "IIII" - RenderBR {BR} at (36,961) size 0x0 - RenderText {#text} at (0,966) size 44x23 - text run at (0,966) width 44: "JJJJ" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,989) size 40x23 - text run at (0,989) width 40: "KKKK" - RenderBR {BR} at (40,1007) size 0x0 - RenderText {#text} at (0,1012) size 36x23 - text run at (0,1012) width 36: "LLLL" - RenderBR {BR} at (36,1030) size 0x0 - RenderText {#text} at (0,1035) size 56x23 - text run at (0,1035) width 56: "MMMM" - RenderBR {BR} at (56,1053) size 0x0 - RenderText {#text} at (0,1058) size 52x23 - text run at (0,1058) width 52: "NNNN" - RenderBR {BR} at (52,1076) size 0x0 - RenderText {#text} at (0,1081) size 52x23 - text run at (0,1081) width 52: "OOOO" - RenderBR {BR} at (52,1099) size 0x0 - RenderText {#text} at (0,1104) size 32x23 - text run at (0,1104) width 32: "PPPP" - RenderBR {BR} at (32,1122) size 0x0 - RenderText {#text} at (0,1127) size 56x23 - text run at (0,1127) width 56: "QQQQ" - RenderBR {BR} at (56,1145) size 0x0 - RenderText {#text} at (0,1150) size 40x23 - text run at (0,1150) width 40: "RRRR" - RenderBR {BR} at (40,1168) size 0x0 - RenderText {#text} at (0,1173) size 44x23 - text run at (0,1173) width 44: "SSSS" - RenderBR {BR} at (44,1191) size 0x0 - RenderText {#text} at (0,1196) size 44x23 - text run at (0,1196) width 44: "TTTT" - RenderBR {BR} at (44,1214) size 0x0 - RenderText {#text} at (0,1219) size 48x23 - text run at (0,1219) width 48: "UUUU" - RenderBR {BR} at (48,1237) size 0x0 - RenderText {#text} at (0,1242) size 40x23 - text run at (0,1242) width 40: "VVVV" - RenderBR {BR} at (40,1260) size 0x0 - RenderText {#text} at (0,1265) size 68x23 - text run at (0,1265) width 68: "WWWW" - RenderBR {BR} at (68,1283) size 0x0 - RenderText {#text} at (0,1288) size 48x23 - text run at (0,1288) width 48: "XXXX" - RenderBR {BR} at (48,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x23 - text run at (0,1311) width 40: "YYYY" - RenderBR {BR} at (40,1329) size 0x0 - RenderText {#text} at (0,1334) size 44x23 - text run at (0,1334) width 44: "ZZZZ" - RenderBR {BR} at (44,1352) size 0x0 - RenderText {#text} at (0,1357) size 24x23 - text run at (0,1357) width 24: "[[[[" - RenderBR {BR} at (24,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x23 - text run at (0,1380) width 36: "\\\\\\\\" - RenderBR {BR} at (36,1398) size 0x0 - RenderText {#text} at (0,1403) size 24x23 - text run at (0,1403) width 24: "]]]]" - RenderBR {BR} at (24,1421) size 0x0 - RenderText {#text} at (0,1426) size 36x23 - text run at (0,1426) width 36: "^^^^" - RenderBR {BR} at (36,1444) size 0x0 - RenderText {#text} at (0,1449) size 40x23 - text run at (0,1449) width 40: "____" - RenderBR {BR} at (40,1467) size 0x0 - RenderText {#text} at (0,1472) size 36x23 - text run at (0,1472) width 36: "````" - RenderBR {BR} at (36,1490) size 0x0 - RenderText {#text} at (0,1495) size 32x23 - text run at (0,1495) width 32: "aaaa" - RenderBR {BR} at (32,1513) size 0x0 - RenderText {#text} at (0,1518) size 36x23 - text run at (0,1518) width 36: "bbbb" - RenderBR {BR} at (36,1536) size 0x0 - RenderText {#text} at (0,1541) size 32x23 - text run at (0,1541) width 32: "cccc" - RenderBR {BR} at (32,1559) size 0x0 - RenderText {#text} at (0,1564) size 36x23 - text run at (0,1564) width 36: "dddd" - RenderBR {BR} at (36,1582) size 0x0 - RenderText {#text} at (0,1587) size 36x23 - text run at (0,1587) width 36: "eeee" - RenderBR {BR} at (36,1605) size 0x0 - RenderText {#text} at (0,1610) size 32x23 - text run at (0,1610) width 32: "ffff" - RenderBR {BR} at (32,1628) size 0x0 - RenderText {#text} at (0,1633) size 32x23 - text run at (0,1633) width 32: "gggg" - RenderBR {BR} at (32,1651) size 0x0 - RenderText {#text} at (0,1656) size 36x23 - text run at (0,1656) width 36: "hhhh" - RenderBR {BR} at (36,1674) size 0x0 - RenderText {#text} at (0,1679) size 16x23 - text run at (0,1679) width 16: "iiii" - RenderBR {BR} at (16,1697) size 0x0 - RenderText {#text} at (0,1702) size 24x23 - text run at (0,1702) width 24: "jjjj" - RenderBR {BR} at (24,1720) size 0x0 - RenderText {#text} at (0,1725) size 36x23 - text run at (0,1725) width 36: "kkkk" - RenderBR {BR} at (36,1743) size 0x0 - RenderText {#text} at (0,1748) size 16x23 - text run at (0,1748) width 16: "llll" - RenderBR {BR} at (16,1766) size 0x0 - RenderText {#text} at (0,1771) size 48x23 - text run at (0,1771) width 48: "mmmm" - RenderBR {BR} at (48,1789) size 0x0 - RenderText {#text} at (0,1794) size 32x23 - text run at (0,1794) width 32: "nnnn" - RenderBR {BR} at (32,1812) size 0x0 - RenderText {#text} at (0,1817) size 32x23 - text run at (0,1817) width 32: "oooo" - RenderBR {BR} at (32,1835) size 0x0 - RenderText {#text} at (0,1840) size 36x23 - text run at (0,1840) width 36: "pppp" - RenderBR {BR} at (36,1858) size 0x0 - RenderText {#text} at (0,1863) size 32x23 - text run at (0,1863) width 32: "qqqq" - RenderBR {BR} at (32,1881) size 0x0 - RenderText {#text} at (0,1886) size 32x23 - text run at (0,1886) width 32: "rrrr" - RenderBR {BR} at (32,1904) size 0x0 - RenderText {#text} at (0,1909) size 32x23 - text run at (0,1909) width 32: "ssss" - RenderBR {BR} at (32,1927) size 0x0 - RenderText {#text} at (0,1932) size 32x23 - text run at (0,1932) width 32: "tttt" - RenderBR {BR} at (32,1950) size 0x0 - RenderText {#text} at (0,1955) size 32x23 - text run at (0,1955) width 32: "uuuu" - RenderBR {BR} at (32,1973) size 0x0 - RenderText {#text} at (0,1978) size 32x23 - text run at (0,1978) width 32: "vvvv" - RenderBR {BR} at (32,1996) size 0x0 - RenderText {#text} at (0,2001) size 44x23 - text run at (0,2001) width 44: "wwww" - RenderBR {BR} at (44,2019) size 0x0 - RenderText {#text} at (0,2024) size 36x23 - text run at (0,2024) width 36: "xxxx" - RenderBR {BR} at (36,2042) size 0x0 - RenderText {#text} at (0,2047) size 32x23 - text run at (0,2047) width 32: "yyyy" - RenderBR {BR} at (32,2065) size 0x0 - RenderText {#text} at (0,2070) size 36x23 - text run at (0,2070) width 36: "zzzz" - RenderBR {BR} at (36,2088) size 0x0 - RenderText {#text} at (0,2093) size 24x23 - text run at (0,2093) width 24: "{{{{" - RenderBR {BR} at (24,2111) size 0x0 - RenderText {#text} at (0,2116) size 28x23 - text run at (0,2116) width 28: "||||" - RenderBR {BR} at (28,2134) size 0x0 - RenderText {#text} at (0,2139) size 24x23 - text run at (0,2139) width 24: "}}}}" - RenderBR {BR} at (24,2157) size 0x0 - RenderBlock (anonymous) at (0,2178) size 769x4340 - RenderBlock {P} at (0,0) size 769x2162 - RenderInline {B} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 28x23 - text run at (0,0) width 28: " " - RenderBR {BR} at (28,18) size 0x0 - RenderText {#text} at (0,23) size 16x23 - text run at (0,23) width 16: "!!!!" - RenderBR {BR} at (16,41) size 0x0 - RenderText {#text} at (0,46) size 28x23 - text run at (0,46) width 28: "\"\"\"\"" - RenderBR {BR} at (28,64) size 0x0 - RenderText {#text} at (0,69) size 52x23 - text run at (0,69) width 52: "####" - RenderBR {BR} at (52,87) size 0x0 - RenderText {#text} at (0,92) size 44x23 - text run at (0,92) width 44: "$$$$" - RenderBR {BR} at (44,110) size 0x0 - RenderText {#text} at (0,115) size 52x23 - text run at (0,115) width 52: "%%%%" - RenderBR {BR} at (52,133) size 0x0 - RenderText {#text} at (0,138) size 40x23 - text run at (0,138) width 40: "&&&&" - RenderBR {BR} at (40,156) size 0x0 - RenderText {#text} at (0,161) size 28x23 - text run at (0,161) width 28: "''''" - RenderBR {BR} at (28,179) size 0x0 - RenderText {#text} at (0,184) size 24x23 - text run at (0,184) width 24: "((((" - RenderBR {BR} at (24,202) size 0x0 - RenderText {#text} at (0,207) size 24x23 - text run at (0,207) width 24: "))))" - RenderBR {BR} at (24,225) size 0x0 - RenderText {#text} at (0,230) size 32x23 - text run at (0,230) width 32: "****" - RenderBR {BR} at (32,248) size 0x0 - RenderText {#text} at (0,253) size 40x23 - text run at (0,253) width 40: "++++" - RenderBR {BR} at (40,271) size 0x0 - RenderText {#text} at (0,276) size 28x23 - text run at (0,276) width 28: ",,,," - RenderBR {BR} at (28,294) size 0x0 - RenderText {#text} at (0,299) size 40x23 - text run at (0,299) width 40: "----" - RenderBR {BR} at (40,317) size 0x0 - RenderText {#text} at (0,322) size 28x23 - text run at (0,322) width 28: "...." - RenderBR {BR} at (28,340) size 0x0 - RenderText {#text} at (0,345) size 32x23 - text run at (0,345) width 32: "////" - RenderBR {BR} at (32,363) size 0x0 - RenderText {#text} at (0,368) size 40x23 - text run at (0,368) width 40: "0000" - RenderBR {BR} at (40,386) size 0x0 - RenderText {#text} at (0,391) size 40x23 - text run at (0,391) width 40: "1111" - RenderBR {BR} at (40,409) size 0x0 - RenderText {#text} at (0,414) size 40x23 - text run at (0,414) width 40: "2222" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x23 - text run at (0,437) width 40: "3333" - RenderBR {BR} at (40,455) size 0x0 - RenderText {#text} at (0,460) size 40x23 - text run at (0,460) width 40: "4444" - RenderBR {BR} at (40,478) size 0x0 - RenderText {#text} at (0,483) size 40x23 - text run at (0,483) width 40: "5555" - RenderBR {BR} at (40,501) size 0x0 - RenderText {#text} at (0,506) size 40x23 - text run at (0,506) width 40: "6666" - RenderBR {BR} at (40,524) size 0x0 - RenderText {#text} at (0,529) size 40x23 - text run at (0,529) width 40: "7777" - RenderBR {BR} at (40,547) size 0x0 - RenderText {#text} at (0,552) size 40x23 - text run at (0,552) width 40: "8888" - RenderBR {BR} at (40,570) size 0x0 - RenderText {#text} at (0,575) size 40x23 - text run at (0,575) width 40: "9999" - RenderBR {BR} at (40,593) size 0x0 - RenderText {#text} at (0,598) size 28x23 - text run at (0,598) width 28: "::::" - RenderBR {BR} at (28,616) size 0x0 - RenderText {#text} at (0,621) size 28x23 - text run at (0,621) width 28: ";;;;" - RenderBR {BR} at (28,639) size 0x0 - RenderText {#text} at (0,644) size 40x23 - text run at (0,644) width 40: "<<<<" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,667) size 40x23 - text run at (0,667) width 40: "====" - RenderBR {BR} at (40,685) size 0x0 - RenderText {#text} at (0,690) size 40x23 - text run at (0,690) width 40: ">>>>" - RenderBR {BR} at (40,708) size 0x0 - RenderText {#text} at (0,713) size 36x23 - text run at (0,713) width 36: "????" - RenderBR {BR} at (36,731) size 0x0 - RenderText {#text} at (0,736) size 60x23 - text run at (0,736) width 60: "@@@@" - RenderBR {BR} at (60,754) size 0x0 - RenderText {#text} at (0,759) size 48x23 - text run at (0,759) width 48: "AAAA" - RenderBR {BR} at (48,777) size 0x0 - RenderText {#text} at (0,782) size 40x23 - text run at (0,782) width 40: "BBBB" - RenderBR {BR} at (40,800) size 0x0 - RenderText {#text} at (0,805) size 40x23 - text run at (0,805) width 40: "CCCC" - RenderBR {BR} at (40,823) size 0x0 - RenderText {#text} at (0,828) size 48x23 - text run at (0,828) width 48: "DDDD" - RenderBR {BR} at (48,846) size 0x0 - RenderText {#text} at (0,851) size 40x23 - text run at (0,851) width 40: "EEEE" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x23 - text run at (0,874) width 40: "FFFF" - RenderBR {BR} at (40,892) size 0x0 - RenderText {#text} at (0,897) size 44x23 - text run at (0,897) width 44: "GGGG" - RenderBR {BR} at (44,915) size 0x0 - RenderText {#text} at (0,920) size 48x23 - text run at (0,920) width 48: "HHHH" - RenderBR {BR} at (48,938) size 0x0 - RenderText {#text} at (0,943) size 36x23 - text run at (0,943) width 36: "IIII" - RenderBR {BR} at (36,961) size 0x0 - RenderText {#text} at (0,966) size 44x23 - text run at (0,966) width 44: "JJJJ" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,989) size 40x23 - text run at (0,989) width 40: "KKKK" - RenderBR {BR} at (40,1007) size 0x0 - RenderText {#text} at (0,1012) size 36x23 - text run at (0,1012) width 36: "LLLL" - RenderBR {BR} at (36,1030) size 0x0 - RenderText {#text} at (0,1035) size 56x23 - text run at (0,1035) width 56: "MMMM" - RenderBR {BR} at (56,1053) size 0x0 - RenderText {#text} at (0,1058) size 52x23 - text run at (0,1058) width 52: "NNNN" - RenderBR {BR} at (52,1076) size 0x0 - RenderText {#text} at (0,1081) size 52x23 - text run at (0,1081) width 52: "OOOO" - RenderBR {BR} at (52,1099) size 0x0 - RenderText {#text} at (0,1104) size 36x23 - text run at (0,1104) width 36: "PPPP" - RenderBR {BR} at (36,1122) size 0x0 - RenderText {#text} at (0,1127) size 56x23 - text run at (0,1127) width 56: "QQQQ" - RenderBR {BR} at (56,1145) size 0x0 - RenderText {#text} at (0,1150) size 40x23 - text run at (0,1150) width 40: "RRRR" - RenderBR {BR} at (40,1168) size 0x0 - RenderText {#text} at (0,1173) size 44x23 - text run at (0,1173) width 44: "SSSS" - RenderBR {BR} at (44,1191) size 0x0 - RenderText {#text} at (0,1196) size 44x23 - text run at (0,1196) width 44: "TTTT" - RenderBR {BR} at (44,1214) size 0x0 - RenderText {#text} at (0,1219) size 48x23 - text run at (0,1219) width 48: "UUUU" - RenderBR {BR} at (48,1237) size 0x0 - RenderText {#text} at (0,1242) size 44x23 - text run at (0,1242) width 44: "VVVV" - RenderBR {BR} at (44,1260) size 0x0 - RenderText {#text} at (0,1265) size 68x23 - text run at (0,1265) width 68: "WWWW" - RenderBR {BR} at (68,1283) size 0x0 - RenderText {#text} at (0,1288) size 48x23 - text run at (0,1288) width 48: "XXXX" - RenderBR {BR} at (48,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x23 - text run at (0,1311) width 40: "YYYY" - RenderBR {BR} at (40,1329) size 0x0 - RenderText {#text} at (0,1334) size 44x23 - text run at (0,1334) width 44: "ZZZZ" - RenderBR {BR} at (44,1352) size 0x0 - RenderText {#text} at (0,1357) size 24x23 - text run at (0,1357) width 24: "[[[[" - RenderBR {BR} at (24,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x23 - text run at (0,1380) width 36: "\\\\\\\\" - RenderBR {BR} at (36,1398) size 0x0 - RenderText {#text} at (0,1403) size 24x23 - text run at (0,1403) width 24: "]]]]" - RenderBR {BR} at (24,1421) size 0x0 - RenderText {#text} at (0,1426) size 40x23 - text run at (0,1426) width 40: "^^^^" - RenderBR {BR} at (40,1444) size 0x0 - RenderText {#text} at (0,1449) size 40x23 - text run at (0,1449) width 40: "____" - RenderBR {BR} at (40,1467) size 0x0 - RenderText {#text} at (0,1472) size 36x23 - text run at (0,1472) width 36: "````" - RenderBR {BR} at (36,1490) size 0x0 - RenderText {#text} at (0,1495) size 36x23 - text run at (0,1495) width 36: "aaaa" - RenderBR {BR} at (36,1513) size 0x0 - RenderText {#text} at (0,1518) size 36x23 - text run at (0,1518) width 36: "bbbb" - RenderBR {BR} at (36,1536) size 0x0 - RenderText {#text} at (0,1541) size 32x23 - text run at (0,1541) width 32: "cccc" - RenderBR {BR} at (32,1559) size 0x0 - RenderText {#text} at (0,1564) size 36x23 - text run at (0,1564) width 36: "dddd" - RenderBR {BR} at (36,1582) size 0x0 - RenderText {#text} at (0,1587) size 36x23 - text run at (0,1587) width 36: "eeee" - RenderBR {BR} at (36,1605) size 0x0 - RenderText {#text} at (0,1610) size 32x23 - text run at (0,1610) width 32: "ffff" - RenderBR {BR} at (32,1628) size 0x0 - RenderText {#text} at (0,1633) size 32x23 - text run at (0,1633) width 32: "gggg" - RenderBR {BR} at (32,1651) size 0x0 - RenderText {#text} at (0,1656) size 36x23 - text run at (0,1656) width 36: "hhhh" - RenderBR {BR} at (36,1674) size 0x0 - RenderText {#text} at (0,1679) size 16x23 - text run at (0,1679) width 16: "iiii" - RenderBR {BR} at (16,1697) size 0x0 - RenderText {#text} at (0,1702) size 24x23 - text run at (0,1702) width 24: "jjjj" - RenderBR {BR} at (24,1720) size 0x0 - RenderText {#text} at (0,1725) size 36x23 - text run at (0,1725) width 36: "kkkk" - RenderBR {BR} at (36,1743) size 0x0 - RenderText {#text} at (0,1748) size 16x23 - text run at (0,1748) width 16: "llll" - RenderBR {BR} at (16,1766) size 0x0 - RenderText {#text} at (0,1771) size 48x23 - text run at (0,1771) width 48: "mmmm" - RenderBR {BR} at (48,1789) size 0x0 - RenderText {#text} at (0,1794) size 32x23 - text run at (0,1794) width 32: "nnnn" - RenderBR {BR} at (32,1812) size 0x0 - RenderText {#text} at (0,1817) size 32x23 - text run at (0,1817) width 32: "oooo" - RenderBR {BR} at (32,1835) size 0x0 - RenderText {#text} at (0,1840) size 36x23 - text run at (0,1840) width 36: "pppp" - RenderBR {BR} at (36,1858) size 0x0 - RenderText {#text} at (0,1863) size 32x23 - text run at (0,1863) width 32: "qqqq" - RenderBR {BR} at (32,1881) size 0x0 - RenderText {#text} at (0,1886) size 32x23 - text run at (0,1886) width 32: "rrrr" - RenderBR {BR} at (32,1904) size 0x0 - RenderText {#text} at (0,1909) size 32x23 - text run at (0,1909) width 32: "ssss" - RenderBR {BR} at (32,1927) size 0x0 - RenderText {#text} at (0,1932) size 32x23 - text run at (0,1932) width 32: "tttt" - RenderBR {BR} at (32,1950) size 0x0 - RenderText {#text} at (0,1955) size 32x23 - text run at (0,1955) width 32: "uuuu" - RenderBR {BR} at (32,1973) size 0x0 - RenderText {#text} at (0,1978) size 32x23 - text run at (0,1978) width 32: "vvvv" - RenderBR {BR} at (32,1996) size 0x0 - RenderText {#text} at (0,2001) size 44x23 - text run at (0,2001) width 44: "wwww" - RenderBR {BR} at (44,2019) size 0x0 - RenderText {#text} at (0,2024) size 36x23 - text run at (0,2024) width 36: "xxxx" - RenderBR {BR} at (36,2042) size 0x0 - RenderText {#text} at (0,2047) size 36x23 - text run at (0,2047) width 36: "yyyy" - RenderBR {BR} at (36,2065) size 0x0 - RenderText {#text} at (0,2070) size 36x23 - text run at (0,2070) width 36: "zzzz" - RenderBR {BR} at (36,2088) size 0x0 - RenderText {#text} at (0,2093) size 24x23 - text run at (0,2093) width 24: "{{{{" - RenderBR {BR} at (24,2111) size 0x0 - RenderText {#text} at (0,2116) size 28x23 - text run at (0,2116) width 28: "||||" - RenderBR {BR} at (28,2134) size 0x0 - RenderText {#text} at (0,2139) size 24x23 - text run at (0,2139) width 24: "}}}}" - RenderBR {BR} at (24,2157) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,2178) size 769x2162 - RenderInline {I} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 20x23 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,18) size 0x0 - RenderText {#text} at (0,23) size 16x23 - text run at (0,23) width 16: "!!!!" - RenderBR {BR} at (16,41) size 0x0 - RenderText {#text} at (0,46) size 28x23 - text run at (0,46) width 28: "\"\"\"\"" - RenderBR {BR} at (28,64) size 0x0 - RenderText {#text} at (0,69) size 52x23 - text run at (0,69) width 52: "####" - RenderBR {BR} at (52,87) size 0x0 - RenderText {#text} at (0,92) size 44x23 - text run at (0,92) width 44: "$$$$" - RenderBR {BR} at (44,110) size 0x0 - RenderText {#text} at (0,115) size 52x23 - text run at (0,115) width 52: "%%%%" - RenderBR {BR} at (52,133) size 0x0 - RenderText {#text} at (0,138) size 40x23 - text run at (0,138) width 40: "&&&&" - RenderBR {BR} at (40,156) size 0x0 - RenderText {#text} at (0,161) size 24x23 - text run at (0,161) width 24: "''''" - RenderBR {BR} at (24,179) size 0x0 - RenderText {#text} at (0,184) size 24x23 - text run at (0,184) width 24: "((((" - RenderBR {BR} at (24,202) size 0x0 - RenderText {#text} at (0,207) size 24x23 - text run at (0,207) width 24: "))))" - RenderBR {BR} at (24,225) size 0x0 - RenderText {#text} at (0,230) size 32x23 - text run at (0,230) width 32: "****" - RenderBR {BR} at (32,248) size 0x0 - RenderText {#text} at (0,253) size 32x23 - text run at (0,253) width 32: "++++" - RenderBR {BR} at (32,271) size 0x0 - RenderText {#text} at (0,276) size 16x23 - text run at (0,276) width 16: ",,,," - RenderBR {BR} at (16,294) size 0x0 - RenderText {#text} at (0,299) size 28x23 - text run at (0,299) width 28: "----" - RenderBR {BR} at (28,317) size 0x0 - RenderText {#text} at (0,322) size 16x23 - text run at (0,322) width 16: "...." - RenderBR {BR} at (16,340) size 0x0 - RenderText {#text} at (0,345) size 32x23 - text run at (0,345) width 32: "////" - RenderBR {BR} at (32,363) size 0x0 - RenderText {#text} at (0,368) size 40x23 - text run at (0,368) width 40: "0000" - RenderBR {BR} at (40,386) size 0x0 - RenderText {#text} at (0,391) size 28x23 - text run at (0,391) width 28: "1111" - RenderBR {BR} at (28,409) size 0x0 - RenderText {#text} at (0,414) size 40x23 - text run at (0,414) width 40: "2222" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x23 - text run at (0,437) width 40: "3333" - RenderBR {BR} at (40,455) size 0x0 - RenderText {#text} at (0,460) size 40x23 - text run at (0,460) width 40: "4444" - RenderBR {BR} at (40,478) size 0x0 - RenderText {#text} at (0,483) size 40x23 - text run at (0,483) width 40: "5555" - RenderBR {BR} at (40,501) size 0x0 - RenderText {#text} at (0,506) size 40x23 - text run at (0,506) width 40: "6666" - RenderBR {BR} at (40,524) size 0x0 - RenderText {#text} at (0,529) size 40x23 - text run at (0,529) width 40: "7777" - RenderBR {BR} at (40,547) size 0x0 - RenderText {#text} at (0,552) size 40x23 - text run at (0,552) width 40: "8888" - RenderBR {BR} at (40,570) size 0x0 - RenderText {#text} at (0,575) size 40x23 - text run at (0,575) width 40: "9999" - RenderBR {BR} at (40,593) size 0x0 - RenderText {#text} at (0,598) size 20x23 - text run at (0,598) width 20: "::::" - RenderBR {BR} at (20,616) size 0x0 - RenderText {#text} at (0,621) size 20x23 - text run at (0,621) width 20: ";;;;" - RenderBR {BR} at (20,639) size 0x0 - RenderText {#text} at (0,644) size 24x23 - text run at (0,644) width 24: "<<<<" - RenderBR {BR} at (24,662) size 0x0 - RenderText {#text} at (0,667) size 32x23 - text run at (0,667) width 32: "====" - RenderBR {BR} at (32,685) size 0x0 - RenderText {#text} at (0,690) size 24x23 - text run at (0,690) width 24: ">>>>" - RenderBR {BR} at (24,708) size 0x0 - RenderText {#text} at (0,713) size 32x23 - text run at (0,713) width 32: "????" - RenderBR {BR} at (32,731) size 0x0 - RenderText {#text} at (0,736) size 60x23 - text run at (0,736) width 60: "@@@@" - RenderBR {BR} at (60,754) size 0x0 - RenderText {#text} at (0,759) size 48x23 - text run at (0,759) width 48: "AAAA" - RenderBR {BR} at (48,777) size 0x0 - RenderText {#text} at (0,782) size 40x23 - text run at (0,782) width 40: "BBBB" - RenderBR {BR} at (40,800) size 0x0 - RenderText {#text} at (0,805) size 40x23 - text run at (0,805) width 40: "CCCC" - RenderBR {BR} at (40,823) size 0x0 - RenderText {#text} at (0,828) size 48x23 - text run at (0,828) width 48: "DDDD" - RenderBR {BR} at (48,846) size 0x0 - RenderText {#text} at (0,851) size 40x23 - text run at (0,851) width 40: "EEEE" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x23 - text run at (0,874) width 40: "FFFF" - RenderBR {BR} at (40,892) size 0x0 - RenderText {#text} at (0,897) size 44x23 - text run at (0,897) width 44: "GGGG" - RenderBR {BR} at (44,915) size 0x0 - RenderText {#text} at (0,920) size 48x23 - text run at (0,920) width 48: "HHHH" - RenderBR {BR} at (48,938) size 0x0 - RenderText {#text} at (0,943) size 36x23 - text run at (0,943) width 36: "IIII" - RenderBR {BR} at (36,961) size 0x0 - RenderText {#text} at (0,966) size 44x23 - text run at (0,966) width 44: "JJJJ" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,989) size 40x23 - text run at (0,989) width 40: "KKKK" - RenderBR {BR} at (40,1007) size 0x0 - RenderText {#text} at (0,1012) size 36x23 - text run at (0,1012) width 36: "LLLL" - RenderBR {BR} at (36,1030) size 0x0 - RenderText {#text} at (0,1035) size 56x23 - text run at (0,1035) width 56: "MMMM" - RenderBR {BR} at (56,1053) size 0x0 - RenderText {#text} at (0,1058) size 52x23 - text run at (0,1058) width 52: "NNNN" - RenderBR {BR} at (52,1076) size 0x0 - RenderText {#text} at (0,1081) size 52x23 - text run at (0,1081) width 52: "OOOO" - RenderBR {BR} at (52,1099) size 0x0 - RenderText {#text} at (0,1104) size 32x23 - text run at (0,1104) width 32: "PPPP" - RenderBR {BR} at (32,1122) size 0x0 - RenderText {#text} at (0,1127) size 56x23 - text run at (0,1127) width 56: "QQQQ" - RenderBR {BR} at (56,1145) size 0x0 - RenderText {#text} at (0,1150) size 40x23 - text run at (0,1150) width 40: "RRRR" - RenderBR {BR} at (40,1168) size 0x0 - RenderText {#text} at (0,1173) size 44x23 - text run at (0,1173) width 44: "SSSS" - RenderBR {BR} at (44,1191) size 0x0 - RenderText {#text} at (0,1196) size 44x23 - text run at (0,1196) width 44: "TTTT" - RenderBR {BR} at (44,1214) size 0x0 - RenderText {#text} at (0,1219) size 48x23 - text run at (0,1219) width 48: "UUUU" - RenderBR {BR} at (48,1237) size 0x0 - RenderText {#text} at (0,1242) size 40x23 - text run at (0,1242) width 40: "VVVV" - RenderBR {BR} at (40,1260) size 0x0 - RenderText {#text} at (0,1265) size 68x23 - text run at (0,1265) width 68: "WWWW" - RenderBR {BR} at (68,1283) size 0x0 - RenderText {#text} at (0,1288) size 48x23 - text run at (0,1288) width 48: "XXXX" - RenderBR {BR} at (48,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x23 - text run at (0,1311) width 40: "YYYY" - RenderBR {BR} at (40,1329) size 0x0 - RenderText {#text} at (0,1334) size 44x23 - text run at (0,1334) width 44: "ZZZZ" - RenderBR {BR} at (44,1352) size 0x0 - RenderText {#text} at (0,1357) size 24x23 - text run at (0,1357) width 24: "[[[[" - RenderBR {BR} at (24,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x23 - text run at (0,1380) width 36: "\\\\\\\\" - RenderBR {BR} at (36,1398) size 0x0 - RenderText {#text} at (0,1403) size 24x23 - text run at (0,1403) width 24: "]]]]" - RenderBR {BR} at (24,1421) size 0x0 - RenderText {#text} at (0,1426) size 36x23 - text run at (0,1426) width 36: "^^^^" - RenderBR {BR} at (36,1444) size 0x0 - RenderText {#text} at (0,1449) size 40x23 - text run at (0,1449) width 40: "____" - RenderBR {BR} at (40,1467) size 0x0 - RenderText {#text} at (0,1472) size 36x23 - text run at (0,1472) width 36: "````" - RenderBR {BR} at (36,1490) size 0x0 - RenderText {#text} at (0,1495) size 32x23 - text run at (0,1495) width 32: "aaaa" - RenderBR {BR} at (32,1513) size 0x0 - RenderText {#text} at (0,1518) size 36x23 - text run at (0,1518) width 36: "bbbb" - RenderBR {BR} at (36,1536) size 0x0 - RenderText {#text} at (0,1541) size 32x23 - text run at (0,1541) width 32: "cccc" - RenderBR {BR} at (32,1559) size 0x0 - RenderText {#text} at (0,1564) size 36x23 - text run at (0,1564) width 36: "dddd" - RenderBR {BR} at (36,1582) size 0x0 - RenderText {#text} at (0,1587) size 36x23 - text run at (0,1587) width 36: "eeee" - RenderBR {BR} at (36,1605) size 0x0 - RenderText {#text} at (0,1610) size 32x23 - text run at (0,1610) width 32: "ffff" - RenderBR {BR} at (32,1628) size 0x0 - RenderText {#text} at (0,1633) size 32x23 - text run at (0,1633) width 32: "gggg" - RenderBR {BR} at (32,1651) size 0x0 - RenderText {#text} at (0,1656) size 36x23 - text run at (0,1656) width 36: "hhhh" - RenderBR {BR} at (36,1674) size 0x0 - RenderText {#text} at (0,1679) size 16x23 - text run at (0,1679) width 16: "iiii" - RenderBR {BR} at (16,1697) size 0x0 - RenderText {#text} at (0,1702) size 24x23 - text run at (0,1702) width 24: "jjjj" - RenderBR {BR} at (24,1720) size 0x0 - RenderText {#text} at (0,1725) size 36x23 - text run at (0,1725) width 36: "kkkk" - RenderBR {BR} at (36,1743) size 0x0 - RenderText {#text} at (0,1748) size 16x23 - text run at (0,1748) width 16: "llll" - RenderBR {BR} at (16,1766) size 0x0 - RenderText {#text} at (0,1771) size 48x23 - text run at (0,1771) width 48: "mmmm" - RenderBR {BR} at (48,1789) size 0x0 - RenderText {#text} at (0,1794) size 32x23 - text run at (0,1794) width 32: "nnnn" - RenderBR {BR} at (32,1812) size 0x0 - RenderText {#text} at (0,1817) size 32x23 - text run at (0,1817) width 32: "oooo" - RenderBR {BR} at (32,1835) size 0x0 - RenderText {#text} at (0,1840) size 36x23 - text run at (0,1840) width 36: "pppp" - RenderBR {BR} at (36,1858) size 0x0 - RenderText {#text} at (0,1863) size 32x23 - text run at (0,1863) width 32: "qqqq" - RenderBR {BR} at (32,1881) size 0x0 - RenderText {#text} at (0,1886) size 32x23 - text run at (0,1886) width 32: "rrrr" - RenderBR {BR} at (32,1904) size 0x0 - RenderText {#text} at (0,1909) size 32x23 - text run at (0,1909) width 32: "ssss" - RenderBR {BR} at (32,1927) size 0x0 - RenderText {#text} at (0,1932) size 32x23 - text run at (0,1932) width 32: "tttt" - RenderBR {BR} at (32,1950) size 0x0 - RenderText {#text} at (0,1955) size 32x23 - text run at (0,1955) width 32: "uuuu" - RenderBR {BR} at (32,1973) size 0x0 - RenderText {#text} at (0,1978) size 32x23 - text run at (0,1978) width 32: "vvvv" - RenderBR {BR} at (32,1996) size 0x0 - RenderText {#text} at (0,2001) size 44x23 - text run at (0,2001) width 44: "wwww" - RenderBR {BR} at (44,2019) size 0x0 - RenderText {#text} at (0,2024) size 36x23 - text run at (0,2024) width 36: "xxxx" - RenderBR {BR} at (36,2042) size 0x0 - RenderText {#text} at (0,2047) size 32x23 - text run at (0,2047) width 32: "yyyy" - RenderBR {BR} at (32,2065) size 0x0 - RenderText {#text} at (0,2070) size 36x23 - text run at (0,2070) width 36: "zzzz" - RenderBR {BR} at (36,2088) size 0x0 - RenderText {#text} at (0,2093) size 24x23 - text run at (0,2093) width 24: "{{{{" - RenderBR {BR} at (24,2111) size 0x0 - RenderText {#text} at (0,2116) size 28x23 - text run at (0,2116) width 28: "||||" - RenderBR {BR} at (28,2134) size 0x0 - RenderText {#text} at (0,2139) size 24x23 - text run at (0,2139) width 24: "}}}}" - RenderBR {BR} at (24,2157) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,6534) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,6534) size 769x2162 - RenderInline {FONT} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 68x2162 - RenderInline {I} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 28x23 - text run at (0,0) width 28: " " - RenderBR {BR} at (28,18) size 0x0 - RenderText {#text} at (0,23) size 16x23 - text run at (0,23) width 16: "!!!!" - RenderBR {BR} at (16,41) size 0x0 - RenderText {#text} at (0,46) size 28x23 - text run at (0,46) width 28: "\"\"\"\"" - RenderBR {BR} at (28,64) size 0x0 - RenderText {#text} at (0,69) size 52x23 - text run at (0,69) width 52: "####" - RenderBR {BR} at (52,87) size 0x0 - RenderText {#text} at (0,92) size 44x23 - text run at (0,92) width 44: "$$$$" - RenderBR {BR} at (44,110) size 0x0 - RenderText {#text} at (0,115) size 52x23 - text run at (0,115) width 52: "%%%%" - RenderBR {BR} at (52,133) size 0x0 - RenderText {#text} at (0,138) size 40x23 - text run at (0,138) width 40: "&&&&" - RenderBR {BR} at (40,156) size 0x0 - RenderText {#text} at (0,161) size 28x23 - text run at (0,161) width 28: "''''" - RenderBR {BR} at (28,179) size 0x0 - RenderText {#text} at (0,184) size 24x23 - text run at (0,184) width 24: "((((" - RenderBR {BR} at (24,202) size 0x0 - RenderText {#text} at (0,207) size 24x23 - text run at (0,207) width 24: "))))" - RenderBR {BR} at (24,225) size 0x0 - RenderText {#text} at (0,230) size 32x23 - text run at (0,230) width 32: "****" - RenderBR {BR} at (32,248) size 0x0 - RenderText {#text} at (0,253) size 40x23 - text run at (0,253) width 40: "++++" - RenderBR {BR} at (40,271) size 0x0 - RenderText {#text} at (0,276) size 28x23 - text run at (0,276) width 28: ",,,," - RenderBR {BR} at (28,294) size 0x0 - RenderText {#text} at (0,299) size 40x23 - text run at (0,299) width 40: "----" - RenderBR {BR} at (40,317) size 0x0 - RenderText {#text} at (0,322) size 28x23 - text run at (0,322) width 28: "...." - RenderBR {BR} at (28,340) size 0x0 - RenderText {#text} at (0,345) size 32x23 - text run at (0,345) width 32: "////" - RenderBR {BR} at (32,363) size 0x0 - RenderText {#text} at (0,368) size 40x23 - text run at (0,368) width 40: "0000" - RenderBR {BR} at (40,386) size 0x0 - RenderText {#text} at (0,391) size 40x23 - text run at (0,391) width 40: "1111" - RenderBR {BR} at (40,409) size 0x0 - RenderText {#text} at (0,414) size 40x23 - text run at (0,414) width 40: "2222" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x23 - text run at (0,437) width 40: "3333" - RenderBR {BR} at (40,455) size 0x0 - RenderText {#text} at (0,460) size 40x23 - text run at (0,460) width 40: "4444" - RenderBR {BR} at (40,478) size 0x0 - RenderText {#text} at (0,483) size 40x23 - text run at (0,483) width 40: "5555" - RenderBR {BR} at (40,501) size 0x0 - RenderText {#text} at (0,506) size 40x23 - text run at (0,506) width 40: "6666" - RenderBR {BR} at (40,524) size 0x0 - RenderText {#text} at (0,529) size 40x23 - text run at (0,529) width 40: "7777" - RenderBR {BR} at (40,547) size 0x0 - RenderText {#text} at (0,552) size 40x23 - text run at (0,552) width 40: "8888" - RenderBR {BR} at (40,570) size 0x0 - RenderText {#text} at (0,575) size 40x23 - text run at (0,575) width 40: "9999" - RenderBR {BR} at (40,593) size 0x0 - RenderText {#text} at (0,598) size 28x23 - text run at (0,598) width 28: "::::" - RenderBR {BR} at (28,616) size 0x0 - RenderText {#text} at (0,621) size 28x23 - text run at (0,621) width 28: ";;;;" - RenderBR {BR} at (28,639) size 0x0 - RenderText {#text} at (0,644) size 40x23 - text run at (0,644) width 40: "<<<<" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,667) size 40x23 - text run at (0,667) width 40: "====" - RenderBR {BR} at (40,685) size 0x0 - RenderText {#text} at (0,690) size 40x23 - text run at (0,690) width 40: ">>>>" - RenderBR {BR} at (40,708) size 0x0 - RenderText {#text} at (0,713) size 36x23 - text run at (0,713) width 36: "????" - RenderBR {BR} at (36,731) size 0x0 - RenderText {#text} at (0,736) size 60x23 - text run at (0,736) width 60: "@@@@" - RenderBR {BR} at (60,754) size 0x0 - RenderText {#text} at (0,759) size 48x23 - text run at (0,759) width 48: "AAAA" - RenderBR {BR} at (48,777) size 0x0 - RenderText {#text} at (0,782) size 40x23 - text run at (0,782) width 40: "BBBB" - RenderBR {BR} at (40,800) size 0x0 - RenderText {#text} at (0,805) size 40x23 - text run at (0,805) width 40: "CCCC" - RenderBR {BR} at (40,823) size 0x0 - RenderText {#text} at (0,828) size 48x23 - text run at (0,828) width 48: "DDDD" - RenderBR {BR} at (48,846) size 0x0 - RenderText {#text} at (0,851) size 40x23 - text run at (0,851) width 40: "EEEE" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x23 - text run at (0,874) width 40: "FFFF" - RenderBR {BR} at (40,892) size 0x0 - RenderText {#text} at (0,897) size 44x23 - text run at (0,897) width 44: "GGGG" - RenderBR {BR} at (44,915) size 0x0 - RenderText {#text} at (0,920) size 48x23 - text run at (0,920) width 48: "HHHH" - RenderBR {BR} at (48,938) size 0x0 - RenderText {#text} at (0,943) size 36x23 - text run at (0,943) width 36: "IIII" - RenderBR {BR} at (36,961) size 0x0 - RenderText {#text} at (0,966) size 44x23 - text run at (0,966) width 44: "JJJJ" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,989) size 40x23 - text run at (0,989) width 40: "KKKK" - RenderBR {BR} at (40,1007) size 0x0 - RenderText {#text} at (0,1012) size 36x23 - text run at (0,1012) width 36: "LLLL" - RenderBR {BR} at (36,1030) size 0x0 - RenderText {#text} at (0,1035) size 56x23 - text run at (0,1035) width 56: "MMMM" - RenderBR {BR} at (56,1053) size 0x0 - RenderText {#text} at (0,1058) size 52x23 - text run at (0,1058) width 52: "NNNN" - RenderBR {BR} at (52,1076) size 0x0 - RenderText {#text} at (0,1081) size 52x23 - text run at (0,1081) width 52: "OOOO" - RenderBR {BR} at (52,1099) size 0x0 - RenderText {#text} at (0,1104) size 36x23 - text run at (0,1104) width 36: "PPPP" - RenderBR {BR} at (36,1122) size 0x0 - RenderText {#text} at (0,1127) size 56x23 - text run at (0,1127) width 56: "QQQQ" - RenderBR {BR} at (56,1145) size 0x0 - RenderText {#text} at (0,1150) size 40x23 - text run at (0,1150) width 40: "RRRR" - RenderBR {BR} at (40,1168) size 0x0 - RenderText {#text} at (0,1173) size 44x23 - text run at (0,1173) width 44: "SSSS" - RenderBR {BR} at (44,1191) size 0x0 - RenderText {#text} at (0,1196) size 44x23 - text run at (0,1196) width 44: "TTTT" - RenderBR {BR} at (44,1214) size 0x0 - RenderText {#text} at (0,1219) size 48x23 - text run at (0,1219) width 48: "UUUU" - RenderBR {BR} at (48,1237) size 0x0 - RenderText {#text} at (0,1242) size 44x23 - text run at (0,1242) width 44: "VVVV" - RenderBR {BR} at (44,1260) size 0x0 - RenderText {#text} at (0,1265) size 68x23 - text run at (0,1265) width 68: "WWWW" - RenderBR {BR} at (68,1283) size 0x0 - RenderText {#text} at (0,1288) size 48x23 - text run at (0,1288) width 48: "XXXX" - RenderBR {BR} at (48,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x23 - text run at (0,1311) width 40: "YYYY" - RenderBR {BR} at (40,1329) size 0x0 - RenderText {#text} at (0,1334) size 44x23 - text run at (0,1334) width 44: "ZZZZ" - RenderBR {BR} at (44,1352) size 0x0 - RenderText {#text} at (0,1357) size 24x23 - text run at (0,1357) width 24: "[[[[" - RenderBR {BR} at (24,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x23 - text run at (0,1380) width 36: "\\\\\\\\" - RenderBR {BR} at (36,1398) size 0x0 - RenderText {#text} at (0,1403) size 24x23 - text run at (0,1403) width 24: "]]]]" - RenderBR {BR} at (24,1421) size 0x0 - RenderText {#text} at (0,1426) size 40x23 - text run at (0,1426) width 40: "^^^^" - RenderBR {BR} at (40,1444) size 0x0 - RenderText {#text} at (0,1449) size 40x23 - text run at (0,1449) width 40: "____" - RenderBR {BR} at (40,1467) size 0x0 - RenderText {#text} at (0,1472) size 36x23 - text run at (0,1472) width 36: "````" - RenderBR {BR} at (36,1490) size 0x0 - RenderText {#text} at (0,1495) size 36x23 - text run at (0,1495) width 36: "aaaa" - RenderBR {BR} at (36,1513) size 0x0 - RenderText {#text} at (0,1518) size 36x23 - text run at (0,1518) width 36: "bbbb" - RenderBR {BR} at (36,1536) size 0x0 - RenderText {#text} at (0,1541) size 32x23 - text run at (0,1541) width 32: "cccc" - RenderBR {BR} at (32,1559) size 0x0 - RenderText {#text} at (0,1564) size 36x23 - text run at (0,1564) width 36: "dddd" - RenderBR {BR} at (36,1582) size 0x0 - RenderText {#text} at (0,1587) size 36x23 - text run at (0,1587) width 36: "eeee" - RenderBR {BR} at (36,1605) size 0x0 - RenderText {#text} at (0,1610) size 32x23 - text run at (0,1610) width 32: "ffff" - RenderBR {BR} at (32,1628) size 0x0 - RenderText {#text} at (0,1633) size 32x23 - text run at (0,1633) width 32: "gggg" - RenderBR {BR} at (32,1651) size 0x0 - RenderText {#text} at (0,1656) size 36x23 - text run at (0,1656) width 36: "hhhh" - RenderBR {BR} at (36,1674) size 0x0 - RenderText {#text} at (0,1679) size 16x23 - text run at (0,1679) width 16: "iiii" - RenderBR {BR} at (16,1697) size 0x0 - RenderText {#text} at (0,1702) size 24x23 - text run at (0,1702) width 24: "jjjj" - RenderBR {BR} at (24,1720) size 0x0 - RenderText {#text} at (0,1725) size 36x23 - text run at (0,1725) width 36: "kkkk" - RenderBR {BR} at (36,1743) size 0x0 - RenderText {#text} at (0,1748) size 16x23 - text run at (0,1748) width 16: "llll" - RenderBR {BR} at (16,1766) size 0x0 - RenderText {#text} at (0,1771) size 48x23 - text run at (0,1771) width 48: "mmmm" - RenderBR {BR} at (48,1789) size 0x0 - RenderText {#text} at (0,1794) size 32x23 - text run at (0,1794) width 32: "nnnn" - RenderBR {BR} at (32,1812) size 0x0 - RenderText {#text} at (0,1817) size 32x23 - text run at (0,1817) width 32: "oooo" - RenderBR {BR} at (32,1835) size 0x0 - RenderText {#text} at (0,1840) size 36x23 - text run at (0,1840) width 36: "pppp" - RenderBR {BR} at (36,1858) size 0x0 - RenderText {#text} at (0,1863) size 32x23 - text run at (0,1863) width 32: "qqqq" - RenderBR {BR} at (32,1881) size 0x0 - RenderText {#text} at (0,1886) size 32x23 - text run at (0,1886) width 32: "rrrr" - RenderBR {BR} at (32,1904) size 0x0 - RenderText {#text} at (0,1909) size 32x23 - text run at (0,1909) width 32: "ssss" - RenderBR {BR} at (32,1927) size 0x0 - RenderText {#text} at (0,1932) size 32x23 - text run at (0,1932) width 32: "tttt" - RenderBR {BR} at (32,1950) size 0x0 - RenderText {#text} at (0,1955) size 32x23 - text run at (0,1955) width 32: "uuuu" - RenderBR {BR} at (32,1973) size 0x0 - RenderText {#text} at (0,1978) size 32x23 - text run at (0,1978) width 32: "vvvv" - RenderBR {BR} at (32,1996) size 0x0 - RenderText {#text} at (0,2001) size 44x23 - text run at (0,2001) width 44: "wwww" - RenderBR {BR} at (44,2019) size 0x0 - RenderText {#text} at (0,2024) size 36x23 - text run at (0,2024) width 36: "xxxx" - RenderBR {BR} at (36,2042) size 0x0 - RenderText {#text} at (0,2047) size 36x23 - text run at (0,2047) width 36: "yyyy" - RenderBR {BR} at (36,2065) size 0x0 - RenderText {#text} at (0,2070) size 36x23 - text run at (0,2070) width 36: "zzzz" - RenderBR {BR} at (36,2088) size 0x0 - RenderText {#text} at (0,2093) size 24x23 - text run at (0,2093) width 24: "{{{{" - RenderBR {BR} at (24,2111) size 0x0 - RenderText {#text} at (0,2116) size 28x23 - text run at (0,2116) width 28: "||||" - RenderBR {BR} at (28,2134) size 0x0 - RenderText {#text} at (0,2139) size 24x23 - text run at (0,2139) width 24: "}}}}" - RenderBR {BR} at (24,2157) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.checksum deleted file mode 100644 index b2b7942..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -37b51492d310268c4a24a0e89a46e151
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.png Binary files differdeleted file mode 100644 index 9f1b41f..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.txt deleted file mode 100644 index 9e5457c..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x6840 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x6840 - RenderBlock {HTML} at (0,0) size 785x6840 - RenderBody {BODY} at (8,8) size 769x6816 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderInline {FONT} at (0,0) size 40x1692 - RenderText {#text} at (0,0) size 40x18 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,18) size 40x18 - text run at (0,18) width 40: "!!!!" - RenderBR {BR} at (40,32) size 0x0 - RenderText {#text} at (0,36) size 40x18 - text run at (0,36) width 40: "\"\"\"\"" - RenderBR {BR} at (40,50) size 0x0 - RenderText {#text} at (0,54) size 40x18 - text run at (0,54) width 40: "####" - RenderBR {BR} at (40,68) size 0x0 - RenderText {#text} at (0,72) size 40x18 - text run at (0,72) width 40: "$$$$" - RenderBR {BR} at (40,86) size 0x0 - RenderText {#text} at (0,90) size 40x18 - text run at (0,90) width 40: "%%%%" - RenderBR {BR} at (40,104) size 0x0 - RenderText {#text} at (0,108) size 40x18 - text run at (0,108) width 40: "&&&&" - RenderBR {BR} at (40,122) size 0x0 - RenderText {#text} at (0,126) size 40x18 - text run at (0,126) width 40: "''''" - RenderBR {BR} at (40,140) size 0x0 - RenderText {#text} at (0,144) size 40x18 - text run at (0,144) width 40: "((((" - RenderBR {BR} at (40,158) size 0x0 - RenderText {#text} at (0,162) size 40x18 - text run at (0,162) width 40: "))))" - RenderBR {BR} at (40,176) size 0x0 - RenderText {#text} at (0,180) size 40x18 - text run at (0,180) width 40: "****" - RenderBR {BR} at (40,194) size 0x0 - RenderText {#text} at (0,198) size 40x18 - text run at (0,198) width 40: "++++" - RenderBR {BR} at (40,212) size 0x0 - RenderText {#text} at (0,216) size 40x18 - text run at (0,216) width 40: ",,,," - RenderBR {BR} at (40,230) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,248) size 0x0 - RenderText {#text} at (0,252) size 40x18 - text run at (0,252) width 40: "...." - RenderBR {BR} at (40,266) size 0x0 - RenderText {#text} at (0,270) size 40x18 - text run at (0,270) width 40: "////" - RenderBR {BR} at (40,284) size 0x0 - RenderText {#text} at (0,288) size 40x18 - text run at (0,288) width 40: "0000" - RenderBR {BR} at (40,302) size 0x0 - RenderText {#text} at (0,306) size 40x18 - text run at (0,306) width 40: "1111" - RenderBR {BR} at (40,320) size 0x0 - RenderText {#text} at (0,324) size 40x18 - text run at (0,324) width 40: "2222" - RenderBR {BR} at (40,338) size 0x0 - RenderText {#text} at (0,342) size 40x18 - text run at (0,342) width 40: "3333" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,360) size 40x18 - text run at (0,360) width 40: "4444" - RenderBR {BR} at (40,374) size 0x0 - RenderText {#text} at (0,378) size 40x18 - text run at (0,378) width 40: "5555" - RenderBR {BR} at (40,392) size 0x0 - RenderText {#text} at (0,396) size 40x18 - text run at (0,396) width 40: "6666" - RenderBR {BR} at (40,410) size 0x0 - RenderText {#text} at (0,414) size 40x18 - text run at (0,414) width 40: "7777" - RenderBR {BR} at (40,428) size 0x0 - RenderText {#text} at (0,432) size 40x18 - text run at (0,432) width 40: "8888" - RenderBR {BR} at (40,446) size 0x0 - RenderText {#text} at (0,450) size 40x18 - text run at (0,450) width 40: "9999" - RenderBR {BR} at (40,464) size 0x0 - RenderText {#text} at (0,468) size 40x18 - text run at (0,468) width 40: "::::" - RenderBR {BR} at (40,482) size 0x0 - RenderText {#text} at (0,486) size 40x18 - text run at (0,486) width 40: ";;;;" - RenderBR {BR} at (40,500) size 0x0 - RenderText {#text} at (0,504) size 40x18 - text run at (0,504) width 40: "<<<<" - RenderBR {BR} at (40,518) size 0x0 - RenderText {#text} at (0,522) size 40x18 - text run at (0,522) width 40: "====" - RenderBR {BR} at (40,536) size 0x0 - RenderText {#text} at (0,540) size 40x18 - text run at (0,540) width 40: ">>>>" - RenderBR {BR} at (40,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 40x18 - text run at (0,576) width 40: "@@@@" - RenderBR {BR} at (40,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 40x18 - text run at (0,630) width 40: "CCCC" - RenderBR {BR} at (40,644) size 0x0 - RenderText {#text} at (0,648) size 40x18 - text run at (0,648) width 40: "DDDD" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 40x18 - text run at (0,702) width 40: "GGGG" - RenderBR {BR} at (40,716) size 0x0 - RenderText {#text} at (0,720) size 40x18 - text run at (0,720) width 40: "HHHH" - RenderBR {BR} at (40,734) size 0x0 - RenderText {#text} at (0,738) size 40x18 - text run at (0,738) width 40: "IIII" - RenderBR {BR} at (40,752) size 0x0 - RenderText {#text} at (0,756) size 40x18 - text run at (0,756) width 40: "JJJJ" - RenderBR {BR} at (40,770) size 0x0 - RenderText {#text} at (0,774) size 40x18 - text run at (0,774) width 40: "KKKK" - RenderBR {BR} at (40,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 40x18 - text run at (0,810) width 40: "MMMM" - RenderBR {BR} at (40,824) size 0x0 - RenderText {#text} at (0,828) size 40x18 - text run at (0,828) width 40: "NNNN" - RenderBR {BR} at (40,842) size 0x0 - RenderText {#text} at (0,846) size 40x18 - text run at (0,846) width 40: "OOOO" - RenderBR {BR} at (40,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 40x18 - text run at (0,882) width 40: "QQQQ" - RenderBR {BR} at (40,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 40x18 - text run at (0,918) width 40: "SSSS" - RenderBR {BR} at (40,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 40x18 - text run at (0,954) width 40: "UUUU" - RenderBR {BR} at (40,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 40x18 - text run at (0,990) width 40: "WWWW" - RenderBR {BR} at (40,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 40x18 - text run at (0,1062) width 40: "[[[[" - RenderBR {BR} at (40,1076) size 0x0 - RenderText {#text} at (0,1080) size 40x18 - text run at (0,1080) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1094) size 0x0 - RenderText {#text} at (0,1098) size 40x18 - text run at (0,1098) width 40: "]]]]" - RenderBR {BR} at (40,1112) size 0x0 - RenderText {#text} at (0,1116) size 40x18 - text run at (0,1116) width 40: "^^^^" - RenderBR {BR} at (40,1130) size 0x0 - RenderText {#text} at (0,1134) size 40x18 - text run at (0,1134) width 40: "____" - RenderBR {BR} at (40,1148) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1166) size 0x0 - RenderText {#text} at (0,1170) size 40x18 - text run at (0,1170) width 40: "aaaa" - RenderBR {BR} at (40,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 40x18 - text run at (0,1206) width 40: "cccc" - RenderBR {BR} at (40,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 40x18 - text run at (0,1242) width 40: "eeee" - RenderBR {BR} at (40,1256) size 0x0 - RenderText {#text} at (0,1260) size 40x18 - text run at (0,1260) width 40: "ffff" - RenderBR {BR} at (40,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 40x18 - text run at (0,1314) width 40: "iiii" - RenderBR {BR} at (40,1328) size 0x0 - RenderText {#text} at (0,1332) size 40x18 - text run at (0,1332) width 40: "jjjj" - RenderBR {BR} at (40,1346) size 0x0 - RenderText {#text} at (0,1350) size 40x18 - text run at (0,1350) width 40: "kkkk" - RenderBR {BR} at (40,1364) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "llll" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1386) size 40x18 - text run at (0,1386) width 40: "mmmm" - RenderBR {BR} at (40,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 40x18 - text run at (0,1476) width 40: "rrrr" - RenderBR {BR} at (40,1490) size 0x0 - RenderText {#text} at (0,1494) size 40x18 - text run at (0,1494) width 40: "ssss" - RenderBR {BR} at (40,1508) size 0x0 - RenderText {#text} at (0,1512) size 40x18 - text run at (0,1512) width 40: "tttt" - RenderBR {BR} at (40,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 40x18 - text run at (0,1548) width 40: "vvvv" - RenderBR {BR} at (40,1562) size 0x0 - RenderText {#text} at (0,1566) size 40x18 - text run at (0,1566) width 40: "wwww" - RenderBR {BR} at (40,1580) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1598) size 0x0 - RenderText {#text} at (0,1602) size 40x18 - text run at (0,1602) width 40: "yyyy" - RenderBR {BR} at (40,1616) size 0x0 - RenderText {#text} at (0,1620) size 40x18 - text run at (0,1620) width 40: "zzzz" - RenderBR {BR} at (40,1634) size 0x0 - RenderText {#text} at (0,1638) size 40x18 - text run at (0,1638) width 40: "{{{{" - RenderBR {BR} at (40,1652) size 0x0 - RenderText {#text} at (0,1656) size 40x18 - text run at (0,1656) width 40: "||||" - RenderBR {BR} at (40,1670) size 0x0 - RenderText {#text} at (0,1674) size 40x18 - text run at (0,1674) width 40: "}}}}" - RenderBR {BR} at (40,1688) size 0x0 - RenderBlock (anonymous) at (0,1708) size 769x3400 - RenderBlock {P} at (0,0) size 769x1692 - RenderInline {B} at (0,0) size 40x1692 - RenderText {#text} at (0,0) size 40x18 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,18) size 40x18 - text run at (0,18) width 40: "!!!!" - RenderBR {BR} at (40,32) size 0x0 - RenderText {#text} at (0,36) size 40x18 - text run at (0,36) width 40: "\"\"\"\"" - RenderBR {BR} at (40,50) size 0x0 - RenderText {#text} at (0,54) size 40x18 - text run at (0,54) width 40: "####" - RenderBR {BR} at (40,68) size 0x0 - RenderText {#text} at (0,72) size 40x18 - text run at (0,72) width 40: "$$$$" - RenderBR {BR} at (40,86) size 0x0 - RenderText {#text} at (0,90) size 40x18 - text run at (0,90) width 40: "%%%%" - RenderBR {BR} at (40,104) size 0x0 - RenderText {#text} at (0,108) size 40x18 - text run at (0,108) width 40: "&&&&" - RenderBR {BR} at (40,122) size 0x0 - RenderText {#text} at (0,126) size 40x18 - text run at (0,126) width 40: "''''" - RenderBR {BR} at (40,140) size 0x0 - RenderText {#text} at (0,144) size 40x18 - text run at (0,144) width 40: "((((" - RenderBR {BR} at (40,158) size 0x0 - RenderText {#text} at (0,162) size 40x18 - text run at (0,162) width 40: "))))" - RenderBR {BR} at (40,176) size 0x0 - RenderText {#text} at (0,180) size 40x18 - text run at (0,180) width 40: "****" - RenderBR {BR} at (40,194) size 0x0 - RenderText {#text} at (0,198) size 40x18 - text run at (0,198) width 40: "++++" - RenderBR {BR} at (40,212) size 0x0 - RenderText {#text} at (0,216) size 40x18 - text run at (0,216) width 40: ",,,," - RenderBR {BR} at (40,230) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,248) size 0x0 - RenderText {#text} at (0,252) size 40x18 - text run at (0,252) width 40: "...." - RenderBR {BR} at (40,266) size 0x0 - RenderText {#text} at (0,270) size 40x18 - text run at (0,270) width 40: "////" - RenderBR {BR} at (40,284) size 0x0 - RenderText {#text} at (0,288) size 40x18 - text run at (0,288) width 40: "0000" - RenderBR {BR} at (40,302) size 0x0 - RenderText {#text} at (0,306) size 40x18 - text run at (0,306) width 40: "1111" - RenderBR {BR} at (40,320) size 0x0 - RenderText {#text} at (0,324) size 40x18 - text run at (0,324) width 40: "2222" - RenderBR {BR} at (40,338) size 0x0 - RenderText {#text} at (0,342) size 40x18 - text run at (0,342) width 40: "3333" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,360) size 40x18 - text run at (0,360) width 40: "4444" - RenderBR {BR} at (40,374) size 0x0 - RenderText {#text} at (0,378) size 40x18 - text run at (0,378) width 40: "5555" - RenderBR {BR} at (40,392) size 0x0 - RenderText {#text} at (0,396) size 40x18 - text run at (0,396) width 40: "6666" - RenderBR {BR} at (40,410) size 0x0 - RenderText {#text} at (0,414) size 40x18 - text run at (0,414) width 40: "7777" - RenderBR {BR} at (40,428) size 0x0 - RenderText {#text} at (0,432) size 40x18 - text run at (0,432) width 40: "8888" - RenderBR {BR} at (40,446) size 0x0 - RenderText {#text} at (0,450) size 40x18 - text run at (0,450) width 40: "9999" - RenderBR {BR} at (40,464) size 0x0 - RenderText {#text} at (0,468) size 40x18 - text run at (0,468) width 40: "::::" - RenderBR {BR} at (40,482) size 0x0 - RenderText {#text} at (0,486) size 40x18 - text run at (0,486) width 40: ";;;;" - RenderBR {BR} at (40,500) size 0x0 - RenderText {#text} at (0,504) size 40x18 - text run at (0,504) width 40: "<<<<" - RenderBR {BR} at (40,518) size 0x0 - RenderText {#text} at (0,522) size 40x18 - text run at (0,522) width 40: "====" - RenderBR {BR} at (40,536) size 0x0 - RenderText {#text} at (0,540) size 40x18 - text run at (0,540) width 40: ">>>>" - RenderBR {BR} at (40,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 40x18 - text run at (0,576) width 40: "@@@@" - RenderBR {BR} at (40,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 40x18 - text run at (0,630) width 40: "CCCC" - RenderBR {BR} at (40,644) size 0x0 - RenderText {#text} at (0,648) size 40x18 - text run at (0,648) width 40: "DDDD" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 40x18 - text run at (0,702) width 40: "GGGG" - RenderBR {BR} at (40,716) size 0x0 - RenderText {#text} at (0,720) size 40x18 - text run at (0,720) width 40: "HHHH" - RenderBR {BR} at (40,734) size 0x0 - RenderText {#text} at (0,738) size 40x18 - text run at (0,738) width 40: "IIII" - RenderBR {BR} at (40,752) size 0x0 - RenderText {#text} at (0,756) size 40x18 - text run at (0,756) width 40: "JJJJ" - RenderBR {BR} at (40,770) size 0x0 - RenderText {#text} at (0,774) size 40x18 - text run at (0,774) width 40: "KKKK" - RenderBR {BR} at (40,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 40x18 - text run at (0,810) width 40: "MMMM" - RenderBR {BR} at (40,824) size 0x0 - RenderText {#text} at (0,828) size 40x18 - text run at (0,828) width 40: "NNNN" - RenderBR {BR} at (40,842) size 0x0 - RenderText {#text} at (0,846) size 40x18 - text run at (0,846) width 40: "OOOO" - RenderBR {BR} at (40,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 40x18 - text run at (0,882) width 40: "QQQQ" - RenderBR {BR} at (40,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 40x18 - text run at (0,918) width 40: "SSSS" - RenderBR {BR} at (40,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 40x18 - text run at (0,954) width 40: "UUUU" - RenderBR {BR} at (40,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 40x18 - text run at (0,990) width 40: "WWWW" - RenderBR {BR} at (40,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 40x18 - text run at (0,1062) width 40: "[[[[" - RenderBR {BR} at (40,1076) size 0x0 - RenderText {#text} at (0,1080) size 40x18 - text run at (0,1080) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1094) size 0x0 - RenderText {#text} at (0,1098) size 40x18 - text run at (0,1098) width 40: "]]]]" - RenderBR {BR} at (40,1112) size 0x0 - RenderText {#text} at (0,1116) size 40x18 - text run at (0,1116) width 40: "^^^^" - RenderBR {BR} at (40,1130) size 0x0 - RenderText {#text} at (0,1134) size 40x18 - text run at (0,1134) width 40: "____" - RenderBR {BR} at (40,1148) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1166) size 0x0 - RenderText {#text} at (0,1170) size 40x18 - text run at (0,1170) width 40: "aaaa" - RenderBR {BR} at (40,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 40x18 - text run at (0,1206) width 40: "cccc" - RenderBR {BR} at (40,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 40x18 - text run at (0,1242) width 40: "eeee" - RenderBR {BR} at (40,1256) size 0x0 - RenderText {#text} at (0,1260) size 40x18 - text run at (0,1260) width 40: "ffff" - RenderBR {BR} at (40,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 40x18 - text run at (0,1314) width 40: "iiii" - RenderBR {BR} at (40,1328) size 0x0 - RenderText {#text} at (0,1332) size 40x18 - text run at (0,1332) width 40: "jjjj" - RenderBR {BR} at (40,1346) size 0x0 - RenderText {#text} at (0,1350) size 40x18 - text run at (0,1350) width 40: "kkkk" - RenderBR {BR} at (40,1364) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "llll" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1386) size 40x18 - text run at (0,1386) width 40: "mmmm" - RenderBR {BR} at (40,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 40x18 - text run at (0,1476) width 40: "rrrr" - RenderBR {BR} at (40,1490) size 0x0 - RenderText {#text} at (0,1494) size 40x18 - text run at (0,1494) width 40: "ssss" - RenderBR {BR} at (40,1508) size 0x0 - RenderText {#text} at (0,1512) size 40x18 - text run at (0,1512) width 40: "tttt" - RenderBR {BR} at (40,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 40x18 - text run at (0,1548) width 40: "vvvv" - RenderBR {BR} at (40,1562) size 0x0 - RenderText {#text} at (0,1566) size 40x18 - text run at (0,1566) width 40: "wwww" - RenderBR {BR} at (40,1580) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1598) size 0x0 - RenderText {#text} at (0,1602) size 40x18 - text run at (0,1602) width 40: "yyyy" - RenderBR {BR} at (40,1616) size 0x0 - RenderText {#text} at (0,1620) size 40x18 - text run at (0,1620) width 40: "zzzz" - RenderBR {BR} at (40,1634) size 0x0 - RenderText {#text} at (0,1638) size 40x18 - text run at (0,1638) width 40: "{{{{" - RenderBR {BR} at (40,1652) size 0x0 - RenderText {#text} at (0,1656) size 40x18 - text run at (0,1656) width 40: "||||" - RenderBR {BR} at (40,1670) size 0x0 - RenderText {#text} at (0,1674) size 40x18 - text run at (0,1674) width 40: "}}}}" - RenderBR {BR} at (40,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1708) size 769x1692 - RenderInline {I} at (0,0) size 40x1692 - RenderText {#text} at (0,0) size 40x18 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,18) size 40x18 - text run at (0,18) width 40: "!!!!" - RenderBR {BR} at (40,32) size 0x0 - RenderText {#text} at (0,36) size 40x18 - text run at (0,36) width 40: "\"\"\"\"" - RenderBR {BR} at (40,50) size 0x0 - RenderText {#text} at (0,54) size 40x18 - text run at (0,54) width 40: "####" - RenderBR {BR} at (40,68) size 0x0 - RenderText {#text} at (0,72) size 40x18 - text run at (0,72) width 40: "$$$$" - RenderBR {BR} at (40,86) size 0x0 - RenderText {#text} at (0,90) size 40x18 - text run at (0,90) width 40: "%%%%" - RenderBR {BR} at (40,104) size 0x0 - RenderText {#text} at (0,108) size 40x18 - text run at (0,108) width 40: "&&&&" - RenderBR {BR} at (40,122) size 0x0 - RenderText {#text} at (0,126) size 40x18 - text run at (0,126) width 40: "''''" - RenderBR {BR} at (40,140) size 0x0 - RenderText {#text} at (0,144) size 40x18 - text run at (0,144) width 40: "((((" - RenderBR {BR} at (40,158) size 0x0 - RenderText {#text} at (0,162) size 40x18 - text run at (0,162) width 40: "))))" - RenderBR {BR} at (40,176) size 0x0 - RenderText {#text} at (0,180) size 40x18 - text run at (0,180) width 40: "****" - RenderBR {BR} at (40,194) size 0x0 - RenderText {#text} at (0,198) size 40x18 - text run at (0,198) width 40: "++++" - RenderBR {BR} at (40,212) size 0x0 - RenderText {#text} at (0,216) size 40x18 - text run at (0,216) width 40: ",,,," - RenderBR {BR} at (40,230) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,248) size 0x0 - RenderText {#text} at (0,252) size 40x18 - text run at (0,252) width 40: "...." - RenderBR {BR} at (40,266) size 0x0 - RenderText {#text} at (0,270) size 40x18 - text run at (0,270) width 40: "////" - RenderBR {BR} at (40,284) size 0x0 - RenderText {#text} at (0,288) size 40x18 - text run at (0,288) width 40: "0000" - RenderBR {BR} at (40,302) size 0x0 - RenderText {#text} at (0,306) size 40x18 - text run at (0,306) width 40: "1111" - RenderBR {BR} at (40,320) size 0x0 - RenderText {#text} at (0,324) size 40x18 - text run at (0,324) width 40: "2222" - RenderBR {BR} at (40,338) size 0x0 - RenderText {#text} at (0,342) size 40x18 - text run at (0,342) width 40: "3333" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,360) size 40x18 - text run at (0,360) width 40: "4444" - RenderBR {BR} at (40,374) size 0x0 - RenderText {#text} at (0,378) size 40x18 - text run at (0,378) width 40: "5555" - RenderBR {BR} at (40,392) size 0x0 - RenderText {#text} at (0,396) size 40x18 - text run at (0,396) width 40: "6666" - RenderBR {BR} at (40,410) size 0x0 - RenderText {#text} at (0,414) size 40x18 - text run at (0,414) width 40: "7777" - RenderBR {BR} at (40,428) size 0x0 - RenderText {#text} at (0,432) size 40x18 - text run at (0,432) width 40: "8888" - RenderBR {BR} at (40,446) size 0x0 - RenderText {#text} at (0,450) size 40x18 - text run at (0,450) width 40: "9999" - RenderBR {BR} at (40,464) size 0x0 - RenderText {#text} at (0,468) size 40x18 - text run at (0,468) width 40: "::::" - RenderBR {BR} at (40,482) size 0x0 - RenderText {#text} at (0,486) size 40x18 - text run at (0,486) width 40: ";;;;" - RenderBR {BR} at (40,500) size 0x0 - RenderText {#text} at (0,504) size 40x18 - text run at (0,504) width 40: "<<<<" - RenderBR {BR} at (40,518) size 0x0 - RenderText {#text} at (0,522) size 40x18 - text run at (0,522) width 40: "====" - RenderBR {BR} at (40,536) size 0x0 - RenderText {#text} at (0,540) size 40x18 - text run at (0,540) width 40: ">>>>" - RenderBR {BR} at (40,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 40x18 - text run at (0,576) width 40: "@@@@" - RenderBR {BR} at (40,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 40x18 - text run at (0,630) width 40: "CCCC" - RenderBR {BR} at (40,644) size 0x0 - RenderText {#text} at (0,648) size 40x18 - text run at (0,648) width 40: "DDDD" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 40x18 - text run at (0,702) width 40: "GGGG" - RenderBR {BR} at (40,716) size 0x0 - RenderText {#text} at (0,720) size 40x18 - text run at (0,720) width 40: "HHHH" - RenderBR {BR} at (40,734) size 0x0 - RenderText {#text} at (0,738) size 40x18 - text run at (0,738) width 40: "IIII" - RenderBR {BR} at (40,752) size 0x0 - RenderText {#text} at (0,756) size 40x18 - text run at (0,756) width 40: "JJJJ" - RenderBR {BR} at (40,770) size 0x0 - RenderText {#text} at (0,774) size 40x18 - text run at (0,774) width 40: "KKKK" - RenderBR {BR} at (40,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 40x18 - text run at (0,810) width 40: "MMMM" - RenderBR {BR} at (40,824) size 0x0 - RenderText {#text} at (0,828) size 40x18 - text run at (0,828) width 40: "NNNN" - RenderBR {BR} at (40,842) size 0x0 - RenderText {#text} at (0,846) size 40x18 - text run at (0,846) width 40: "OOOO" - RenderBR {BR} at (40,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 40x18 - text run at (0,882) width 40: "QQQQ" - RenderBR {BR} at (40,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 40x18 - text run at (0,918) width 40: "SSSS" - RenderBR {BR} at (40,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 40x18 - text run at (0,954) width 40: "UUUU" - RenderBR {BR} at (40,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 40x18 - text run at (0,990) width 40: "WWWW" - RenderBR {BR} at (40,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 40x18 - text run at (0,1062) width 40: "[[[[" - RenderBR {BR} at (40,1076) size 0x0 - RenderText {#text} at (0,1080) size 40x18 - text run at (0,1080) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1094) size 0x0 - RenderText {#text} at (0,1098) size 40x18 - text run at (0,1098) width 40: "]]]]" - RenderBR {BR} at (40,1112) size 0x0 - RenderText {#text} at (0,1116) size 40x18 - text run at (0,1116) width 40: "^^^^" - RenderBR {BR} at (40,1130) size 0x0 - RenderText {#text} at (0,1134) size 40x18 - text run at (0,1134) width 40: "____" - RenderBR {BR} at (40,1148) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1166) size 0x0 - RenderText {#text} at (0,1170) size 40x18 - text run at (0,1170) width 40: "aaaa" - RenderBR {BR} at (40,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 40x18 - text run at (0,1206) width 40: "cccc" - RenderBR {BR} at (40,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 40x18 - text run at (0,1242) width 40: "eeee" - RenderBR {BR} at (40,1256) size 0x0 - RenderText {#text} at (0,1260) size 40x18 - text run at (0,1260) width 40: "ffff" - RenderBR {BR} at (40,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 40x18 - text run at (0,1314) width 40: "iiii" - RenderBR {BR} at (40,1328) size 0x0 - RenderText {#text} at (0,1332) size 40x18 - text run at (0,1332) width 40: "jjjj" - RenderBR {BR} at (40,1346) size 0x0 - RenderText {#text} at (0,1350) size 40x18 - text run at (0,1350) width 40: "kkkk" - RenderBR {BR} at (40,1364) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "llll" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1386) size 40x18 - text run at (0,1386) width 40: "mmmm" - RenderBR {BR} at (40,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 40x18 - text run at (0,1476) width 40: "rrrr" - RenderBR {BR} at (40,1490) size 0x0 - RenderText {#text} at (0,1494) size 40x18 - text run at (0,1494) width 40: "ssss" - RenderBR {BR} at (40,1508) size 0x0 - RenderText {#text} at (0,1512) size 40x18 - text run at (0,1512) width 40: "tttt" - RenderBR {BR} at (40,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 40x18 - text run at (0,1548) width 40: "vvvv" - RenderBR {BR} at (40,1562) size 0x0 - RenderText {#text} at (0,1566) size 40x18 - text run at (0,1566) width 40: "wwww" - RenderBR {BR} at (40,1580) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1598) size 0x0 - RenderText {#text} at (0,1602) size 40x18 - text run at (0,1602) width 40: "yyyy" - RenderBR {BR} at (40,1616) size 0x0 - RenderText {#text} at (0,1620) size 40x18 - text run at (0,1620) width 40: "zzzz" - RenderBR {BR} at (40,1634) size 0x0 - RenderText {#text} at (0,1638) size 40x18 - text run at (0,1638) width 40: "{{{{" - RenderBR {BR} at (40,1652) size 0x0 - RenderText {#text} at (0,1656) size 40x18 - text run at (0,1656) width 40: "||||" - RenderBR {BR} at (40,1670) size 0x0 - RenderText {#text} at (0,1674) size 40x18 - text run at (0,1674) width 40: "}}}}" - RenderBR {BR} at (40,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5124) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5124) size 769x1692 - RenderInline {FONT} at (0,0) size 40x1692 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 40x1692 - RenderInline {I} at (0,0) size 40x1692 - RenderText {#text} at (0,0) size 40x18 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,18) size 40x18 - text run at (0,18) width 40: "!!!!" - RenderBR {BR} at (40,32) size 0x0 - RenderText {#text} at (0,36) size 40x18 - text run at (0,36) width 40: "\"\"\"\"" - RenderBR {BR} at (40,50) size 0x0 - RenderText {#text} at (0,54) size 40x18 - text run at (0,54) width 40: "####" - RenderBR {BR} at (40,68) size 0x0 - RenderText {#text} at (0,72) size 40x18 - text run at (0,72) width 40: "$$$$" - RenderBR {BR} at (40,86) size 0x0 - RenderText {#text} at (0,90) size 40x18 - text run at (0,90) width 40: "%%%%" - RenderBR {BR} at (40,104) size 0x0 - RenderText {#text} at (0,108) size 40x18 - text run at (0,108) width 40: "&&&&" - RenderBR {BR} at (40,122) size 0x0 - RenderText {#text} at (0,126) size 40x18 - text run at (0,126) width 40: "''''" - RenderBR {BR} at (40,140) size 0x0 - RenderText {#text} at (0,144) size 40x18 - text run at (0,144) width 40: "((((" - RenderBR {BR} at (40,158) size 0x0 - RenderText {#text} at (0,162) size 40x18 - text run at (0,162) width 40: "))))" - RenderBR {BR} at (40,176) size 0x0 - RenderText {#text} at (0,180) size 40x18 - text run at (0,180) width 40: "****" - RenderBR {BR} at (40,194) size 0x0 - RenderText {#text} at (0,198) size 40x18 - text run at (0,198) width 40: "++++" - RenderBR {BR} at (40,212) size 0x0 - RenderText {#text} at (0,216) size 40x18 - text run at (0,216) width 40: ",,,," - RenderBR {BR} at (40,230) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,248) size 0x0 - RenderText {#text} at (0,252) size 40x18 - text run at (0,252) width 40: "...." - RenderBR {BR} at (40,266) size 0x0 - RenderText {#text} at (0,270) size 40x18 - text run at (0,270) width 40: "////" - RenderBR {BR} at (40,284) size 0x0 - RenderText {#text} at (0,288) size 40x18 - text run at (0,288) width 40: "0000" - RenderBR {BR} at (40,302) size 0x0 - RenderText {#text} at (0,306) size 40x18 - text run at (0,306) width 40: "1111" - RenderBR {BR} at (40,320) size 0x0 - RenderText {#text} at (0,324) size 40x18 - text run at (0,324) width 40: "2222" - RenderBR {BR} at (40,338) size 0x0 - RenderText {#text} at (0,342) size 40x18 - text run at (0,342) width 40: "3333" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,360) size 40x18 - text run at (0,360) width 40: "4444" - RenderBR {BR} at (40,374) size 0x0 - RenderText {#text} at (0,378) size 40x18 - text run at (0,378) width 40: "5555" - RenderBR {BR} at (40,392) size 0x0 - RenderText {#text} at (0,396) size 40x18 - text run at (0,396) width 40: "6666" - RenderBR {BR} at (40,410) size 0x0 - RenderText {#text} at (0,414) size 40x18 - text run at (0,414) width 40: "7777" - RenderBR {BR} at (40,428) size 0x0 - RenderText {#text} at (0,432) size 40x18 - text run at (0,432) width 40: "8888" - RenderBR {BR} at (40,446) size 0x0 - RenderText {#text} at (0,450) size 40x18 - text run at (0,450) width 40: "9999" - RenderBR {BR} at (40,464) size 0x0 - RenderText {#text} at (0,468) size 40x18 - text run at (0,468) width 40: "::::" - RenderBR {BR} at (40,482) size 0x0 - RenderText {#text} at (0,486) size 40x18 - text run at (0,486) width 40: ";;;;" - RenderBR {BR} at (40,500) size 0x0 - RenderText {#text} at (0,504) size 40x18 - text run at (0,504) width 40: "<<<<" - RenderBR {BR} at (40,518) size 0x0 - RenderText {#text} at (0,522) size 40x18 - text run at (0,522) width 40: "====" - RenderBR {BR} at (40,536) size 0x0 - RenderText {#text} at (0,540) size 40x18 - text run at (0,540) width 40: ">>>>" - RenderBR {BR} at (40,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 40x18 - text run at (0,576) width 40: "@@@@" - RenderBR {BR} at (40,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 40x18 - text run at (0,630) width 40: "CCCC" - RenderBR {BR} at (40,644) size 0x0 - RenderText {#text} at (0,648) size 40x18 - text run at (0,648) width 40: "DDDD" - RenderBR {BR} at (40,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 40x18 - text run at (0,702) width 40: "GGGG" - RenderBR {BR} at (40,716) size 0x0 - RenderText {#text} at (0,720) size 40x18 - text run at (0,720) width 40: "HHHH" - RenderBR {BR} at (40,734) size 0x0 - RenderText {#text} at (0,738) size 40x18 - text run at (0,738) width 40: "IIII" - RenderBR {BR} at (40,752) size 0x0 - RenderText {#text} at (0,756) size 40x18 - text run at (0,756) width 40: "JJJJ" - RenderBR {BR} at (40,770) size 0x0 - RenderText {#text} at (0,774) size 40x18 - text run at (0,774) width 40: "KKKK" - RenderBR {BR} at (40,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 40x18 - text run at (0,810) width 40: "MMMM" - RenderBR {BR} at (40,824) size 0x0 - RenderText {#text} at (0,828) size 40x18 - text run at (0,828) width 40: "NNNN" - RenderBR {BR} at (40,842) size 0x0 - RenderText {#text} at (0,846) size 40x18 - text run at (0,846) width 40: "OOOO" - RenderBR {BR} at (40,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 40x18 - text run at (0,882) width 40: "QQQQ" - RenderBR {BR} at (40,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 40x18 - text run at (0,918) width 40: "SSSS" - RenderBR {BR} at (40,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 40x18 - text run at (0,954) width 40: "UUUU" - RenderBR {BR} at (40,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 40x18 - text run at (0,990) width 40: "WWWW" - RenderBR {BR} at (40,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 40x18 - text run at (0,1062) width 40: "[[[[" - RenderBR {BR} at (40,1076) size 0x0 - RenderText {#text} at (0,1080) size 40x18 - text run at (0,1080) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1094) size 0x0 - RenderText {#text} at (0,1098) size 40x18 - text run at (0,1098) width 40: "]]]]" - RenderBR {BR} at (40,1112) size 0x0 - RenderText {#text} at (0,1116) size 40x18 - text run at (0,1116) width 40: "^^^^" - RenderBR {BR} at (40,1130) size 0x0 - RenderText {#text} at (0,1134) size 40x18 - text run at (0,1134) width 40: "____" - RenderBR {BR} at (40,1148) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1166) size 0x0 - RenderText {#text} at (0,1170) size 40x18 - text run at (0,1170) width 40: "aaaa" - RenderBR {BR} at (40,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 40x18 - text run at (0,1206) width 40: "cccc" - RenderBR {BR} at (40,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 40x18 - text run at (0,1242) width 40: "eeee" - RenderBR {BR} at (40,1256) size 0x0 - RenderText {#text} at (0,1260) size 40x18 - text run at (0,1260) width 40: "ffff" - RenderBR {BR} at (40,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 40x18 - text run at (0,1314) width 40: "iiii" - RenderBR {BR} at (40,1328) size 0x0 - RenderText {#text} at (0,1332) size 40x18 - text run at (0,1332) width 40: "jjjj" - RenderBR {BR} at (40,1346) size 0x0 - RenderText {#text} at (0,1350) size 40x18 - text run at (0,1350) width 40: "kkkk" - RenderBR {BR} at (40,1364) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "llll" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1386) size 40x18 - text run at (0,1386) width 40: "mmmm" - RenderBR {BR} at (40,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 40x18 - text run at (0,1476) width 40: "rrrr" - RenderBR {BR} at (40,1490) size 0x0 - RenderText {#text} at (0,1494) size 40x18 - text run at (0,1494) width 40: "ssss" - RenderBR {BR} at (40,1508) size 0x0 - RenderText {#text} at (0,1512) size 40x18 - text run at (0,1512) width 40: "tttt" - RenderBR {BR} at (40,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 40x18 - text run at (0,1548) width 40: "vvvv" - RenderBR {BR} at (40,1562) size 0x0 - RenderText {#text} at (0,1566) size 40x18 - text run at (0,1566) width 40: "wwww" - RenderBR {BR} at (40,1580) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1598) size 0x0 - RenderText {#text} at (0,1602) size 40x18 - text run at (0,1602) width 40: "yyyy" - RenderBR {BR} at (40,1616) size 0x0 - RenderText {#text} at (0,1620) size 40x18 - text run at (0,1620) width 40: "zzzz" - RenderBR {BR} at (40,1634) size 0x0 - RenderText {#text} at (0,1638) size 40x18 - text run at (0,1638) width 40: "{{{{" - RenderBR {BR} at (40,1652) size 0x0 - RenderText {#text} at (0,1656) size 40x18 - text run at (0,1656) width 40: "||||" - RenderBR {BR} at (40,1670) size 0x0 - RenderText {#text} at (0,1674) size 40x18 - text run at (0,1674) width 40: "}}}}" - RenderBR {BR} at (40,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.checksum deleted file mode 100644 index 0656ac4..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -76f4ce5a515a946ae651c707e9b11d09
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.png Binary files differdeleted file mode 100644 index 5f03ca2..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.txt deleted file mode 100644 index 1fbc64b..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.txt +++ /dev/null @@ -1,1144 +0,0 @@ -layer at (0,0) size 785x6840 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x6840 - RenderBlock {HTML} at (0,0) size 785x6840 - RenderBody {BODY} at (8,8) size 769x6816 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 28x18 - text run at (0,36) width 28: "\"\"\"\"" - RenderBR {BR} at (28,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 28x18 - text run at (0,558) width 28: "????" - RenderBR {BR} at (28,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 36x18 - text run at (0,684) width 36: "FFFF" - RenderBR {BR} at (36,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 20x18 - text run at (0,738) width 20: "IIII" - RenderBR {BR} at (20,752) size 0x0 - RenderText {#text} at (0,756) size 24x18 - text run at (0,756) width 24: "JJJJ" - RenderBR {BR} at (24,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 36x18 - text run at (0,864) width 36: "PPPP" - RenderBR {BR} at (36,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 44x18 - text run at (0,900) width 44: "RRRR" - RenderBR {BR} at (44,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 48x18 - text run at (0,972) width 48: "VVVV" - RenderBR {BR} at (48,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 48x18 - text run at (0,1008) width 48: "XXXX" - RenderBR {BR} at (48,1022) size 0x0 - RenderText {#text} at (0,1026) size 48x18 - text run at (0,1026) width 48: "YYYY" - RenderBR {BR} at (48,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x18 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 28x18 - text run at (0,1170) width 28: "aaaa" - RenderBR {BR} at (28,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 32x18 - text run at (0,1296) width 32: "hhhh" - RenderBR {BR} at (32,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 32x18 - text run at (0,1404) width 32: "nnnn" - RenderBR {BR} at (32,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x18 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 32x18 - text run at (0,1530) width 32: "uuuu" - RenderBR {BR} at (32,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 28x18 - text run at (0,1620) width 28: "zzzz" - RenderBR {BR} at (28,1634) size 0x0 - RenderText {#text} at (0,1638) size 32x18 - text run at (0,1638) width 32: "{{{{" - RenderBR {BR} at (32,1652) size 0x0 - RenderText {#text} at (0,1656) size 12x18 - text run at (0,1656) width 12: "||||" - RenderBR {BR} at (12,1670) size 0x0 - RenderText {#text} at (0,1674) size 32x18 - text run at (0,1674) width 32: "}}}}" - RenderBR {BR} at (32,1688) size 0x0 - RenderBlock {P} at (0,1708) size 769x1692 - RenderInline {B} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 36x18 - text run at (0,36) width 36: "\"\"\"\"" - RenderBR {BR} at (36,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 64x18 - text run at (0,90) width 64: "%%%%" - RenderBR {BR} at (64,104) size 0x0 - RenderText {#text} at (0,108) size 52x18 - text run at (0,108) width 52: "&&&&" - RenderBR {BR} at (52,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 24x18 - text run at (0,738) width 24: "IIII" - RenderBR {BR} at (24,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 44x18 - text run at (0,792) width 44: "LLLL" - RenderBR {BR} at (44,806) size 0x0 - RenderText {#text} at (0,810) size 60x18 - text run at (0,810) width 60: "MMMM" - RenderBR {BR} at (60,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 44x18 - text run at (0,936) width 44: "TTTT" - RenderBR {BR} at (44,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 48x18 - text run at (0,972) width 48: "VVVV" - RenderBR {BR} at (48,986) size 0x0 - RenderText {#text} at (0,990) size 64x18 - text run at (0,990) width 64: "WWWW" - RenderBR {BR} at (64,1004) size 0x0 - RenderText {#text} at (0,1008) size 48x18 - text run at (0,1008) width 48: "XXXX" - RenderBR {BR} at (48,1022) size 0x0 - RenderText {#text} at (0,1026) size 48x18 - text run at (0,1026) width 48: "YYYY" - RenderBR {BR} at (48,1040) size 0x0 - RenderText {#text} at (0,1044) size 44x18 - text run at (0,1044) width 44: "ZZZZ" - RenderBR {BR} at (44,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x18 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x18 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 20x18 - text run at (0,1332) width 20: "jjjj" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1350) size 36x18 - text run at (0,1350) width 36: "kkkk" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x18 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x18 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x18 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 28x18 - text run at (0,1476) width 28: "rrrr" - RenderBR {BR} at (28,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 20x18 - text run at (0,1512) width 20: "tttt" - RenderBR {BR} at (20,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 28x18 - text run at (0,1620) width 28: "zzzz" - RenderBR {BR} at (28,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,3416) size 769x1692 - RenderInline {I} at (0,0) size 60x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 28x18 - text run at (0,36) width 28: "\"\"\"\"" - RenderBR {BR} at (28,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 44x18 - text run at (0,198) width 44: "++++" - RenderBR {BR} at (44,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 44x18 - text run at (0,504) width 44: "<<<<" - RenderBR {BR} at (44,518) size 0x0 - RenderText {#text} at (0,522) size 44x18 - text run at (0,522) width 44: "====" - RenderBR {BR} at (44,536) size 0x0 - RenderText {#text} at (0,540) size 44x18 - text run at (0,540) width 44: ">>>>" - RenderBR {BR} at (44,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 20x18 - text run at (0,738) width 20: "IIII" - RenderBR {BR} at (20,752) size 0x0 - RenderText {#text} at (0,756) size 28x18 - text run at (0,756) width 28: "JJJJ" - RenderBR {BR} at (28,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x18 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 44x18 - text run at (0,828) width 44: "NNNN" - RenderBR {BR} at (44,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 32x18 - text run at (0,918) width 32: "SSSS" - RenderBR {BR} at (32,932) size 0x0 - RenderText {#text} at (0,936) size 36x18 - text run at (0,936) width 36: "TTTT" - RenderBR {BR} at (36,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 52x18 - text run at (0,990) width 52: "WWWW" - RenderBR {BR} at (52,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 36x18 - text run at (0,1026) width 36: "YYYY" - RenderBR {BR} at (36,1040) size 0x0 - RenderText {#text} at (0,1044) size 36x18 - text run at (0,1044) width 36: "ZZZZ" - RenderBR {BR} at (36,1058) size 0x0 - RenderText {#text} at (0,1062) size 24x18 - text run at (0,1062) width 24: "[[[[" - RenderBR {BR} at (24,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 24x18 - text run at (0,1098) width 24: "]]]]" - RenderBR {BR} at (24,1112) size 0x0 - RenderText {#text} at (0,1116) size 28x18 - text run at (0,1116) width 28: "^^^^" - RenderBR {BR} at (28,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x18 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 32x18 - text run at (0,1296) width 32: "hhhh" - RenderBR {BR} at (32,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 28x18 - text run at (0,1350) width 28: "kkkk" - RenderBR {BR} at (28,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 32x18 - text run at (0,1404) width 32: "nnnn" - RenderBR {BR} at (32,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 32x18 - text run at (0,1530) width 32: "uuuu" - RenderBR {BR} at (32,1544) size 0x0 - RenderText {#text} at (0,1548) size 28x18 - text run at (0,1548) width 28: "vvvv" - RenderBR {BR} at (28,1562) size 0x0 - RenderText {#text} at (0,1566) size 44x18 - text run at (0,1566) width 44: "wwww" - RenderBR {BR} at (44,1580) size 0x0 - RenderText {#text} at (0,1584) size 28x18 - text run at (0,1584) width 28: "xxxx" - RenderBR {BR} at (28,1598) size 0x0 - RenderText {#text} at (0,1602) size 28x18 - text run at (0,1602) width 28: "yyyy" - RenderBR {BR} at (28,1616) size 0x0 - RenderText {#text} at (0,1620) size 24x18 - text run at (0,1620) width 24: "zzzz" - RenderBR {BR} at (24,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,5124) size 769x1692 - RenderInline {B} at (0,0) size 56x1692 - RenderInline {I} at (0,0) size 56x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 24x18 - text run at (0,18) width 24: "!!!!" - RenderBR {BR} at (24,32) size 0x0 - RenderText {#text} at (0,36) size 36x18 - text run at (0,36) width 36: "\"\"\"\"" - RenderBR {BR} at (36,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 52x18 - text run at (0,576) width 52: "@@@@" - RenderBR {BR} at (52,590) size 0x0 - RenderText {#text} at (0,594) size 44x18 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 44x18 - text run at (0,684) width 44: "FFFF" - RenderBR {BR} at (44,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 24x18 - text run at (0,738) width 24: "IIII" - RenderBR {BR} at (24,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 44x18 - text run at (0,900) width 44: "RRRR" - RenderBR {BR} at (44,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 56x18 - text run at (0,990) width 56: "WWWW" - RenderBR {BR} at (56,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 28x18 - text run at (0,1548) width 28: "vvvv" - RenderBR {BR} at (28,1562) size 0x0 - RenderText {#text} at (0,1566) size 44x18 - text run at (0,1566) width 44: "wwww" - RenderBR {BR} at (44,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 28x18 - text run at (0,1602) width 28: "yyyy" - RenderBR {BR} at (28,1616) size 0x0 - RenderText {#text} at (0,1620) size 24x18 - text run at (0,1620) width 24: "zzzz" - RenderBR {BR} at (24,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.checksum deleted file mode 100644 index 89fb5dd..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -ecd24a095e4c43699f7175dd694154c2
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.png Binary files differdeleted file mode 100644 index a7f392d..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.txt deleted file mode 100644 index cacd0f9..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x6840 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x6840 - RenderBlock {HTML} at (0,0) size 785x6840 - RenderBody {BODY} at (8,8) size 769x6816 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderInline {FONT} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 16x18 - text run at (0,18) width 16: "!!!!" - RenderBR {BR} at (16,32) size 0x0 - RenderText {#text} at (0,36) size 24x18 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,50) size 0x0 - RenderText {#text} at (0,54) size 36x18 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x18 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x18 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 44x18 - text run at (0,108) width 44: "&&&&" - RenderBR {BR} at (44,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x18 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x18 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x18 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x18 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x18 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x18 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x18 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x18 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x18 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x18 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 36x18 - text run at (0,558) width 36: "????" - RenderBR {BR} at (36,572) size 0x0 - RenderText {#text} at (0,576) size 64x18 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 44x18 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x18 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x18 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x18 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x18 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 16x18 - text run at (0,1062) width 16: "[[[[" - RenderBR {BR} at (16,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 16x18 - text run at (0,1098) width 16: "]]]]" - RenderBR {BR} at (16,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x18 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x18 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x18 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 32x18 - text run at (0,1206) width 32: "cccc" - RenderBR {BR} at (32,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x18 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x18 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 36x18 - text run at (0,1278) width 36: "gggg" - RenderBR {BR} at (36,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x18 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 36x18 - text run at (0,1422) width 36: "oooo" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x18 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x18 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x18 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 32x18 - text run at (0,1494) width 32: "ssss" - RenderBR {BR} at (32,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x18 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 20x18 - text run at (0,1638) width 20: "{{{{" - RenderBR {BR} at (20,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 20x18 - text run at (0,1674) width 20: "}}}}" - RenderBR {BR} at (20,1688) size 0x0 - RenderBlock (anonymous) at (0,1708) size 769x3400 - RenderBlock {P} at (0,0) size 769x1692 - RenderInline {B} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 32x18 - text run at (0,36) width 32: "\"\"\"\"" - RenderBR {BR} at (32,50) size 0x0 - RenderText {#text} at (0,54) size 36x18 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x18 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x18 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x18 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x18 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x18 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x18 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x18 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x18 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x18 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x18 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x18 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x18 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 64x18 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 48x18 - text run at (0,612) width 48: "BBBB" - RenderBR {BR} at (48,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x18 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 36x18 - text run at (0,756) width 36: "JJJJ" - RenderBR {BR} at (36,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x18 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x18 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x18 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 36x18 - text run at (0,1206) width 36: "cccc" - RenderBR {BR} at (36,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 36x18 - text run at (0,1350) width 36: "kkkk" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 56x18 - text run at (0,1386) width 56: "mmmm" - RenderBR {BR} at (56,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 36x18 - text run at (0,1494) width 36: "ssss" - RenderBR {BR} at (36,1508) size 0x0 - RenderText {#text} at (0,1512) size 20x18 - text run at (0,1512) width 20: "tttt" - RenderBR {BR} at (20,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 36x18 - text run at (0,1548) width 36: "vvvv" - RenderBR {BR} at (36,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 36x18 - text run at (0,1584) width 36: "xxxx" - RenderBR {BR} at (36,1598) size 0x0 - RenderText {#text} at (0,1602) size 36x18 - text run at (0,1602) width 36: "yyyy" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x18 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1708) size 769x1692 - RenderInline {I} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 16x18 - text run at (0,18) width 16: "!!!!" - RenderBR {BR} at (16,32) size 0x0 - RenderText {#text} at (0,36) size 24x18 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,50) size 0x0 - RenderText {#text} at (0,54) size 36x18 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x18 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x18 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 44x18 - text run at (0,108) width 44: "&&&&" - RenderBR {BR} at (44,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x18 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x18 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x18 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x18 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x18 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x18 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x18 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x18 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x18 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x18 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 36x18 - text run at (0,558) width 36: "????" - RenderBR {BR} at (36,572) size 0x0 - RenderText {#text} at (0,576) size 64x18 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 44x18 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x18 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x18 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x18 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x18 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 16x18 - text run at (0,1062) width 16: "[[[[" - RenderBR {BR} at (16,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 16x18 - text run at (0,1098) width 16: "]]]]" - RenderBR {BR} at (16,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x18 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x18 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x18 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 32x18 - text run at (0,1206) width 32: "cccc" - RenderBR {BR} at (32,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x18 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x18 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 36x18 - text run at (0,1278) width 36: "gggg" - RenderBR {BR} at (36,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x18 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 36x18 - text run at (0,1422) width 36: "oooo" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x18 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x18 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x18 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 32x18 - text run at (0,1494) width 32: "ssss" - RenderBR {BR} at (32,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x18 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 20x18 - text run at (0,1638) width 20: "{{{{" - RenderBR {BR} at (20,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 20x18 - text run at (0,1674) width 20: "}}}}" - RenderBR {BR} at (20,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5124) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5124) size 769x1692 - RenderInline {FONT} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 64x1692 - RenderInline {I} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 32x18 - text run at (0,36) width 32: "\"\"\"\"" - RenderBR {BR} at (32,50) size 0x0 - RenderText {#text} at (0,54) size 36x18 - text run at (0,54) width 36: "####" - RenderBR {BR} at (36,68) size 0x0 - RenderText {#text} at (0,72) size 36x18 - text run at (0,72) width 36: "$$$$" - RenderBR {BR} at (36,86) size 0x0 - RenderText {#text} at (0,90) size 56x18 - text run at (0,90) width 56: "%%%%" - RenderBR {BR} at (56,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 24x18 - text run at (0,180) width 24: "****" - RenderBR {BR} at (24,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 36x18 - text run at (0,288) width 36: "0000" - RenderBR {BR} at (36,302) size 0x0 - RenderText {#text} at (0,306) size 36x18 - text run at (0,306) width 36: "1111" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,324) size 36x18 - text run at (0,324) width 36: "2222" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "3333" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x18 - text run at (0,360) width 36: "4444" - RenderBR {BR} at (36,374) size 0x0 - RenderText {#text} at (0,378) size 36x18 - text run at (0,378) width 36: "5555" - RenderBR {BR} at (36,392) size 0x0 - RenderText {#text} at (0,396) size 36x18 - text run at (0,396) width 36: "6666" - RenderBR {BR} at (36,410) size 0x0 - RenderText {#text} at (0,414) size 36x18 - text run at (0,414) width 36: "7777" - RenderBR {BR} at (36,428) size 0x0 - RenderText {#text} at (0,432) size 36x18 - text run at (0,432) width 36: "8888" - RenderBR {BR} at (36,446) size 0x0 - RenderText {#text} at (0,450) size 36x18 - text run at (0,450) width 36: "9999" - RenderBR {BR} at (36,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,572) size 0x0 - RenderText {#text} at (0,576) size 64x18 - text run at (0,576) width 64: "@@@@" - RenderBR {BR} at (64,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 48x18 - text run at (0,612) width 48: "BBBB" - RenderBR {BR} at (48,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 16x18 - text run at (0,738) width 16: "IIII" - RenderBR {BR} at (16,752) size 0x0 - RenderText {#text} at (0,756) size 36x18 - text run at (0,756) width 36: "JJJJ" - RenderBR {BR} at (36,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 44x18 - text run at (0,864) width 44: "PPPP" - RenderBR {BR} at (44,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 44x18 - text run at (0,918) width 44: "SSSS" - RenderBR {BR} at (44,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 36x18 - text run at (0,1134) width 36: "____" - RenderBR {BR} at (36,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1184) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1202) size 0x0 - RenderText {#text} at (0,1206) size 36x18 - text run at (0,1206) width 36: "cccc" - RenderBR {BR} at (36,1220) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1238) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1292) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 36x18 - text run at (0,1350) width 36: "kkkk" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 56x18 - text run at (0,1386) width 56: "mmmm" - RenderBR {BR} at (56,1400) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1418) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1436) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1454) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 36x18 - text run at (0,1494) width 36: "ssss" - RenderBR {BR} at (36,1508) size 0x0 - RenderText {#text} at (0,1512) size 20x18 - text run at (0,1512) width 20: "tttt" - RenderBR {BR} at (20,1526) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1544) size 0x0 - RenderText {#text} at (0,1548) size 36x18 - text run at (0,1548) width 36: "vvvv" - RenderBR {BR} at (36,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 36x18 - text run at (0,1584) width 36: "xxxx" - RenderBR {BR} at (36,1598) size 0x0 - RenderText {#text} at (0,1602) size 36x18 - text run at (0,1602) width 36: "yyyy" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 32x18 - text run at (0,1620) width 32: "zzzz" - RenderBR {BR} at (32,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.checksum deleted file mode 100644 index 3ac16b3..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -36478c5bac67a8716caf7865ed599d09
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.png Binary files differdeleted file mode 100644 index 9ad5915..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.txt deleted file mode 100644 index 2e4d019..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7216 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7216 - RenderBlock {HTML} at (0,0) size 785x7216 - RenderBody {BODY} at (8,8) size 769x7192 - RenderBlock (anonymous) at (0,0) size 769x1786 - RenderInline {FONT} at (0,0) size 52x1786 - RenderText {#text} at (0,0) size 12x19 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,16) size 0x0 - RenderText {#text} at (0,19) size 16x19 - text run at (0,19) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,38) size 24x19 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,54) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,73) size 0x0 - RenderText {#text} at (0,76) size 36x19 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,92) size 0x0 - RenderText {#text} at (0,95) size 44x19 - text run at (0,95) width 44: "%%%%" - RenderBR {BR} at (44,111) size 0x0 - RenderText {#text} at (0,114) size 36x19 - text run at (0,114) width 36: "&&&&" - RenderBR {BR} at (36,130) size 0x0 - RenderText {#text} at (0,133) size 12x19 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,149) size 0x0 - RenderText {#text} at (0,152) size 20x19 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,168) size 0x0 - RenderText {#text} at (0,171) size 20x19 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,187) size 0x0 - RenderText {#text} at (0,190) size 16x19 - text run at (0,190) width 16: "****" - RenderBR {BR} at (16,206) size 0x0 - RenderText {#text} at (0,209) size 36x19 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,225) size 0x0 - RenderText {#text} at (0,228) size 12x19 - text run at (0,228) width 12: ",,,," - RenderBR {BR} at (12,244) size 0x0 - RenderText {#text} at (0,247) size 20x19 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,263) size 0x0 - RenderText {#text} at (0,266) size 12x19 - text run at (0,266) width 12: "...." - RenderBR {BR} at (12,282) size 0x0 - RenderText {#text} at (0,285) size 24x19 - text run at (0,285) width 24: "////" - RenderBR {BR} at (24,301) size 0x0 - RenderText {#text} at (0,304) size 36x19 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,323) size 24x19 - text run at (0,323) width 24: "1111" - RenderBR {BR} at (24,339) size 0x0 - RenderText {#text} at (0,342) size 32x19 - text run at (0,342) width 32: "2222" - RenderBR {BR} at (32,358) size 0x0 - RenderText {#text} at (0,361) size 32x19 - text run at (0,361) width 32: "3333" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "4444" - RenderBR {BR} at (32,396) size 0x0 - RenderText {#text} at (0,399) size 36x19 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,418) size 36x19 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,434) size 0x0 - RenderText {#text} at (0,437) size 24x19 - text run at (0,437) width 24: "7777" - RenderBR {BR} at (24,453) size 0x0 - RenderText {#text} at (0,456) size 36x19 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,472) size 0x0 - RenderText {#text} at (0,475) size 36x19 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,491) size 0x0 - RenderText {#text} at (0,494) size 12x19 - text run at (0,494) width 12: "::::" - RenderBR {BR} at (12,510) size 0x0 - RenderText {#text} at (0,513) size 12x19 - text run at (0,513) width 12: ";;;;" - RenderBR {BR} at (12,529) size 0x0 - RenderText {#text} at (0,532) size 36x19 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,548) size 0x0 - RenderText {#text} at (0,551) size 36x19 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,567) size 0x0 - RenderText {#text} at (0,570) size 36x19 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,586) size 0x0 - RenderText {#text} at (0,589) size 32x19 - text run at (0,589) width 32: "????" - RenderBR {BR} at (32,605) size 0x0 - RenderText {#text} at (0,608) size 48x19 - text run at (0,608) width 48: "@@@@" - RenderBR {BR} at (48,624) size 0x0 - RenderText {#text} at (0,627) size 32x19 - text run at (0,627) width 32: "AAAA" - RenderBR {BR} at (32,643) size 0x0 - RenderText {#text} at (0,646) size 36x19 - text run at (0,646) width 36: "BBBB" - RenderBR {BR} at (36,662) size 0x0 - RenderText {#text} at (0,665) size 36x19 - text run at (0,665) width 36: "CCCC" - RenderBR {BR} at (36,681) size 0x0 - RenderText {#text} at (0,684) size 36x19 - text run at (0,684) width 36: "DDDD" - RenderBR {BR} at (36,700) size 0x0 - RenderText {#text} at (0,703) size 28x19 - text run at (0,703) width 28: "EEEE" - RenderBR {BR} at (28,719) size 0x0 - RenderText {#text} at (0,722) size 24x19 - text run at (0,722) width 24: "FFFF" - RenderBR {BR} at (24,738) size 0x0 - RenderText {#text} at (0,741) size 36x19 - text run at (0,741) width 36: "GGGG" - RenderBR {BR} at (36,757) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "HHHH" - RenderBR {BR} at (36,776) size 0x0 - RenderText {#text} at (0,779) size 20x19 - text run at (0,779) width 20: "IIII" - RenderBR {BR} at (20,795) size 0x0 - RenderText {#text} at (0,798) size 20x19 - text run at (0,798) width 20: "JJJJ" - RenderBR {BR} at (20,814) size 0x0 - RenderText {#text} at (0,817) size 36x19 - text run at (0,817) width 36: "KKKK" - RenderBR {BR} at (36,833) size 0x0 - RenderText {#text} at (0,836) size 24x19 - text run at (0,836) width 24: "LLLL" - RenderBR {BR} at (24,852) size 0x0 - RenderText {#text} at (0,855) size 44x19 - text run at (0,855) width 44: "MMMM" - RenderBR {BR} at (44,871) size 0x0 - RenderText {#text} at (0,874) size 36x19 - text run at (0,874) width 36: "NNNN" - RenderBR {BR} at (36,890) size 0x0 - RenderText {#text} at (0,893) size 36x19 - text run at (0,893) width 36: "OOOO" - RenderBR {BR} at (36,909) size 0x0 - RenderText {#text} at (0,912) size 32x19 - text run at (0,912) width 32: "PPPP" - RenderBR {BR} at (32,928) size 0x0 - RenderText {#text} at (0,931) size 36x19 - text run at (0,931) width 36: "QQQQ" - RenderBR {BR} at (36,947) size 0x0 - RenderText {#text} at (0,950) size 36x19 - text run at (0,950) width 36: "RRRR" - RenderBR {BR} at (36,966) size 0x0 - RenderText {#text} at (0,969) size 32x19 - text run at (0,969) width 32: "SSSS" - RenderBR {BR} at (32,985) size 0x0 - RenderText {#text} at (0,988) size 28x19 - text run at (0,988) width 28: "TTTT" - RenderBR {BR} at (28,1004) size 0x0 - RenderText {#text} at (0,1007) size 36x19 - text run at (0,1007) width 36: "UUUU" - RenderBR {BR} at (36,1023) size 0x0 - RenderText {#text} at (0,1026) size 32x19 - text run at (0,1026) width 32: "VVVV" - RenderBR {BR} at (32,1042) size 0x0 - RenderText {#text} at (0,1045) size 52x19 - text run at (0,1045) width 52: "WWWW" - RenderBR {BR} at (52,1061) size 0x0 - RenderText {#text} at (0,1064) size 32x19 - text run at (0,1064) width 32: "XXXX" - RenderBR {BR} at (32,1080) size 0x0 - RenderText {#text} at (0,1083) size 32x19 - text run at (0,1083) width 32: "YYYY" - RenderBR {BR} at (32,1099) size 0x0 - RenderText {#text} at (0,1102) size 24x19 - text run at (0,1102) width 24: "ZZZZ" - RenderBR {BR} at (24,1118) size 0x0 - RenderText {#text} at (0,1121) size 20x19 - text run at (0,1121) width 20: "[[[[" - RenderBR {BR} at (20,1137) size 0x0 - RenderText {#text} at (0,1140) size 24x19 - text run at (0,1140) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1156) size 0x0 - RenderText {#text} at (0,1159) size 20x19 - text run at (0,1159) width 20: "]]]]" - RenderBR {BR} at (20,1175) size 0x0 - RenderText {#text} at (0,1178) size 32x19 - text run at (0,1178) width 32: "^^^^" - RenderBR {BR} at (32,1194) size 0x0 - RenderText {#text} at (0,1197) size 36x19 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1213) size 0x0 - RenderText {#text} at (0,1216) size 20x19 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1232) size 0x0 - RenderText {#text} at (0,1235) size 32x19 - text run at (0,1235) width 32: "aaaa" - RenderBR {BR} at (32,1251) size 0x0 - RenderText {#text} at (0,1254) size 32x19 - text run at (0,1254) width 32: "bbbb" - RenderBR {BR} at (32,1270) size 0x0 - RenderText {#text} at (0,1273) size 32x19 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1289) size 0x0 - RenderText {#text} at (0,1292) size 32x19 - text run at (0,1292) width 32: "dddd" - RenderBR {BR} at (32,1308) size 0x0 - RenderText {#text} at (0,1311) size 32x19 - text run at (0,1311) width 32: "eeee" - RenderBR {BR} at (32,1327) size 0x0 - RenderText {#text} at (0,1330) size 20x19 - text run at (0,1330) width 20: "ffff" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1349) size 32x19 - text run at (0,1349) width 32: "gggg" - RenderBR {BR} at (32,1365) size 0x0 - RenderText {#text} at (0,1368) size 32x19 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1384) size 0x0 - RenderText {#text} at (0,1387) size 16x19 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1403) size 0x0 - RenderText {#text} at (0,1406) size 16x19 - text run at (0,1406) width 16: "jjjj" - RenderBR {BR} at (16,1422) size 0x0 - RenderText {#text} at (0,1425) size 32x19 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1441) size 0x0 - RenderText {#text} at (0,1444) size 16x19 - text run at (0,1444) width 16: "llll" - RenderBR {BR} at (16,1460) size 0x0 - RenderText {#text} at (0,1463) size 48x19 - text run at (0,1463) width 48: "mmmm" - RenderBR {BR} at (48,1479) size 0x0 - RenderText {#text} at (0,1482) size 32x19 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1498) size 0x0 - RenderText {#text} at (0,1501) size 32x19 - text run at (0,1501) width 32: "oooo" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 32x19 - text run at (0,1520) width 32: "pppp" - RenderBR {BR} at (32,1536) size 0x0 - RenderText {#text} at (0,1539) size 32x19 - text run at (0,1539) width 32: "qqqq" - RenderBR {BR} at (32,1555) size 0x0 - RenderText {#text} at (0,1558) size 24x19 - text run at (0,1558) width 24: "rrrr" - RenderBR {BR} at (24,1574) size 0x0 - RenderText {#text} at (0,1577) size 32x19 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1593) size 0x0 - RenderText {#text} at (0,1596) size 20x19 - text run at (0,1596) width 20: "tttt" - RenderBR {BR} at (20,1612) size 0x0 - RenderText {#text} at (0,1615) size 32x19 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1631) size 0x0 - RenderText {#text} at (0,1634) size 28x19 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1650) size 0x0 - RenderText {#text} at (0,1653) size 44x19 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1669) size 0x0 - RenderText {#text} at (0,1672) size 28x19 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1688) size 0x0 - RenderText {#text} at (0,1691) size 28x19 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1707) size 0x0 - RenderText {#text} at (0,1710) size 24x19 - text run at (0,1710) width 24: "zzzz" - RenderBR {BR} at (24,1726) size 0x0 - RenderText {#text} at (0,1729) size 24x19 - text run at (0,1729) width 24: "{{{{" - RenderBR {BR} at (24,1745) size 0x0 - RenderText {#text} at (0,1748) size 16x19 - text run at (0,1748) width 16: "||||" - RenderBR {BR} at (16,1764) size 0x0 - RenderText {#text} at (0,1767) size 24x19 - text run at (0,1767) width 24: "}}}}" - RenderBR {BR} at (24,1783) size 0x0 - RenderBlock (anonymous) at (0,1802) size 769x3588 - RenderBlock {P} at (0,0) size 769x1786 - RenderInline {B} at (0,0) size 52x1786 - RenderText {#text} at (0,0) size 12x19 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,16) size 0x0 - RenderText {#text} at (0,19) size 16x19 - text run at (0,19) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,38) size 24x19 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,54) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,73) size 0x0 - RenderText {#text} at (0,76) size 36x19 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,92) size 0x0 - RenderText {#text} at (0,95) size 44x19 - text run at (0,95) width 44: "%%%%" - RenderBR {BR} at (44,111) size 0x0 - RenderText {#text} at (0,114) size 36x19 - text run at (0,114) width 36: "&&&&" - RenderBR {BR} at (36,130) size 0x0 - RenderText {#text} at (0,133) size 12x19 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,149) size 0x0 - RenderText {#text} at (0,152) size 20x19 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,168) size 0x0 - RenderText {#text} at (0,171) size 20x19 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,187) size 0x0 - RenderText {#text} at (0,190) size 16x19 - text run at (0,190) width 16: "****" - RenderBR {BR} at (16,206) size 0x0 - RenderText {#text} at (0,209) size 36x19 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,225) size 0x0 - RenderText {#text} at (0,228) size 12x19 - text run at (0,228) width 12: ",,,," - RenderBR {BR} at (12,244) size 0x0 - RenderText {#text} at (0,247) size 20x19 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,263) size 0x0 - RenderText {#text} at (0,266) size 12x19 - text run at (0,266) width 12: "...." - RenderBR {BR} at (12,282) size 0x0 - RenderText {#text} at (0,285) size 24x19 - text run at (0,285) width 24: "////" - RenderBR {BR} at (24,301) size 0x0 - RenderText {#text} at (0,304) size 36x19 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,323) size 24x19 - text run at (0,323) width 24: "1111" - RenderBR {BR} at (24,339) size 0x0 - RenderText {#text} at (0,342) size 32x19 - text run at (0,342) width 32: "2222" - RenderBR {BR} at (32,358) size 0x0 - RenderText {#text} at (0,361) size 32x19 - text run at (0,361) width 32: "3333" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "4444" - RenderBR {BR} at (32,396) size 0x0 - RenderText {#text} at (0,399) size 36x19 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,418) size 36x19 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,434) size 0x0 - RenderText {#text} at (0,437) size 24x19 - text run at (0,437) width 24: "7777" - RenderBR {BR} at (24,453) size 0x0 - RenderText {#text} at (0,456) size 36x19 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,472) size 0x0 - RenderText {#text} at (0,475) size 36x19 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,491) size 0x0 - RenderText {#text} at (0,494) size 12x19 - text run at (0,494) width 12: "::::" - RenderBR {BR} at (12,510) size 0x0 - RenderText {#text} at (0,513) size 12x19 - text run at (0,513) width 12: ";;;;" - RenderBR {BR} at (12,529) size 0x0 - RenderText {#text} at (0,532) size 36x19 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,548) size 0x0 - RenderText {#text} at (0,551) size 36x19 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,567) size 0x0 - RenderText {#text} at (0,570) size 36x19 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,586) size 0x0 - RenderText {#text} at (0,589) size 32x19 - text run at (0,589) width 32: "????" - RenderBR {BR} at (32,605) size 0x0 - RenderText {#text} at (0,608) size 48x19 - text run at (0,608) width 48: "@@@@" - RenderBR {BR} at (48,624) size 0x0 - RenderText {#text} at (0,627) size 32x19 - text run at (0,627) width 32: "AAAA" - RenderBR {BR} at (32,643) size 0x0 - RenderText {#text} at (0,646) size 36x19 - text run at (0,646) width 36: "BBBB" - RenderBR {BR} at (36,662) size 0x0 - RenderText {#text} at (0,665) size 36x19 - text run at (0,665) width 36: "CCCC" - RenderBR {BR} at (36,681) size 0x0 - RenderText {#text} at (0,684) size 36x19 - text run at (0,684) width 36: "DDDD" - RenderBR {BR} at (36,700) size 0x0 - RenderText {#text} at (0,703) size 28x19 - text run at (0,703) width 28: "EEEE" - RenderBR {BR} at (28,719) size 0x0 - RenderText {#text} at (0,722) size 24x19 - text run at (0,722) width 24: "FFFF" - RenderBR {BR} at (24,738) size 0x0 - RenderText {#text} at (0,741) size 36x19 - text run at (0,741) width 36: "GGGG" - RenderBR {BR} at (36,757) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "HHHH" - RenderBR {BR} at (36,776) size 0x0 - RenderText {#text} at (0,779) size 20x19 - text run at (0,779) width 20: "IIII" - RenderBR {BR} at (20,795) size 0x0 - RenderText {#text} at (0,798) size 20x19 - text run at (0,798) width 20: "JJJJ" - RenderBR {BR} at (20,814) size 0x0 - RenderText {#text} at (0,817) size 36x19 - text run at (0,817) width 36: "KKKK" - RenderBR {BR} at (36,833) size 0x0 - RenderText {#text} at (0,836) size 24x19 - text run at (0,836) width 24: "LLLL" - RenderBR {BR} at (24,852) size 0x0 - RenderText {#text} at (0,855) size 44x19 - text run at (0,855) width 44: "MMMM" - RenderBR {BR} at (44,871) size 0x0 - RenderText {#text} at (0,874) size 36x19 - text run at (0,874) width 36: "NNNN" - RenderBR {BR} at (36,890) size 0x0 - RenderText {#text} at (0,893) size 36x19 - text run at (0,893) width 36: "OOOO" - RenderBR {BR} at (36,909) size 0x0 - RenderText {#text} at (0,912) size 32x19 - text run at (0,912) width 32: "PPPP" - RenderBR {BR} at (32,928) size 0x0 - RenderText {#text} at (0,931) size 36x19 - text run at (0,931) width 36: "QQQQ" - RenderBR {BR} at (36,947) size 0x0 - RenderText {#text} at (0,950) size 36x19 - text run at (0,950) width 36: "RRRR" - RenderBR {BR} at (36,966) size 0x0 - RenderText {#text} at (0,969) size 32x19 - text run at (0,969) width 32: "SSSS" - RenderBR {BR} at (32,985) size 0x0 - RenderText {#text} at (0,988) size 28x19 - text run at (0,988) width 28: "TTTT" - RenderBR {BR} at (28,1004) size 0x0 - RenderText {#text} at (0,1007) size 36x19 - text run at (0,1007) width 36: "UUUU" - RenderBR {BR} at (36,1023) size 0x0 - RenderText {#text} at (0,1026) size 32x19 - text run at (0,1026) width 32: "VVVV" - RenderBR {BR} at (32,1042) size 0x0 - RenderText {#text} at (0,1045) size 52x19 - text run at (0,1045) width 52: "WWWW" - RenderBR {BR} at (52,1061) size 0x0 - RenderText {#text} at (0,1064) size 32x19 - text run at (0,1064) width 32: "XXXX" - RenderBR {BR} at (32,1080) size 0x0 - RenderText {#text} at (0,1083) size 32x19 - text run at (0,1083) width 32: "YYYY" - RenderBR {BR} at (32,1099) size 0x0 - RenderText {#text} at (0,1102) size 24x19 - text run at (0,1102) width 24: "ZZZZ" - RenderBR {BR} at (24,1118) size 0x0 - RenderText {#text} at (0,1121) size 20x19 - text run at (0,1121) width 20: "[[[[" - RenderBR {BR} at (20,1137) size 0x0 - RenderText {#text} at (0,1140) size 24x19 - text run at (0,1140) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1156) size 0x0 - RenderText {#text} at (0,1159) size 20x19 - text run at (0,1159) width 20: "]]]]" - RenderBR {BR} at (20,1175) size 0x0 - RenderText {#text} at (0,1178) size 32x19 - text run at (0,1178) width 32: "^^^^" - RenderBR {BR} at (32,1194) size 0x0 - RenderText {#text} at (0,1197) size 36x19 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1213) size 0x0 - RenderText {#text} at (0,1216) size 20x19 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1232) size 0x0 - RenderText {#text} at (0,1235) size 32x19 - text run at (0,1235) width 32: "aaaa" - RenderBR {BR} at (32,1251) size 0x0 - RenderText {#text} at (0,1254) size 32x19 - text run at (0,1254) width 32: "bbbb" - RenderBR {BR} at (32,1270) size 0x0 - RenderText {#text} at (0,1273) size 32x19 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1289) size 0x0 - RenderText {#text} at (0,1292) size 32x19 - text run at (0,1292) width 32: "dddd" - RenderBR {BR} at (32,1308) size 0x0 - RenderText {#text} at (0,1311) size 32x19 - text run at (0,1311) width 32: "eeee" - RenderBR {BR} at (32,1327) size 0x0 - RenderText {#text} at (0,1330) size 20x19 - text run at (0,1330) width 20: "ffff" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1349) size 32x19 - text run at (0,1349) width 32: "gggg" - RenderBR {BR} at (32,1365) size 0x0 - RenderText {#text} at (0,1368) size 32x19 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1384) size 0x0 - RenderText {#text} at (0,1387) size 16x19 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1403) size 0x0 - RenderText {#text} at (0,1406) size 16x19 - text run at (0,1406) width 16: "jjjj" - RenderBR {BR} at (16,1422) size 0x0 - RenderText {#text} at (0,1425) size 32x19 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1441) size 0x0 - RenderText {#text} at (0,1444) size 16x19 - text run at (0,1444) width 16: "llll" - RenderBR {BR} at (16,1460) size 0x0 - RenderText {#text} at (0,1463) size 48x19 - text run at (0,1463) width 48: "mmmm" - RenderBR {BR} at (48,1479) size 0x0 - RenderText {#text} at (0,1482) size 32x19 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1498) size 0x0 - RenderText {#text} at (0,1501) size 32x19 - text run at (0,1501) width 32: "oooo" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 32x19 - text run at (0,1520) width 32: "pppp" - RenderBR {BR} at (32,1536) size 0x0 - RenderText {#text} at (0,1539) size 32x19 - text run at (0,1539) width 32: "qqqq" - RenderBR {BR} at (32,1555) size 0x0 - RenderText {#text} at (0,1558) size 24x19 - text run at (0,1558) width 24: "rrrr" - RenderBR {BR} at (24,1574) size 0x0 - RenderText {#text} at (0,1577) size 32x19 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1593) size 0x0 - RenderText {#text} at (0,1596) size 20x19 - text run at (0,1596) width 20: "tttt" - RenderBR {BR} at (20,1612) size 0x0 - RenderText {#text} at (0,1615) size 32x19 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1631) size 0x0 - RenderText {#text} at (0,1634) size 28x19 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1650) size 0x0 - RenderText {#text} at (0,1653) size 44x19 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1669) size 0x0 - RenderText {#text} at (0,1672) size 28x19 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1688) size 0x0 - RenderText {#text} at (0,1691) size 28x19 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1707) size 0x0 - RenderText {#text} at (0,1710) size 24x19 - text run at (0,1710) width 24: "zzzz" - RenderBR {BR} at (24,1726) size 0x0 - RenderText {#text} at (0,1729) size 24x19 - text run at (0,1729) width 24: "{{{{" - RenderBR {BR} at (24,1745) size 0x0 - RenderText {#text} at (0,1748) size 16x19 - text run at (0,1748) width 16: "||||" - RenderBR {BR} at (16,1764) size 0x0 - RenderText {#text} at (0,1767) size 24x19 - text run at (0,1767) width 24: "}}}}" - RenderBR {BR} at (24,1783) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1802) size 769x1786 - RenderInline {I} at (0,0) size 52x1786 - RenderText {#text} at (0,0) size 12x19 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,16) size 0x0 - RenderText {#text} at (0,19) size 16x19 - text run at (0,19) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,38) size 24x19 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,54) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,73) size 0x0 - RenderText {#text} at (0,76) size 36x19 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,92) size 0x0 - RenderText {#text} at (0,95) size 44x19 - text run at (0,95) width 44: "%%%%" - RenderBR {BR} at (44,111) size 0x0 - RenderText {#text} at (0,114) size 36x19 - text run at (0,114) width 36: "&&&&" - RenderBR {BR} at (36,130) size 0x0 - RenderText {#text} at (0,133) size 12x19 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,149) size 0x0 - RenderText {#text} at (0,152) size 20x19 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,168) size 0x0 - RenderText {#text} at (0,171) size 20x19 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,187) size 0x0 - RenderText {#text} at (0,190) size 16x19 - text run at (0,190) width 16: "****" - RenderBR {BR} at (16,206) size 0x0 - RenderText {#text} at (0,209) size 36x19 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,225) size 0x0 - RenderText {#text} at (0,228) size 12x19 - text run at (0,228) width 12: ",,,," - RenderBR {BR} at (12,244) size 0x0 - RenderText {#text} at (0,247) size 20x19 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,263) size 0x0 - RenderText {#text} at (0,266) size 12x19 - text run at (0,266) width 12: "...." - RenderBR {BR} at (12,282) size 0x0 - RenderText {#text} at (0,285) size 24x19 - text run at (0,285) width 24: "////" - RenderBR {BR} at (24,301) size 0x0 - RenderText {#text} at (0,304) size 36x19 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,323) size 24x19 - text run at (0,323) width 24: "1111" - RenderBR {BR} at (24,339) size 0x0 - RenderText {#text} at (0,342) size 32x19 - text run at (0,342) width 32: "2222" - RenderBR {BR} at (32,358) size 0x0 - RenderText {#text} at (0,361) size 32x19 - text run at (0,361) width 32: "3333" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "4444" - RenderBR {BR} at (32,396) size 0x0 - RenderText {#text} at (0,399) size 36x19 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,418) size 36x19 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,434) size 0x0 - RenderText {#text} at (0,437) size 24x19 - text run at (0,437) width 24: "7777" - RenderBR {BR} at (24,453) size 0x0 - RenderText {#text} at (0,456) size 36x19 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,472) size 0x0 - RenderText {#text} at (0,475) size 36x19 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,491) size 0x0 - RenderText {#text} at (0,494) size 12x19 - text run at (0,494) width 12: "::::" - RenderBR {BR} at (12,510) size 0x0 - RenderText {#text} at (0,513) size 12x19 - text run at (0,513) width 12: ";;;;" - RenderBR {BR} at (12,529) size 0x0 - RenderText {#text} at (0,532) size 36x19 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,548) size 0x0 - RenderText {#text} at (0,551) size 36x19 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,567) size 0x0 - RenderText {#text} at (0,570) size 36x19 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,586) size 0x0 - RenderText {#text} at (0,589) size 32x19 - text run at (0,589) width 32: "????" - RenderBR {BR} at (32,605) size 0x0 - RenderText {#text} at (0,608) size 48x19 - text run at (0,608) width 48: "@@@@" - RenderBR {BR} at (48,624) size 0x0 - RenderText {#text} at (0,627) size 32x19 - text run at (0,627) width 32: "AAAA" - RenderBR {BR} at (32,643) size 0x0 - RenderText {#text} at (0,646) size 36x19 - text run at (0,646) width 36: "BBBB" - RenderBR {BR} at (36,662) size 0x0 - RenderText {#text} at (0,665) size 36x19 - text run at (0,665) width 36: "CCCC" - RenderBR {BR} at (36,681) size 0x0 - RenderText {#text} at (0,684) size 36x19 - text run at (0,684) width 36: "DDDD" - RenderBR {BR} at (36,700) size 0x0 - RenderText {#text} at (0,703) size 28x19 - text run at (0,703) width 28: "EEEE" - RenderBR {BR} at (28,719) size 0x0 - RenderText {#text} at (0,722) size 24x19 - text run at (0,722) width 24: "FFFF" - RenderBR {BR} at (24,738) size 0x0 - RenderText {#text} at (0,741) size 36x19 - text run at (0,741) width 36: "GGGG" - RenderBR {BR} at (36,757) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "HHHH" - RenderBR {BR} at (36,776) size 0x0 - RenderText {#text} at (0,779) size 20x19 - text run at (0,779) width 20: "IIII" - RenderBR {BR} at (20,795) size 0x0 - RenderText {#text} at (0,798) size 20x19 - text run at (0,798) width 20: "JJJJ" - RenderBR {BR} at (20,814) size 0x0 - RenderText {#text} at (0,817) size 36x19 - text run at (0,817) width 36: "KKKK" - RenderBR {BR} at (36,833) size 0x0 - RenderText {#text} at (0,836) size 24x19 - text run at (0,836) width 24: "LLLL" - RenderBR {BR} at (24,852) size 0x0 - RenderText {#text} at (0,855) size 44x19 - text run at (0,855) width 44: "MMMM" - RenderBR {BR} at (44,871) size 0x0 - RenderText {#text} at (0,874) size 36x19 - text run at (0,874) width 36: "NNNN" - RenderBR {BR} at (36,890) size 0x0 - RenderText {#text} at (0,893) size 36x19 - text run at (0,893) width 36: "OOOO" - RenderBR {BR} at (36,909) size 0x0 - RenderText {#text} at (0,912) size 32x19 - text run at (0,912) width 32: "PPPP" - RenderBR {BR} at (32,928) size 0x0 - RenderText {#text} at (0,931) size 36x19 - text run at (0,931) width 36: "QQQQ" - RenderBR {BR} at (36,947) size 0x0 - RenderText {#text} at (0,950) size 36x19 - text run at (0,950) width 36: "RRRR" - RenderBR {BR} at (36,966) size 0x0 - RenderText {#text} at (0,969) size 32x19 - text run at (0,969) width 32: "SSSS" - RenderBR {BR} at (32,985) size 0x0 - RenderText {#text} at (0,988) size 28x19 - text run at (0,988) width 28: "TTTT" - RenderBR {BR} at (28,1004) size 0x0 - RenderText {#text} at (0,1007) size 36x19 - text run at (0,1007) width 36: "UUUU" - RenderBR {BR} at (36,1023) size 0x0 - RenderText {#text} at (0,1026) size 32x19 - text run at (0,1026) width 32: "VVVV" - RenderBR {BR} at (32,1042) size 0x0 - RenderText {#text} at (0,1045) size 52x19 - text run at (0,1045) width 52: "WWWW" - RenderBR {BR} at (52,1061) size 0x0 - RenderText {#text} at (0,1064) size 32x19 - text run at (0,1064) width 32: "XXXX" - RenderBR {BR} at (32,1080) size 0x0 - RenderText {#text} at (0,1083) size 32x19 - text run at (0,1083) width 32: "YYYY" - RenderBR {BR} at (32,1099) size 0x0 - RenderText {#text} at (0,1102) size 24x19 - text run at (0,1102) width 24: "ZZZZ" - RenderBR {BR} at (24,1118) size 0x0 - RenderText {#text} at (0,1121) size 20x19 - text run at (0,1121) width 20: "[[[[" - RenderBR {BR} at (20,1137) size 0x0 - RenderText {#text} at (0,1140) size 24x19 - text run at (0,1140) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1156) size 0x0 - RenderText {#text} at (0,1159) size 20x19 - text run at (0,1159) width 20: "]]]]" - RenderBR {BR} at (20,1175) size 0x0 - RenderText {#text} at (0,1178) size 32x19 - text run at (0,1178) width 32: "^^^^" - RenderBR {BR} at (32,1194) size 0x0 - RenderText {#text} at (0,1197) size 36x19 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1213) size 0x0 - RenderText {#text} at (0,1216) size 20x19 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1232) size 0x0 - RenderText {#text} at (0,1235) size 32x19 - text run at (0,1235) width 32: "aaaa" - RenderBR {BR} at (32,1251) size 0x0 - RenderText {#text} at (0,1254) size 32x19 - text run at (0,1254) width 32: "bbbb" - RenderBR {BR} at (32,1270) size 0x0 - RenderText {#text} at (0,1273) size 32x19 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1289) size 0x0 - RenderText {#text} at (0,1292) size 32x19 - text run at (0,1292) width 32: "dddd" - RenderBR {BR} at (32,1308) size 0x0 - RenderText {#text} at (0,1311) size 32x19 - text run at (0,1311) width 32: "eeee" - RenderBR {BR} at (32,1327) size 0x0 - RenderText {#text} at (0,1330) size 20x19 - text run at (0,1330) width 20: "ffff" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1349) size 32x19 - text run at (0,1349) width 32: "gggg" - RenderBR {BR} at (32,1365) size 0x0 - RenderText {#text} at (0,1368) size 32x19 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1384) size 0x0 - RenderText {#text} at (0,1387) size 16x19 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1403) size 0x0 - RenderText {#text} at (0,1406) size 16x19 - text run at (0,1406) width 16: "jjjj" - RenderBR {BR} at (16,1422) size 0x0 - RenderText {#text} at (0,1425) size 32x19 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1441) size 0x0 - RenderText {#text} at (0,1444) size 16x19 - text run at (0,1444) width 16: "llll" - RenderBR {BR} at (16,1460) size 0x0 - RenderText {#text} at (0,1463) size 48x19 - text run at (0,1463) width 48: "mmmm" - RenderBR {BR} at (48,1479) size 0x0 - RenderText {#text} at (0,1482) size 32x19 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1498) size 0x0 - RenderText {#text} at (0,1501) size 32x19 - text run at (0,1501) width 32: "oooo" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 32x19 - text run at (0,1520) width 32: "pppp" - RenderBR {BR} at (32,1536) size 0x0 - RenderText {#text} at (0,1539) size 32x19 - text run at (0,1539) width 32: "qqqq" - RenderBR {BR} at (32,1555) size 0x0 - RenderText {#text} at (0,1558) size 24x19 - text run at (0,1558) width 24: "rrrr" - RenderBR {BR} at (24,1574) size 0x0 - RenderText {#text} at (0,1577) size 32x19 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1593) size 0x0 - RenderText {#text} at (0,1596) size 20x19 - text run at (0,1596) width 20: "tttt" - RenderBR {BR} at (20,1612) size 0x0 - RenderText {#text} at (0,1615) size 32x19 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1631) size 0x0 - RenderText {#text} at (0,1634) size 28x19 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1650) size 0x0 - RenderText {#text} at (0,1653) size 44x19 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1669) size 0x0 - RenderText {#text} at (0,1672) size 28x19 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1688) size 0x0 - RenderText {#text} at (0,1691) size 28x19 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1707) size 0x0 - RenderText {#text} at (0,1710) size 24x19 - text run at (0,1710) width 24: "zzzz" - RenderBR {BR} at (24,1726) size 0x0 - RenderText {#text} at (0,1729) size 24x19 - text run at (0,1729) width 24: "{{{{" - RenderBR {BR} at (24,1745) size 0x0 - RenderText {#text} at (0,1748) size 16x19 - text run at (0,1748) width 16: "||||" - RenderBR {BR} at (16,1764) size 0x0 - RenderText {#text} at (0,1767) size 24x19 - text run at (0,1767) width 24: "}}}}" - RenderBR {BR} at (24,1783) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5406) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5406) size 769x1786 - RenderInline {FONT} at (0,0) size 52x1786 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 52x1786 - RenderInline {I} at (0,0) size 52x1786 - RenderText {#text} at (0,0) size 12x19 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,16) size 0x0 - RenderText {#text} at (0,19) size 16x19 - text run at (0,19) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,38) size 24x19 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,54) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,73) size 0x0 - RenderText {#text} at (0,76) size 36x19 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,92) size 0x0 - RenderText {#text} at (0,95) size 44x19 - text run at (0,95) width 44: "%%%%" - RenderBR {BR} at (44,111) size 0x0 - RenderText {#text} at (0,114) size 36x19 - text run at (0,114) width 36: "&&&&" - RenderBR {BR} at (36,130) size 0x0 - RenderText {#text} at (0,133) size 12x19 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,149) size 0x0 - RenderText {#text} at (0,152) size 20x19 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,168) size 0x0 - RenderText {#text} at (0,171) size 20x19 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,187) size 0x0 - RenderText {#text} at (0,190) size 16x19 - text run at (0,190) width 16: "****" - RenderBR {BR} at (16,206) size 0x0 - RenderText {#text} at (0,209) size 36x19 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,225) size 0x0 - RenderText {#text} at (0,228) size 12x19 - text run at (0,228) width 12: ",,,," - RenderBR {BR} at (12,244) size 0x0 - RenderText {#text} at (0,247) size 20x19 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,263) size 0x0 - RenderText {#text} at (0,266) size 12x19 - text run at (0,266) width 12: "...." - RenderBR {BR} at (12,282) size 0x0 - RenderText {#text} at (0,285) size 24x19 - text run at (0,285) width 24: "////" - RenderBR {BR} at (24,301) size 0x0 - RenderText {#text} at (0,304) size 36x19 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,320) size 0x0 - RenderText {#text} at (0,323) size 24x19 - text run at (0,323) width 24: "1111" - RenderBR {BR} at (24,339) size 0x0 - RenderText {#text} at (0,342) size 32x19 - text run at (0,342) width 32: "2222" - RenderBR {BR} at (32,358) size 0x0 - RenderText {#text} at (0,361) size 32x19 - text run at (0,361) width 32: "3333" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "4444" - RenderBR {BR} at (32,396) size 0x0 - RenderText {#text} at (0,399) size 36x19 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,418) size 36x19 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,434) size 0x0 - RenderText {#text} at (0,437) size 24x19 - text run at (0,437) width 24: "7777" - RenderBR {BR} at (24,453) size 0x0 - RenderText {#text} at (0,456) size 36x19 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,472) size 0x0 - RenderText {#text} at (0,475) size 36x19 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,491) size 0x0 - RenderText {#text} at (0,494) size 12x19 - text run at (0,494) width 12: "::::" - RenderBR {BR} at (12,510) size 0x0 - RenderText {#text} at (0,513) size 12x19 - text run at (0,513) width 12: ";;;;" - RenderBR {BR} at (12,529) size 0x0 - RenderText {#text} at (0,532) size 36x19 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,548) size 0x0 - RenderText {#text} at (0,551) size 36x19 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,567) size 0x0 - RenderText {#text} at (0,570) size 36x19 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,586) size 0x0 - RenderText {#text} at (0,589) size 32x19 - text run at (0,589) width 32: "????" - RenderBR {BR} at (32,605) size 0x0 - RenderText {#text} at (0,608) size 48x19 - text run at (0,608) width 48: "@@@@" - RenderBR {BR} at (48,624) size 0x0 - RenderText {#text} at (0,627) size 32x19 - text run at (0,627) width 32: "AAAA" - RenderBR {BR} at (32,643) size 0x0 - RenderText {#text} at (0,646) size 36x19 - text run at (0,646) width 36: "BBBB" - RenderBR {BR} at (36,662) size 0x0 - RenderText {#text} at (0,665) size 36x19 - text run at (0,665) width 36: "CCCC" - RenderBR {BR} at (36,681) size 0x0 - RenderText {#text} at (0,684) size 36x19 - text run at (0,684) width 36: "DDDD" - RenderBR {BR} at (36,700) size 0x0 - RenderText {#text} at (0,703) size 28x19 - text run at (0,703) width 28: "EEEE" - RenderBR {BR} at (28,719) size 0x0 - RenderText {#text} at (0,722) size 24x19 - text run at (0,722) width 24: "FFFF" - RenderBR {BR} at (24,738) size 0x0 - RenderText {#text} at (0,741) size 36x19 - text run at (0,741) width 36: "GGGG" - RenderBR {BR} at (36,757) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "HHHH" - RenderBR {BR} at (36,776) size 0x0 - RenderText {#text} at (0,779) size 20x19 - text run at (0,779) width 20: "IIII" - RenderBR {BR} at (20,795) size 0x0 - RenderText {#text} at (0,798) size 20x19 - text run at (0,798) width 20: "JJJJ" - RenderBR {BR} at (20,814) size 0x0 - RenderText {#text} at (0,817) size 36x19 - text run at (0,817) width 36: "KKKK" - RenderBR {BR} at (36,833) size 0x0 - RenderText {#text} at (0,836) size 24x19 - text run at (0,836) width 24: "LLLL" - RenderBR {BR} at (24,852) size 0x0 - RenderText {#text} at (0,855) size 44x19 - text run at (0,855) width 44: "MMMM" - RenderBR {BR} at (44,871) size 0x0 - RenderText {#text} at (0,874) size 36x19 - text run at (0,874) width 36: "NNNN" - RenderBR {BR} at (36,890) size 0x0 - RenderText {#text} at (0,893) size 36x19 - text run at (0,893) width 36: "OOOO" - RenderBR {BR} at (36,909) size 0x0 - RenderText {#text} at (0,912) size 32x19 - text run at (0,912) width 32: "PPPP" - RenderBR {BR} at (32,928) size 0x0 - RenderText {#text} at (0,931) size 36x19 - text run at (0,931) width 36: "QQQQ" - RenderBR {BR} at (36,947) size 0x0 - RenderText {#text} at (0,950) size 36x19 - text run at (0,950) width 36: "RRRR" - RenderBR {BR} at (36,966) size 0x0 - RenderText {#text} at (0,969) size 32x19 - text run at (0,969) width 32: "SSSS" - RenderBR {BR} at (32,985) size 0x0 - RenderText {#text} at (0,988) size 28x19 - text run at (0,988) width 28: "TTTT" - RenderBR {BR} at (28,1004) size 0x0 - RenderText {#text} at (0,1007) size 36x19 - text run at (0,1007) width 36: "UUUU" - RenderBR {BR} at (36,1023) size 0x0 - RenderText {#text} at (0,1026) size 32x19 - text run at (0,1026) width 32: "VVVV" - RenderBR {BR} at (32,1042) size 0x0 - RenderText {#text} at (0,1045) size 52x19 - text run at (0,1045) width 52: "WWWW" - RenderBR {BR} at (52,1061) size 0x0 - RenderText {#text} at (0,1064) size 32x19 - text run at (0,1064) width 32: "XXXX" - RenderBR {BR} at (32,1080) size 0x0 - RenderText {#text} at (0,1083) size 32x19 - text run at (0,1083) width 32: "YYYY" - RenderBR {BR} at (32,1099) size 0x0 - RenderText {#text} at (0,1102) size 24x19 - text run at (0,1102) width 24: "ZZZZ" - RenderBR {BR} at (24,1118) size 0x0 - RenderText {#text} at (0,1121) size 20x19 - text run at (0,1121) width 20: "[[[[" - RenderBR {BR} at (20,1137) size 0x0 - RenderText {#text} at (0,1140) size 24x19 - text run at (0,1140) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1156) size 0x0 - RenderText {#text} at (0,1159) size 20x19 - text run at (0,1159) width 20: "]]]]" - RenderBR {BR} at (20,1175) size 0x0 - RenderText {#text} at (0,1178) size 32x19 - text run at (0,1178) width 32: "^^^^" - RenderBR {BR} at (32,1194) size 0x0 - RenderText {#text} at (0,1197) size 36x19 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1213) size 0x0 - RenderText {#text} at (0,1216) size 20x19 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1232) size 0x0 - RenderText {#text} at (0,1235) size 32x19 - text run at (0,1235) width 32: "aaaa" - RenderBR {BR} at (32,1251) size 0x0 - RenderText {#text} at (0,1254) size 32x19 - text run at (0,1254) width 32: "bbbb" - RenderBR {BR} at (32,1270) size 0x0 - RenderText {#text} at (0,1273) size 32x19 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1289) size 0x0 - RenderText {#text} at (0,1292) size 32x19 - text run at (0,1292) width 32: "dddd" - RenderBR {BR} at (32,1308) size 0x0 - RenderText {#text} at (0,1311) size 32x19 - text run at (0,1311) width 32: "eeee" - RenderBR {BR} at (32,1327) size 0x0 - RenderText {#text} at (0,1330) size 20x19 - text run at (0,1330) width 20: "ffff" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1349) size 32x19 - text run at (0,1349) width 32: "gggg" - RenderBR {BR} at (32,1365) size 0x0 - RenderText {#text} at (0,1368) size 32x19 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1384) size 0x0 - RenderText {#text} at (0,1387) size 16x19 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1403) size 0x0 - RenderText {#text} at (0,1406) size 16x19 - text run at (0,1406) width 16: "jjjj" - RenderBR {BR} at (16,1422) size 0x0 - RenderText {#text} at (0,1425) size 32x19 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1441) size 0x0 - RenderText {#text} at (0,1444) size 16x19 - text run at (0,1444) width 16: "llll" - RenderBR {BR} at (16,1460) size 0x0 - RenderText {#text} at (0,1463) size 48x19 - text run at (0,1463) width 48: "mmmm" - RenderBR {BR} at (48,1479) size 0x0 - RenderText {#text} at (0,1482) size 32x19 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1498) size 0x0 - RenderText {#text} at (0,1501) size 32x19 - text run at (0,1501) width 32: "oooo" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 32x19 - text run at (0,1520) width 32: "pppp" - RenderBR {BR} at (32,1536) size 0x0 - RenderText {#text} at (0,1539) size 32x19 - text run at (0,1539) width 32: "qqqq" - RenderBR {BR} at (32,1555) size 0x0 - RenderText {#text} at (0,1558) size 24x19 - text run at (0,1558) width 24: "rrrr" - RenderBR {BR} at (24,1574) size 0x0 - RenderText {#text} at (0,1577) size 32x19 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1593) size 0x0 - RenderText {#text} at (0,1596) size 20x19 - text run at (0,1596) width 20: "tttt" - RenderBR {BR} at (20,1612) size 0x0 - RenderText {#text} at (0,1615) size 32x19 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1631) size 0x0 - RenderText {#text} at (0,1634) size 28x19 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1650) size 0x0 - RenderText {#text} at (0,1653) size 44x19 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1669) size 0x0 - RenderText {#text} at (0,1672) size 28x19 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1688) size 0x0 - RenderText {#text} at (0,1691) size 28x19 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1707) size 0x0 - RenderText {#text} at (0,1710) size 24x19 - text run at (0,1710) width 24: "zzzz" - RenderBR {BR} at (24,1726) size 0x0 - RenderText {#text} at (0,1729) size 24x19 - text run at (0,1729) width 24: "{{{{" - RenderBR {BR} at (24,1745) size 0x0 - RenderText {#text} at (0,1748) size 16x19 - text run at (0,1748) width 16: "||||" - RenderBR {BR} at (16,1764) size 0x0 - RenderText {#text} at (0,1767) size 24x19 - text run at (0,1767) width 24: "}}}}" - RenderBR {BR} at (24,1783) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.checksum deleted file mode 100644 index ce49455..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -aee5f43df2320754c6b054dd44f5d7bb
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.png Binary files differdeleted file mode 100644 index 58c9176..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.txt deleted file mode 100644 index 7e35bfa..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x6840 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x6840 - RenderBlock {HTML} at (0,0) size 785x6840 - RenderBody {BODY} at (8,8) size 769x6816 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderInline {FONT} at (0,0) size 60x1692 - RenderText {#text} at (0,0) size 20x18 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,15) size 0x0 - RenderText {#text} at (0,18) size 21x18 - text run at (0,18) width 21: "!!!!" - RenderBR {BR} at (21,33) size 0x0 - RenderText {#text} at (0,36) size 24x18 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,51) size 0x0 - RenderText {#text} at (0,54) size 41x18 - text run at (0,54) width 41: "####" - RenderBR {BR} at (41,69) size 0x0 - RenderText {#text} at (0,72) size 41x18 - text run at (0,72) width 41: "$$$$" - RenderBR {BR} at (41,87) size 0x0 - RenderText {#text} at (0,90) size 43x18 - text run at (0,90) width 43: "%%%%" - RenderBR {BR} at (43,105) size 0x0 - RenderText {#text} at (0,108) size 45x18 - text run at (0,108) width 45: "&&&&" - RenderBR {BR} at (45,123) size 0x0 - RenderText {#text} at (0,126) size 15x18 - text run at (0,126) width 15: "''''" - RenderBR {BR} at (15,141) size 0x0 - RenderText {#text} at (0,144) size 21x18 - text run at (0,144) width 21: "((((" - RenderBR {BR} at (21,159) size 0x0 - RenderText {#text} at (0,162) size 21x18 - text run at (0,162) width 21: "))))" - RenderBR {BR} at (21,177) size 0x0 - RenderText {#text} at (0,180) size 31x18 - text run at (0,180) width 31: "****" - RenderBR {BR} at (31,195) size 0x0 - RenderText {#text} at (0,198) size 51x18 - text run at (0,198) width 51: "++++" - RenderBR {BR} at (51,213) size 0x0 - RenderText {#text} at (0,216) size 21x18 - text run at (0,216) width 21: ",,,," - RenderBR {BR} at (21,231) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,249) size 0x0 - RenderText {#text} at (0,252) size 21x18 - text run at (0,252) width 21: "...." - RenderBR {BR} at (21,267) size 0x0 - RenderText {#text} at (0,270) size 34x18 - text run at (0,270) width 34: "////" - RenderBR {BR} at (34,285) size 0x0 - RenderText {#text} at (0,288) size 41x18 - text run at (0,288) width 41: "0000" - RenderBR {BR} at (41,303) size 0x0 - RenderText {#text} at (0,306) size 41x18 - text run at (0,306) width 41: "1111" - RenderBR {BR} at (41,321) size 0x0 - RenderText {#text} at (0,324) size 41x18 - text run at (0,324) width 41: "2222" - RenderBR {BR} at (41,339) size 0x0 - RenderText {#text} at (0,342) size 41x18 - text run at (0,342) width 41: "3333" - RenderBR {BR} at (41,357) size 0x0 - RenderText {#text} at (0,360) size 41x18 - text run at (0,360) width 41: "4444" - RenderBR {BR} at (41,375) size 0x0 - RenderText {#text} at (0,378) size 41x18 - text run at (0,378) width 41: "5555" - RenderBR {BR} at (41,393) size 0x0 - RenderText {#text} at (0,396) size 41x18 - text run at (0,396) width 41: "6666" - RenderBR {BR} at (41,411) size 0x0 - RenderText {#text} at (0,414) size 41x18 - text run at (0,414) width 41: "7777" - RenderBR {BR} at (41,429) size 0x0 - RenderText {#text} at (0,432) size 41x18 - text run at (0,432) width 41: "8888" - RenderBR {BR} at (41,447) size 0x0 - RenderText {#text} at (0,450) size 41x18 - text run at (0,450) width 41: "9999" - RenderBR {BR} at (41,465) size 0x0 - RenderText {#text} at (0,468) size 21x18 - text run at (0,468) width 21: "::::" - RenderBR {BR} at (21,483) size 0x0 - RenderText {#text} at (0,486) size 21x18 - text run at (0,486) width 21: ";;;;" - RenderBR {BR} at (21,501) size 0x0 - RenderText {#text} at (0,504) size 51x18 - text run at (0,504) width 51: "<<<<" - RenderBR {BR} at (51,519) size 0x0 - RenderText {#text} at (0,522) size 51x18 - text run at (0,522) width 51: "====" - RenderBR {BR} at (51,537) size 0x0 - RenderText {#text} at (0,540) size 51x18 - text run at (0,540) width 51: ">>>>" - RenderBR {BR} at (51,555) size 0x0 - RenderText {#text} at (0,558) size 28x18 - text run at (0,558) width 28: "????" - RenderBR {BR} at (28,573) size 0x0 - RenderText {#text} at (0,576) size 55x18 - text run at (0,576) width 55: "@@@@" - RenderBR {BR} at (55,591) size 0x0 - RenderText {#text} at (0,594) size 45x18 - text run at (0,594) width 45: "AAAA" - RenderBR {BR} at (45,609) size 0x0 - RenderText {#text} at (0,612) size 37x18 - text run at (0,612) width 37: "BBBB" - RenderBR {BR} at (37,627) size 0x0 - RenderText {#text} at (0,630) size 45x18 - text run at (0,630) width 45: "CCCC" - RenderBR {BR} at (45,645) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,663) size 0x0 - RenderText {#text} at (0,666) size 35x18 - text run at (0,666) width 35: "EEEE" - RenderBR {BR} at (35,681) size 0x0 - RenderText {#text} at (0,684) size 35x18 - text run at (0,684) width 35: "FFFF" - RenderBR {BR} at (35,699) size 0x0 - RenderText {#text} at (0,702) size 47x18 - text run at (0,702) width 47: "GGGG" - RenderBR {BR} at (47,717) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,738) size 19x18 - text run at (0,738) width 19: "IIII" - RenderBR {BR} at (19,753) size 0x0 - RenderText {#text} at (0,756) size 20x18 - text run at (0,756) width 20: "JJJJ" - RenderBR {BR} at (20,771) size 0x0 - RenderText {#text} at (0,774) size 42x18 - text run at (0,774) width 42: "KKKK" - RenderBR {BR} at (42,789) size 0x0 - RenderText {#text} at (0,792) size 35x18 - text run at (0,792) width 35: "LLLL" - RenderBR {BR} at (35,807) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,825) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,843) size 0x0 - RenderText {#text} at (0,846) size 50x18 - text run at (0,846) width 50: "OOOO" - RenderBR {BR} at (50,861) size 0x0 - RenderText {#text} at (0,864) size 36x18 - text run at (0,864) width 36: "PPPP" - RenderBR {BR} at (36,879) size 0x0 - RenderText {#text} at (0,882) size 50x18 - text run at (0,882) width 50: "QQQQ" - RenderBR {BR} at (50,897) size 0x0 - RenderText {#text} at (0,900) size 41x18 - text run at (0,900) width 41: "RRRR" - RenderBR {BR} at (41,915) size 0x0 - RenderText {#text} at (0,918) size 35x18 - text run at (0,918) width 35: "SSSS" - RenderBR {BR} at (35,933) size 0x0 - RenderText {#text} at (0,936) size 41x18 - text run at (0,936) width 41: "TTTT" - RenderBR {BR} at (41,951) size 0x0 - RenderText {#text} at (0,954) size 45x18 - text run at (0,954) width 45: "UUUU" - RenderBR {BR} at (45,969) size 0x0 - RenderText {#text} at (0,972) size 42x18 - text run at (0,972) width 42: "VVVV" - RenderBR {BR} at (42,987) size 0x0 - RenderText {#text} at (0,990) size 55x18 - text run at (0,990) width 55: "WWWW" - RenderBR {BR} at (55,1005) size 0x0 - RenderText {#text} at (0,1008) size 41x18 - text run at (0,1008) width 41: "XXXX" - RenderBR {BR} at (41,1023) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1041) size 0x0 - RenderText {#text} at (0,1044) size 39x18 - text run at (0,1044) width 39: "ZZZZ" - RenderBR {BR} at (39,1059) size 0x0 - RenderText {#text} at (0,1062) size 21x18 - text run at (0,1062) width 21: "[[[[" - RenderBR {BR} at (21,1077) size 0x0 - RenderText {#text} at (0,1080) size 34x18 - text run at (0,1080) width 34: "\\\\\\\\" - RenderBR {BR} at (34,1095) size 0x0 - RenderText {#text} at (0,1098) size 21x18 - text run at (0,1098) width 21: "]]]]" - RenderBR {BR} at (21,1113) size 0x0 - RenderText {#text} at (0,1116) size 41x18 - text run at (0,1116) width 41: "^^^^" - RenderBR {BR} at (41,1131) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1149) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1167) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1185) size 0x0 - RenderText {#text} at (0,1188) size 41x18 - text run at (0,1188) width 41: "bbbb" - RenderBR {BR} at (41,1203) size 0x0 - RenderText {#text} at (0,1206) size 33x18 - text run at (0,1206) width 33: "cccc" - RenderBR {BR} at (33,1221) size 0x0 - RenderText {#text} at (0,1224) size 41x18 - text run at (0,1224) width 41: "dddd" - RenderBR {BR} at (41,1239) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1257) size 0x0 - RenderText {#text} at (0,1260) size 24x18 - text run at (0,1260) width 24: "ffff" - RenderBR {BR} at (24,1275) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1293) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1311) size 0x0 - RenderText {#text} at (0,1314) size 19x18 - text run at (0,1314) width 19: "iiii" - RenderBR {BR} at (19,1329) size 0x0 - RenderText {#text} at (0,1332) size 20x18 - text run at (0,1332) width 20: "jjjj" - RenderBR {BR} at (20,1347) size 0x0 - RenderText {#text} at (0,1350) size 38x18 - text run at (0,1350) width 38: "kkkk" - RenderBR {BR} at (38,1365) size 0x0 - RenderText {#text} at (0,1368) size 19x18 - text run at (0,1368) width 19: "llll" - RenderBR {BR} at (19,1383) size 0x0 - RenderText {#text} at (0,1386) size 60x18 - text run at (0,1386) width 60: "mmmm" - RenderBR {BR} at (60,1401) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1419) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1437) size 0x0 - RenderText {#text} at (0,1440) size 41x18 - text run at (0,1440) width 41: "pppp" - RenderBR {BR} at (41,1455) size 0x0 - RenderText {#text} at (0,1458) size 41x18 - text run at (0,1458) width 41: "qqqq" - RenderBR {BR} at (41,1473) size 0x0 - RenderText {#text} at (0,1476) size 27x18 - text run at (0,1476) width 27: "rrrr" - RenderBR {BR} at (27,1491) size 0x0 - RenderText {#text} at (0,1494) size 33x18 - text run at (0,1494) width 33: "ssss" - RenderBR {BR} at (33,1509) size 0x0 - RenderText {#text} at (0,1512) size 24x18 - text run at (0,1512) width 24: "tttt" - RenderBR {BR} at (24,1527) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1545) size 0x0 - RenderText {#text} at (0,1548) size 34x18 - text run at (0,1548) width 34: "vvvv" - RenderBR {BR} at (34,1563) size 0x0 - RenderText {#text} at (0,1566) size 50x18 - text run at (0,1566) width 50: "wwww" - RenderBR {BR} at (50,1581) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1599) size 0x0 - RenderText {#text} at (0,1602) size 34x18 - text run at (0,1602) width 34: "yyyy" - RenderBR {BR} at (34,1617) size 0x0 - RenderText {#text} at (0,1620) size 37x18 - text run at (0,1620) width 37: "zzzz" - RenderBR {BR} at (37,1635) size 0x0 - RenderText {#text} at (0,1638) size 21x18 - text run at (0,1638) width 21: "{{{{" - RenderBR {BR} at (21,1653) size 0x0 - RenderText {#text} at (0,1656) size 24x18 - text run at (0,1656) width 24: "||||" - RenderBR {BR} at (24,1671) size 0x0 - RenderText {#text} at (0,1674) size 21x18 - text run at (0,1674) width 21: "}}}}" - RenderBR {BR} at (21,1689) size 0x0 - RenderBlock (anonymous) at (0,1708) size 769x3400 - RenderBlock {P} at (0,0) size 769x1692 - RenderInline {B} at (0,0) size 63x1692 - RenderText {#text} at (0,0) size 20x18 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,15) size 0x0 - RenderText {#text} at (0,18) size 21x18 - text run at (0,18) width 21: "!!!!" - RenderBR {BR} at (21,33) size 0x0 - RenderText {#text} at (0,36) size 29x18 - text run at (0,36) width 29: "\"\"\"\"" - RenderBR {BR} at (29,51) size 0x0 - RenderText {#text} at (0,54) size 43x18 - text run at (0,54) width 43: "####" - RenderBR {BR} at (43,69) size 0x0 - RenderText {#text} at (0,72) size 43x18 - text run at (0,72) width 43: "$$$$" - RenderBR {BR} at (43,87) size 0x0 - RenderText {#text} at (0,90) size 51x18 - text run at (0,90) width 51: "%%%%" - RenderBR {BR} at (51,105) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,123) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,141) size 0x0 - RenderText {#text} at (0,144) size 24x18 - text run at (0,144) width 24: "((((" - RenderBR {BR} at (24,159) size 0x0 - RenderText {#text} at (0,162) size 24x18 - text run at (0,162) width 24: "))))" - RenderBR {BR} at (24,177) size 0x0 - RenderText {#text} at (0,180) size 30x18 - text run at (0,180) width 30: "****" - RenderBR {BR} at (30,195) size 0x0 - RenderText {#text} at (0,198) size 51x18 - text run at (0,198) width 51: "++++" - RenderBR {BR} at (51,213) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,231) size 0x0 - RenderText {#text} at (0,234) size 44x18 - text run at (0,234) width 44: "----" - RenderBR {BR} at (44,249) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,267) size 0x0 - RenderText {#text} at (0,270) size 37x18 - text run at (0,270) width 37: "////" - RenderBR {BR} at (37,285) size 0x0 - RenderText {#text} at (0,288) size 43x18 - text run at (0,288) width 43: "0000" - RenderBR {BR} at (43,303) size 0x0 - RenderText {#text} at (0,306) size 43x18 - text run at (0,306) width 43: "1111" - RenderBR {BR} at (43,321) size 0x0 - RenderText {#text} at (0,324) size 43x18 - text run at (0,324) width 43: "2222" - RenderBR {BR} at (43,339) size 0x0 - RenderText {#text} at (0,342) size 43x18 - text run at (0,342) width 43: "3333" - RenderBR {BR} at (43,357) size 0x0 - RenderText {#text} at (0,360) size 43x18 - text run at (0,360) width 43: "4444" - RenderBR {BR} at (43,375) size 0x0 - RenderText {#text} at (0,378) size 43x18 - text run at (0,378) width 43: "5555" - RenderBR {BR} at (43,393) size 0x0 - RenderText {#text} at (0,396) size 43x18 - text run at (0,396) width 43: "6666" - RenderBR {BR} at (43,411) size 0x0 - RenderText {#text} at (0,414) size 43x18 - text run at (0,414) width 43: "7777" - RenderBR {BR} at (43,429) size 0x0 - RenderText {#text} at (0,432) size 43x18 - text run at (0,432) width 43: "8888" - RenderBR {BR} at (43,447) size 0x0 - RenderText {#text} at (0,450) size 43x18 - text run at (0,450) width 43: "9999" - RenderBR {BR} at (43,465) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,483) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,501) size 0x0 - RenderText {#text} at (0,504) size 51x18 - text run at (0,504) width 51: "<<<<" - RenderBR {BR} at (51,519) size 0x0 - RenderText {#text} at (0,522) size 51x18 - text run at (0,522) width 51: "====" - RenderBR {BR} at (51,537) size 0x0 - RenderText {#text} at (0,540) size 51x18 - text run at (0,540) width 51: ">>>>" - RenderBR {BR} at (51,555) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,573) size 0x0 - RenderText {#text} at (0,576) size 55x18 - text run at (0,576) width 55: "@@@@" - RenderBR {BR} at (55,591) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,609) size 0x0 - RenderText {#text} at (0,612) size 41x18 - text run at (0,612) width 41: "BBBB" - RenderBR {BR} at (41,627) size 0x0 - RenderText {#text} at (0,630) size 46x18 - text run at (0,630) width 46: "CCCC" - RenderBR {BR} at (46,645) size 0x0 - RenderText {#text} at (0,648) size 51x18 - text run at (0,648) width 51: "DDDD" - RenderBR {BR} at (51,663) size 0x0 - RenderText {#text} at (0,666) size 39x18 - text run at (0,666) width 39: "EEEE" - RenderBR {BR} at (39,681) size 0x0 - RenderText {#text} at (0,684) size 37x18 - text run at (0,684) width 37: "FFFF" - RenderBR {BR} at (37,699) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,717) size 0x0 - RenderText {#text} at (0,720) size 50x18 - text run at (0,720) width 50: "HHHH" - RenderBR {BR} at (50,735) size 0x0 - RenderText {#text} at (0,738) size 22x18 - text run at (0,738) width 22: "IIII" - RenderBR {BR} at (22,753) size 0x0 - RenderText {#text} at (0,756) size 27x18 - text run at (0,756) width 27: "JJJJ" - RenderBR {BR} at (27,771) size 0x0 - RenderText {#text} at (0,774) size 46x18 - text run at (0,774) width 46: "KKKK" - RenderBR {BR} at (46,789) size 0x0 - RenderText {#text} at (0,792) size 38x18 - text run at (0,792) width 38: "LLLL" - RenderBR {BR} at (38,807) size 0x0 - RenderText {#text} at (0,810) size 59x18 - text run at (0,810) width 59: "MMMM" - RenderBR {BR} at (59,825) size 0x0 - RenderText {#text} at (0,828) size 50x18 - text run at (0,828) width 50: "NNNN" - RenderBR {BR} at (50,843) size 0x0 - RenderText {#text} at (0,846) size 53x18 - text run at (0,846) width 53: "OOOO" - RenderBR {BR} at (53,861) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,879) size 0x0 - RenderText {#text} at (0,882) size 53x18 - text run at (0,882) width 53: "QQQQ" - RenderBR {BR} at (53,897) size 0x0 - RenderText {#text} at (0,900) size 45x18 - text run at (0,900) width 45: "RRRR" - RenderBR {BR} at (45,915) size 0x0 - RenderText {#text} at (0,918) size 37x18 - text run at (0,918) width 37: "SSSS" - RenderBR {BR} at (37,933) size 0x0 - RenderText {#text} at (0,936) size 45x18 - text run at (0,936) width 45: "TTTT" - RenderBR {BR} at (45,951) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,969) size 0x0 - RenderText {#text} at (0,972) size 45x18 - text run at (0,972) width 45: "VVVV" - RenderBR {BR} at (45,987) size 0x0 - RenderText {#text} at (0,990) size 58x18 - text run at (0,990) width 58: "WWWW" - RenderBR {BR} at (58,1005) size 0x0 - RenderText {#text} at (0,1008) size 43x18 - text run at (0,1008) width 43: "XXXX" - RenderBR {BR} at (43,1023) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1044) size 42x18 - text run at (0,1044) width 42: "ZZZZ" - RenderBR {BR} at (42,1059) size 0x0 - RenderText {#text} at (0,1062) size 24x18 - text run at (0,1062) width 24: "[[[[" - RenderBR {BR} at (24,1077) size 0x0 - RenderText {#text} at (0,1080) size 37x18 - text run at (0,1080) width 37: "\\\\\\\\" - RenderBR {BR} at (37,1095) size 0x0 - RenderText {#text} at (0,1098) size 24x18 - text run at (0,1098) width 24: "]]]]" - RenderBR {BR} at (24,1113) size 0x0 - RenderText {#text} at (0,1116) size 43x18 - text run at (0,1116) width 43: "^^^^" - RenderBR {BR} at (43,1131) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1149) size 0x0 - RenderText {#text} at (0,1152) size 41x18 - text run at (0,1152) width 41: "````" - RenderBR {BR} at (41,1167) size 0x0 - RenderText {#text} at (0,1170) size 38x18 - text run at (0,1170) width 38: "aaaa" - RenderBR {BR} at (38,1185) size 0x0 - RenderText {#text} at (0,1188) size 43x18 - text run at (0,1188) width 43: "bbbb" - RenderBR {BR} at (43,1203) size 0x0 - RenderText {#text} at (0,1206) size 35x18 - text run at (0,1206) width 35: "cccc" - RenderBR {BR} at (35,1221) size 0x0 - RenderText {#text} at (0,1224) size 43x18 - text run at (0,1224) width 43: "dddd" - RenderBR {BR} at (43,1239) size 0x0 - RenderText {#text} at (0,1242) size 38x18 - text run at (0,1242) width 38: "eeee" - RenderBR {BR} at (38,1257) size 0x0 - RenderText {#text} at (0,1260) size 27x18 - text run at (0,1260) width 27: "ffff" - RenderBR {BR} at (27,1275) size 0x0 - RenderText {#text} at (0,1278) size 43x18 - text run at (0,1278) width 43: "gggg" - RenderBR {BR} at (43,1293) size 0x0 - RenderText {#text} at (0,1296) size 43x18 - text run at (0,1296) width 43: "hhhh" - RenderBR {BR} at (43,1311) size 0x0 - RenderText {#text} at (0,1314) size 21x18 - text run at (0,1314) width 21: "iiii" - RenderBR {BR} at (21,1329) size 0x0 - RenderText {#text} at (0,1332) size 22x18 - text run at (0,1332) width 22: "jjjj" - RenderBR {BR} at (22,1347) size 0x0 - RenderText {#text} at (0,1350) size 41x18 - text run at (0,1350) width 41: "kkkk" - RenderBR {BR} at (41,1365) size 0x0 - RenderText {#text} at (0,1368) size 21x18 - text run at (0,1368) width 21: "llll" - RenderBR {BR} at (21,1383) size 0x0 - RenderText {#text} at (0,1386) size 63x18 - text run at (0,1386) width 63: "mmmm" - RenderBR {BR} at (63,1401) size 0x0 - RenderText {#text} at (0,1404) size 43x18 - text run at (0,1404) width 43: "nnnn" - RenderBR {BR} at (43,1419) size 0x0 - RenderText {#text} at (0,1422) size 41x18 - text run at (0,1422) width 41: "oooo" - RenderBR {BR} at (41,1437) size 0x0 - RenderText {#text} at (0,1440) size 43x18 - text run at (0,1440) width 43: "pppp" - RenderBR {BR} at (43,1455) size 0x0 - RenderText {#text} at (0,1458) size 43x18 - text run at (0,1458) width 43: "qqqq" - RenderBR {BR} at (43,1473) size 0x0 - RenderText {#text} at (0,1476) size 30x18 - text run at (0,1476) width 30: "rrrr" - RenderBR {BR} at (30,1491) size 0x0 - RenderText {#text} at (0,1494) size 37x18 - text run at (0,1494) width 37: "ssss" - RenderBR {BR} at (37,1509) size 0x0 - RenderText {#text} at (0,1512) size 26x18 - text run at (0,1512) width 26: "tttt" - RenderBR {BR} at (26,1527) size 0x0 - RenderText {#text} at (0,1530) size 43x18 - text run at (0,1530) width 43: "uuuu" - RenderBR {BR} at (43,1545) size 0x0 - RenderText {#text} at (0,1548) size 38x18 - text run at (0,1548) width 38: "vvvv" - RenderBR {BR} at (38,1563) size 0x0 - RenderText {#text} at (0,1566) size 56x18 - text run at (0,1566) width 56: "wwww" - RenderBR {BR} at (56,1581) size 0x0 - RenderText {#text} at (0,1584) size 38x18 - text run at (0,1584) width 38: "xxxx" - RenderBR {BR} at (38,1599) size 0x0 - RenderText {#text} at (0,1602) size 38x18 - text run at (0,1602) width 38: "yyyy" - RenderBR {BR} at (38,1617) size 0x0 - RenderText {#text} at (0,1620) size 38x18 - text run at (0,1620) width 38: "zzzz" - RenderBR {BR} at (38,1635) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1653) size 0x0 - RenderText {#text} at (0,1656) size 25x18 - text run at (0,1656) width 25: "||||" - RenderBR {BR} at (25,1671) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1689) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1708) size 769x1692 - RenderInline {I} at (0,0) size 60x1692 - RenderText {#text} at (0,0) size 20x18 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,15) size 0x0 - RenderText {#text} at (0,18) size 21x18 - text run at (0,18) width 21: "!!!!" - RenderBR {BR} at (21,33) size 0x0 - RenderText {#text} at (0,36) size 24x18 - text run at (0,36) width 24: "\"\"\"\"" - RenderBR {BR} at (24,51) size 0x0 - RenderText {#text} at (0,54) size 41x18 - text run at (0,54) width 41: "####" - RenderBR {BR} at (41,69) size 0x0 - RenderText {#text} at (0,72) size 41x18 - text run at (0,72) width 41: "$$$$" - RenderBR {BR} at (41,87) size 0x0 - RenderText {#text} at (0,90) size 43x18 - text run at (0,90) width 43: "%%%%" - RenderBR {BR} at (43,105) size 0x0 - RenderText {#text} at (0,108) size 45x18 - text run at (0,108) width 45: "&&&&" - RenderBR {BR} at (45,123) size 0x0 - RenderText {#text} at (0,126) size 15x18 - text run at (0,126) width 15: "''''" - RenderBR {BR} at (15,141) size 0x0 - RenderText {#text} at (0,144) size 21x18 - text run at (0,144) width 21: "((((" - RenderBR {BR} at (21,159) size 0x0 - RenderText {#text} at (0,162) size 21x18 - text run at (0,162) width 21: "))))" - RenderBR {BR} at (21,177) size 0x0 - RenderText {#text} at (0,180) size 31x18 - text run at (0,180) width 31: "****" - RenderBR {BR} at (31,195) size 0x0 - RenderText {#text} at (0,198) size 51x18 - text run at (0,198) width 51: "++++" - RenderBR {BR} at (51,213) size 0x0 - RenderText {#text} at (0,216) size 21x18 - text run at (0,216) width 21: ",,,," - RenderBR {BR} at (21,231) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,249) size 0x0 - RenderText {#text} at (0,252) size 21x18 - text run at (0,252) width 21: "...." - RenderBR {BR} at (21,267) size 0x0 - RenderText {#text} at (0,270) size 34x18 - text run at (0,270) width 34: "////" - RenderBR {BR} at (34,285) size 0x0 - RenderText {#text} at (0,288) size 41x18 - text run at (0,288) width 41: "0000" - RenderBR {BR} at (41,303) size 0x0 - RenderText {#text} at (0,306) size 41x18 - text run at (0,306) width 41: "1111" - RenderBR {BR} at (41,321) size 0x0 - RenderText {#text} at (0,324) size 41x18 - text run at (0,324) width 41: "2222" - RenderBR {BR} at (41,339) size 0x0 - RenderText {#text} at (0,342) size 41x18 - text run at (0,342) width 41: "3333" - RenderBR {BR} at (41,357) size 0x0 - RenderText {#text} at (0,360) size 41x18 - text run at (0,360) width 41: "4444" - RenderBR {BR} at (41,375) size 0x0 - RenderText {#text} at (0,378) size 41x18 - text run at (0,378) width 41: "5555" - RenderBR {BR} at (41,393) size 0x0 - RenderText {#text} at (0,396) size 41x18 - text run at (0,396) width 41: "6666" - RenderBR {BR} at (41,411) size 0x0 - RenderText {#text} at (0,414) size 41x18 - text run at (0,414) width 41: "7777" - RenderBR {BR} at (41,429) size 0x0 - RenderText {#text} at (0,432) size 41x18 - text run at (0,432) width 41: "8888" - RenderBR {BR} at (41,447) size 0x0 - RenderText {#text} at (0,450) size 41x18 - text run at (0,450) width 41: "9999" - RenderBR {BR} at (41,465) size 0x0 - RenderText {#text} at (0,468) size 21x18 - text run at (0,468) width 21: "::::" - RenderBR {BR} at (21,483) size 0x0 - RenderText {#text} at (0,486) size 21x18 - text run at (0,486) width 21: ";;;;" - RenderBR {BR} at (21,501) size 0x0 - RenderText {#text} at (0,504) size 51x18 - text run at (0,504) width 51: "<<<<" - RenderBR {BR} at (51,519) size 0x0 - RenderText {#text} at (0,522) size 51x18 - text run at (0,522) width 51: "====" - RenderBR {BR} at (51,537) size 0x0 - RenderText {#text} at (0,540) size 51x18 - text run at (0,540) width 51: ">>>>" - RenderBR {BR} at (51,555) size 0x0 - RenderText {#text} at (0,558) size 28x18 - text run at (0,558) width 28: "????" - RenderBR {BR} at (28,573) size 0x0 - RenderText {#text} at (0,576) size 55x18 - text run at (0,576) width 55: "@@@@" - RenderBR {BR} at (55,591) size 0x0 - RenderText {#text} at (0,594) size 45x18 - text run at (0,594) width 45: "AAAA" - RenderBR {BR} at (45,609) size 0x0 - RenderText {#text} at (0,612) size 37x18 - text run at (0,612) width 37: "BBBB" - RenderBR {BR} at (37,627) size 0x0 - RenderText {#text} at (0,630) size 45x18 - text run at (0,630) width 45: "CCCC" - RenderBR {BR} at (45,645) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,663) size 0x0 - RenderText {#text} at (0,666) size 35x18 - text run at (0,666) width 35: "EEEE" - RenderBR {BR} at (35,681) size 0x0 - RenderText {#text} at (0,684) size 35x18 - text run at (0,684) width 35: "FFFF" - RenderBR {BR} at (35,699) size 0x0 - RenderText {#text} at (0,702) size 47x18 - text run at (0,702) width 47: "GGGG" - RenderBR {BR} at (47,717) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,738) size 19x18 - text run at (0,738) width 19: "IIII" - RenderBR {BR} at (19,753) size 0x0 - RenderText {#text} at (0,756) size 20x18 - text run at (0,756) width 20: "JJJJ" - RenderBR {BR} at (20,771) size 0x0 - RenderText {#text} at (0,774) size 42x18 - text run at (0,774) width 42: "KKKK" - RenderBR {BR} at (42,789) size 0x0 - RenderText {#text} at (0,792) size 35x18 - text run at (0,792) width 35: "LLLL" - RenderBR {BR} at (35,807) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,825) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,843) size 0x0 - RenderText {#text} at (0,846) size 50x18 - text run at (0,846) width 50: "OOOO" - RenderBR {BR} at (50,861) size 0x0 - RenderText {#text} at (0,864) size 36x18 - text run at (0,864) width 36: "PPPP" - RenderBR {BR} at (36,879) size 0x0 - RenderText {#text} at (0,882) size 50x18 - text run at (0,882) width 50: "QQQQ" - RenderBR {BR} at (50,897) size 0x0 - RenderText {#text} at (0,900) size 41x18 - text run at (0,900) width 41: "RRRR" - RenderBR {BR} at (41,915) size 0x0 - RenderText {#text} at (0,918) size 35x18 - text run at (0,918) width 35: "SSSS" - RenderBR {BR} at (35,933) size 0x0 - RenderText {#text} at (0,936) size 41x18 - text run at (0,936) width 41: "TTTT" - RenderBR {BR} at (41,951) size 0x0 - RenderText {#text} at (0,954) size 45x18 - text run at (0,954) width 45: "UUUU" - RenderBR {BR} at (45,969) size 0x0 - RenderText {#text} at (0,972) size 42x18 - text run at (0,972) width 42: "VVVV" - RenderBR {BR} at (42,987) size 0x0 - RenderText {#text} at (0,990) size 55x18 - text run at (0,990) width 55: "WWWW" - RenderBR {BR} at (55,1005) size 0x0 - RenderText {#text} at (0,1008) size 41x18 - text run at (0,1008) width 41: "XXXX" - RenderBR {BR} at (41,1023) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1041) size 0x0 - RenderText {#text} at (0,1044) size 39x18 - text run at (0,1044) width 39: "ZZZZ" - RenderBR {BR} at (39,1059) size 0x0 - RenderText {#text} at (0,1062) size 21x18 - text run at (0,1062) width 21: "[[[[" - RenderBR {BR} at (21,1077) size 0x0 - RenderText {#text} at (0,1080) size 34x18 - text run at (0,1080) width 34: "\\\\\\\\" - RenderBR {BR} at (34,1095) size 0x0 - RenderText {#text} at (0,1098) size 21x18 - text run at (0,1098) width 21: "]]]]" - RenderBR {BR} at (21,1113) size 0x0 - RenderText {#text} at (0,1116) size 41x18 - text run at (0,1116) width 41: "^^^^" - RenderBR {BR} at (41,1131) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1149) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1167) size 0x0 - RenderText {#text} at (0,1170) size 36x18 - text run at (0,1170) width 36: "aaaa" - RenderBR {BR} at (36,1185) size 0x0 - RenderText {#text} at (0,1188) size 41x18 - text run at (0,1188) width 41: "bbbb" - RenderBR {BR} at (41,1203) size 0x0 - RenderText {#text} at (0,1206) size 33x18 - text run at (0,1206) width 33: "cccc" - RenderBR {BR} at (33,1221) size 0x0 - RenderText {#text} at (0,1224) size 41x18 - text run at (0,1224) width 41: "dddd" - RenderBR {BR} at (41,1239) size 0x0 - RenderText {#text} at (0,1242) size 36x18 - text run at (0,1242) width 36: "eeee" - RenderBR {BR} at (36,1257) size 0x0 - RenderText {#text} at (0,1260) size 24x18 - text run at (0,1260) width 24: "ffff" - RenderBR {BR} at (24,1275) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1293) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1311) size 0x0 - RenderText {#text} at (0,1314) size 19x18 - text run at (0,1314) width 19: "iiii" - RenderBR {BR} at (19,1329) size 0x0 - RenderText {#text} at (0,1332) size 20x18 - text run at (0,1332) width 20: "jjjj" - RenderBR {BR} at (20,1347) size 0x0 - RenderText {#text} at (0,1350) size 38x18 - text run at (0,1350) width 38: "kkkk" - RenderBR {BR} at (38,1365) size 0x0 - RenderText {#text} at (0,1368) size 19x18 - text run at (0,1368) width 19: "llll" - RenderBR {BR} at (19,1383) size 0x0 - RenderText {#text} at (0,1386) size 60x18 - text run at (0,1386) width 60: "mmmm" - RenderBR {BR} at (60,1401) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1419) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1437) size 0x0 - RenderText {#text} at (0,1440) size 41x18 - text run at (0,1440) width 41: "pppp" - RenderBR {BR} at (41,1455) size 0x0 - RenderText {#text} at (0,1458) size 41x18 - text run at (0,1458) width 41: "qqqq" - RenderBR {BR} at (41,1473) size 0x0 - RenderText {#text} at (0,1476) size 27x18 - text run at (0,1476) width 27: "rrrr" - RenderBR {BR} at (27,1491) size 0x0 - RenderText {#text} at (0,1494) size 33x18 - text run at (0,1494) width 33: "ssss" - RenderBR {BR} at (33,1509) size 0x0 - RenderText {#text} at (0,1512) size 24x18 - text run at (0,1512) width 24: "tttt" - RenderBR {BR} at (24,1527) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1545) size 0x0 - RenderText {#text} at (0,1548) size 34x18 - text run at (0,1548) width 34: "vvvv" - RenderBR {BR} at (34,1563) size 0x0 - RenderText {#text} at (0,1566) size 50x18 - text run at (0,1566) width 50: "wwww" - RenderBR {BR} at (50,1581) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1599) size 0x0 - RenderText {#text} at (0,1602) size 34x18 - text run at (0,1602) width 34: "yyyy" - RenderBR {BR} at (34,1617) size 0x0 - RenderText {#text} at (0,1620) size 37x18 - text run at (0,1620) width 37: "zzzz" - RenderBR {BR} at (37,1635) size 0x0 - RenderText {#text} at (0,1638) size 21x18 - text run at (0,1638) width 21: "{{{{" - RenderBR {BR} at (21,1653) size 0x0 - RenderText {#text} at (0,1656) size 24x18 - text run at (0,1656) width 24: "||||" - RenderBR {BR} at (24,1671) size 0x0 - RenderText {#text} at (0,1674) size 21x18 - text run at (0,1674) width 21: "}}}}" - RenderBR {BR} at (21,1689) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5124) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5124) size 769x1692 - RenderInline {FONT} at (0,0) size 63x1692 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 63x1692 - RenderInline {I} at (0,0) size 63x1692 - RenderText {#text} at (0,0) size 20x18 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,15) size 0x0 - RenderText {#text} at (0,18) size 21x18 - text run at (0,18) width 21: "!!!!" - RenderBR {BR} at (21,33) size 0x0 - RenderText {#text} at (0,36) size 29x18 - text run at (0,36) width 29: "\"\"\"\"" - RenderBR {BR} at (29,51) size 0x0 - RenderText {#text} at (0,54) size 43x18 - text run at (0,54) width 43: "####" - RenderBR {BR} at (43,69) size 0x0 - RenderText {#text} at (0,72) size 43x18 - text run at (0,72) width 43: "$$$$" - RenderBR {BR} at (43,87) size 0x0 - RenderText {#text} at (0,90) size 51x18 - text run at (0,90) width 51: "%%%%" - RenderBR {BR} at (51,105) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,123) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,141) size 0x0 - RenderText {#text} at (0,144) size 24x18 - text run at (0,144) width 24: "((((" - RenderBR {BR} at (24,159) size 0x0 - RenderText {#text} at (0,162) size 24x18 - text run at (0,162) width 24: "))))" - RenderBR {BR} at (24,177) size 0x0 - RenderText {#text} at (0,180) size 30x18 - text run at (0,180) width 30: "****" - RenderBR {BR} at (30,195) size 0x0 - RenderText {#text} at (0,198) size 51x18 - text run at (0,198) width 51: "++++" - RenderBR {BR} at (51,213) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,231) size 0x0 - RenderText {#text} at (0,234) size 44x18 - text run at (0,234) width 44: "----" - RenderBR {BR} at (44,249) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,267) size 0x0 - RenderText {#text} at (0,270) size 37x18 - text run at (0,270) width 37: "////" - RenderBR {BR} at (37,285) size 0x0 - RenderText {#text} at (0,288) size 43x18 - text run at (0,288) width 43: "0000" - RenderBR {BR} at (43,303) size 0x0 - RenderText {#text} at (0,306) size 43x18 - text run at (0,306) width 43: "1111" - RenderBR {BR} at (43,321) size 0x0 - RenderText {#text} at (0,324) size 43x18 - text run at (0,324) width 43: "2222" - RenderBR {BR} at (43,339) size 0x0 - RenderText {#text} at (0,342) size 43x18 - text run at (0,342) width 43: "3333" - RenderBR {BR} at (43,357) size 0x0 - RenderText {#text} at (0,360) size 43x18 - text run at (0,360) width 43: "4444" - RenderBR {BR} at (43,375) size 0x0 - RenderText {#text} at (0,378) size 43x18 - text run at (0,378) width 43: "5555" - RenderBR {BR} at (43,393) size 0x0 - RenderText {#text} at (0,396) size 43x18 - text run at (0,396) width 43: "6666" - RenderBR {BR} at (43,411) size 0x0 - RenderText {#text} at (0,414) size 43x18 - text run at (0,414) width 43: "7777" - RenderBR {BR} at (43,429) size 0x0 - RenderText {#text} at (0,432) size 43x18 - text run at (0,432) width 43: "8888" - RenderBR {BR} at (43,447) size 0x0 - RenderText {#text} at (0,450) size 43x18 - text run at (0,450) width 43: "9999" - RenderBR {BR} at (43,465) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,483) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,501) size 0x0 - RenderText {#text} at (0,504) size 51x18 - text run at (0,504) width 51: "<<<<" - RenderBR {BR} at (51,519) size 0x0 - RenderText {#text} at (0,522) size 51x18 - text run at (0,522) width 51: "====" - RenderBR {BR} at (51,537) size 0x0 - RenderText {#text} at (0,540) size 51x18 - text run at (0,540) width 51: ">>>>" - RenderBR {BR} at (51,555) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,573) size 0x0 - RenderText {#text} at (0,576) size 55x18 - text run at (0,576) width 55: "@@@@" - RenderBR {BR} at (55,591) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,609) size 0x0 - RenderText {#text} at (0,612) size 41x18 - text run at (0,612) width 41: "BBBB" - RenderBR {BR} at (41,627) size 0x0 - RenderText {#text} at (0,630) size 46x18 - text run at (0,630) width 46: "CCCC" - RenderBR {BR} at (46,645) size 0x0 - RenderText {#text} at (0,648) size 51x18 - text run at (0,648) width 51: "DDDD" - RenderBR {BR} at (51,663) size 0x0 - RenderText {#text} at (0,666) size 39x18 - text run at (0,666) width 39: "EEEE" - RenderBR {BR} at (39,681) size 0x0 - RenderText {#text} at (0,684) size 37x18 - text run at (0,684) width 37: "FFFF" - RenderBR {BR} at (37,699) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,717) size 0x0 - RenderText {#text} at (0,720) size 50x18 - text run at (0,720) width 50: "HHHH" - RenderBR {BR} at (50,735) size 0x0 - RenderText {#text} at (0,738) size 22x18 - text run at (0,738) width 22: "IIII" - RenderBR {BR} at (22,753) size 0x0 - RenderText {#text} at (0,756) size 27x18 - text run at (0,756) width 27: "JJJJ" - RenderBR {BR} at (27,771) size 0x0 - RenderText {#text} at (0,774) size 46x18 - text run at (0,774) width 46: "KKKK" - RenderBR {BR} at (46,789) size 0x0 - RenderText {#text} at (0,792) size 38x18 - text run at (0,792) width 38: "LLLL" - RenderBR {BR} at (38,807) size 0x0 - RenderText {#text} at (0,810) size 59x18 - text run at (0,810) width 59: "MMMM" - RenderBR {BR} at (59,825) size 0x0 - RenderText {#text} at (0,828) size 50x18 - text run at (0,828) width 50: "NNNN" - RenderBR {BR} at (50,843) size 0x0 - RenderText {#text} at (0,846) size 53x18 - text run at (0,846) width 53: "OOOO" - RenderBR {BR} at (53,861) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,879) size 0x0 - RenderText {#text} at (0,882) size 53x18 - text run at (0,882) width 53: "QQQQ" - RenderBR {BR} at (53,897) size 0x0 - RenderText {#text} at (0,900) size 45x18 - text run at (0,900) width 45: "RRRR" - RenderBR {BR} at (45,915) size 0x0 - RenderText {#text} at (0,918) size 37x18 - text run at (0,918) width 37: "SSSS" - RenderBR {BR} at (37,933) size 0x0 - RenderText {#text} at (0,936) size 45x18 - text run at (0,936) width 45: "TTTT" - RenderBR {BR} at (45,951) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,969) size 0x0 - RenderText {#text} at (0,972) size 45x18 - text run at (0,972) width 45: "VVVV" - RenderBR {BR} at (45,987) size 0x0 - RenderText {#text} at (0,990) size 58x18 - text run at (0,990) width 58: "WWWW" - RenderBR {BR} at (58,1005) size 0x0 - RenderText {#text} at (0,1008) size 43x18 - text run at (0,1008) width 43: "XXXX" - RenderBR {BR} at (43,1023) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "YYYY" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1044) size 42x18 - text run at (0,1044) width 42: "ZZZZ" - RenderBR {BR} at (42,1059) size 0x0 - RenderText {#text} at (0,1062) size 24x18 - text run at (0,1062) width 24: "[[[[" - RenderBR {BR} at (24,1077) size 0x0 - RenderText {#text} at (0,1080) size 37x18 - text run at (0,1080) width 37: "\\\\\\\\" - RenderBR {BR} at (37,1095) size 0x0 - RenderText {#text} at (0,1098) size 24x18 - text run at (0,1098) width 24: "]]]]" - RenderBR {BR} at (24,1113) size 0x0 - RenderText {#text} at (0,1116) size 43x18 - text run at (0,1116) width 43: "^^^^" - RenderBR {BR} at (43,1131) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1149) size 0x0 - RenderText {#text} at (0,1152) size 41x18 - text run at (0,1152) width 41: "````" - RenderBR {BR} at (41,1167) size 0x0 - RenderText {#text} at (0,1170) size 38x18 - text run at (0,1170) width 38: "aaaa" - RenderBR {BR} at (38,1185) size 0x0 - RenderText {#text} at (0,1188) size 43x18 - text run at (0,1188) width 43: "bbbb" - RenderBR {BR} at (43,1203) size 0x0 - RenderText {#text} at (0,1206) size 35x18 - text run at (0,1206) width 35: "cccc" - RenderBR {BR} at (35,1221) size 0x0 - RenderText {#text} at (0,1224) size 43x18 - text run at (0,1224) width 43: "dddd" - RenderBR {BR} at (43,1239) size 0x0 - RenderText {#text} at (0,1242) size 38x18 - text run at (0,1242) width 38: "eeee" - RenderBR {BR} at (38,1257) size 0x0 - RenderText {#text} at (0,1260) size 27x18 - text run at (0,1260) width 27: "ffff" - RenderBR {BR} at (27,1275) size 0x0 - RenderText {#text} at (0,1278) size 43x18 - text run at (0,1278) width 43: "gggg" - RenderBR {BR} at (43,1293) size 0x0 - RenderText {#text} at (0,1296) size 43x18 - text run at (0,1296) width 43: "hhhh" - RenderBR {BR} at (43,1311) size 0x0 - RenderText {#text} at (0,1314) size 21x18 - text run at (0,1314) width 21: "iiii" - RenderBR {BR} at (21,1329) size 0x0 - RenderText {#text} at (0,1332) size 22x18 - text run at (0,1332) width 22: "jjjj" - RenderBR {BR} at (22,1347) size 0x0 - RenderText {#text} at (0,1350) size 41x18 - text run at (0,1350) width 41: "kkkk" - RenderBR {BR} at (41,1365) size 0x0 - RenderText {#text} at (0,1368) size 21x18 - text run at (0,1368) width 21: "llll" - RenderBR {BR} at (21,1383) size 0x0 - RenderText {#text} at (0,1386) size 63x18 - text run at (0,1386) width 63: "mmmm" - RenderBR {BR} at (63,1401) size 0x0 - RenderText {#text} at (0,1404) size 43x18 - text run at (0,1404) width 43: "nnnn" - RenderBR {BR} at (43,1419) size 0x0 - RenderText {#text} at (0,1422) size 41x18 - text run at (0,1422) width 41: "oooo" - RenderBR {BR} at (41,1437) size 0x0 - RenderText {#text} at (0,1440) size 43x18 - text run at (0,1440) width 43: "pppp" - RenderBR {BR} at (43,1455) size 0x0 - RenderText {#text} at (0,1458) size 43x18 - text run at (0,1458) width 43: "qqqq" - RenderBR {BR} at (43,1473) size 0x0 - RenderText {#text} at (0,1476) size 30x18 - text run at (0,1476) width 30: "rrrr" - RenderBR {BR} at (30,1491) size 0x0 - RenderText {#text} at (0,1494) size 37x18 - text run at (0,1494) width 37: "ssss" - RenderBR {BR} at (37,1509) size 0x0 - RenderText {#text} at (0,1512) size 26x18 - text run at (0,1512) width 26: "tttt" - RenderBR {BR} at (26,1527) size 0x0 - RenderText {#text} at (0,1530) size 43x18 - text run at (0,1530) width 43: "uuuu" - RenderBR {BR} at (43,1545) size 0x0 - RenderText {#text} at (0,1548) size 38x18 - text run at (0,1548) width 38: "vvvv" - RenderBR {BR} at (38,1563) size 0x0 - RenderText {#text} at (0,1566) size 56x18 - text run at (0,1566) width 56: "wwww" - RenderBR {BR} at (56,1581) size 0x0 - RenderText {#text} at (0,1584) size 38x18 - text run at (0,1584) width 38: "xxxx" - RenderBR {BR} at (38,1599) size 0x0 - RenderText {#text} at (0,1602) size 38x18 - text run at (0,1602) width 38: "yyyy" - RenderBR {BR} at (38,1617) size 0x0 - RenderText {#text} at (0,1620) size 38x18 - text run at (0,1620) width 38: "zzzz" - RenderBR {BR} at (38,1635) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1653) size 0x0 - RenderText {#text} at (0,1656) size 25x18 - text run at (0,1656) width 25: "||||" - RenderBR {BR} at (25,1671) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1689) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.checksum b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.checksum deleted file mode 100644 index 0656ac4..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -76f4ce5a515a946ae651c707e9b11d09
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.png b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.png Binary files differdeleted file mode 100644 index 5f03ca2..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.txt deleted file mode 100644 index ef0d423..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x6840 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x6840 - RenderBlock {HTML} at (0,0) size 785x6840 - RenderBody {BODY} at (8,8) size 769x6816 - RenderBlock (anonymous) at (0,0) size 769x1692 - RenderInline {FONT} at (0,0) size 60x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 28x18 - text run at (0,36) width 28: "\"\"\"\"" - RenderBR {BR} at (28,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 16x18 - text run at (0,468) width 16: "::::" - RenderBR {BR} at (16,482) size 0x0 - RenderText {#text} at (0,486) size 16x18 - text run at (0,486) width 16: ";;;;" - RenderBR {BR} at (16,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 28x18 - text run at (0,558) width 28: "????" - RenderBR {BR} at (28,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 36x18 - text run at (0,684) width 36: "FFFF" - RenderBR {BR} at (36,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 20x18 - text run at (0,738) width 20: "IIII" - RenderBR {BR} at (20,752) size 0x0 - RenderText {#text} at (0,756) size 24x18 - text run at (0,756) width 24: "JJJJ" - RenderBR {BR} at (24,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 36x18 - text run at (0,864) width 36: "PPPP" - RenderBR {BR} at (36,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 44x18 - text run at (0,900) width 44: "RRRR" - RenderBR {BR} at (44,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 48x18 - text run at (0,972) width 48: "VVVV" - RenderBR {BR} at (48,986) size 0x0 - RenderText {#text} at (0,990) size 60x18 - text run at (0,990) width 60: "WWWW" - RenderBR {BR} at (60,1004) size 0x0 - RenderText {#text} at (0,1008) size 48x18 - text run at (0,1008) width 48: "XXXX" - RenderBR {BR} at (48,1022) size 0x0 - RenderText {#text} at (0,1026) size 48x18 - text run at (0,1026) width 48: "YYYY" - RenderBR {BR} at (48,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 32x18 - text run at (0,1116) width 32: "^^^^" - RenderBR {BR} at (32,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 28x18 - text run at (0,1170) width 28: "aaaa" - RenderBR {BR} at (28,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 32x18 - text run at (0,1296) width 32: "hhhh" - RenderBR {BR} at (32,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 32x18 - text run at (0,1404) width 32: "nnnn" - RenderBR {BR} at (32,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 20x18 - text run at (0,1476) width 20: "rrrr" - RenderBR {BR} at (20,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 32x18 - text run at (0,1530) width 32: "uuuu" - RenderBR {BR} at (32,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 28x18 - text run at (0,1620) width 28: "zzzz" - RenderBR {BR} at (28,1634) size 0x0 - RenderText {#text} at (0,1638) size 32x18 - text run at (0,1638) width 32: "{{{{" - RenderBR {BR} at (32,1652) size 0x0 - RenderText {#text} at (0,1656) size 12x18 - text run at (0,1656) width 12: "||||" - RenderBR {BR} at (12,1670) size 0x0 - RenderText {#text} at (0,1674) size 32x18 - text run at (0,1674) width 32: "}}}}" - RenderBR {BR} at (32,1688) size 0x0 - RenderBlock (anonymous) at (0,1708) size 769x3400 - RenderBlock {P} at (0,0) size 769x1692 - RenderInline {B} at (0,0) size 64x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 36x18 - text run at (0,36) width 36: "\"\"\"\"" - RenderBR {BR} at (36,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 64x18 - text run at (0,90) width 64: "%%%%" - RenderBR {BR} at (64,104) size 0x0 - RenderText {#text} at (0,108) size 52x18 - text run at (0,108) width 52: "&&&&" - RenderBR {BR} at (52,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 48x18 - text run at (0,594) width 48: "AAAA" - RenderBR {BR} at (48,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 48x18 - text run at (0,630) width 48: "CCCC" - RenderBR {BR} at (48,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 24x18 - text run at (0,738) width 24: "IIII" - RenderBR {BR} at (24,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 48x18 - text run at (0,774) width 48: "KKKK" - RenderBR {BR} at (48,788) size 0x0 - RenderText {#text} at (0,792) size 44x18 - text run at (0,792) width 44: "LLLL" - RenderBR {BR} at (44,806) size 0x0 - RenderText {#text} at (0,810) size 60x18 - text run at (0,810) width 60: "MMMM" - RenderBR {BR} at (60,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 48x18 - text run at (0,900) width 48: "RRRR" - RenderBR {BR} at (48,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 44x18 - text run at (0,936) width 44: "TTTT" - RenderBR {BR} at (44,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 48x18 - text run at (0,972) width 48: "VVVV" - RenderBR {BR} at (48,986) size 0x0 - RenderText {#text} at (0,990) size 64x18 - text run at (0,990) width 64: "WWWW" - RenderBR {BR} at (64,1004) size 0x0 - RenderText {#text} at (0,1008) size 48x18 - text run at (0,1008) width 48: "XXXX" - RenderBR {BR} at (48,1022) size 0x0 - RenderText {#text} at (0,1026) size 48x18 - text run at (0,1026) width 48: "YYYY" - RenderBR {BR} at (48,1040) size 0x0 - RenderText {#text} at (0,1044) size 44x18 - text run at (0,1044) width 44: "ZZZZ" - RenderBR {BR} at (44,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 36x18 - text run at (0,1188) width 36: "bbbb" - RenderBR {BR} at (36,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 36x18 - text run at (0,1224) width 36: "dddd" - RenderBR {BR} at (36,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 20x18 - text run at (0,1332) width 20: "jjjj" - RenderBR {BR} at (20,1346) size 0x0 - RenderText {#text} at (0,1350) size 36x18 - text run at (0,1350) width 36: "kkkk" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 52x18 - text run at (0,1386) width 52: "mmmm" - RenderBR {BR} at (52,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x18 - text run at (0,1440) width 36: "pppp" - RenderBR {BR} at (36,1454) size 0x0 - RenderText {#text} at (0,1458) size 36x18 - text run at (0,1458) width 36: "qqqq" - RenderBR {BR} at (36,1472) size 0x0 - RenderText {#text} at (0,1476) size 28x18 - text run at (0,1476) width 28: "rrrr" - RenderBR {BR} at (28,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 20x18 - text run at (0,1512) width 20: "tttt" - RenderBR {BR} at (20,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 32x18 - text run at (0,1548) width 32: "vvvv" - RenderBR {BR} at (32,1562) size 0x0 - RenderText {#text} at (0,1566) size 48x18 - text run at (0,1566) width 48: "wwww" - RenderBR {BR} at (48,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 32x18 - text run at (0,1602) width 32: "yyyy" - RenderBR {BR} at (32,1616) size 0x0 - RenderText {#text} at (0,1620) size 28x18 - text run at (0,1620) width 28: "zzzz" - RenderBR {BR} at (28,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1708) size 769x1692 - RenderInline {I} at (0,0) size 60x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "!!!!" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 28x18 - text run at (0,36) width 28: "\"\"\"\"" - RenderBR {BR} at (28,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 12x18 - text run at (0,126) width 12: "''''" - RenderBR {BR} at (12,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 44x18 - text run at (0,198) width 44: "++++" - RenderBR {BR} at (44,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 44x18 - text run at (0,504) width 44: "<<<<" - RenderBR {BR} at (44,518) size 0x0 - RenderText {#text} at (0,522) size 44x18 - text run at (0,522) width 44: "====" - RenderBR {BR} at (44,536) size 0x0 - RenderText {#text} at (0,540) size 44x18 - text run at (0,540) width 44: ">>>>" - RenderBR {BR} at (44,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 60x18 - text run at (0,576) width 60: "@@@@" - RenderBR {BR} at (60,590) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,608) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,680) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 20x18 - text run at (0,738) width 20: "IIII" - RenderBR {BR} at (20,752) size 0x0 - RenderText {#text} at (0,756) size 28x18 - text run at (0,756) width 28: "JJJJ" - RenderBR {BR} at (28,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 36x18 - text run at (0,792) width 36: "LLLL" - RenderBR {BR} at (36,806) size 0x0 - RenderText {#text} at (0,810) size 52x18 - text run at (0,810) width 52: "MMMM" - RenderBR {BR} at (52,824) size 0x0 - RenderText {#text} at (0,828) size 44x18 - text run at (0,828) width 44: "NNNN" - RenderBR {BR} at (44,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,914) size 0x0 - RenderText {#text} at (0,918) size 32x18 - text run at (0,918) width 32: "SSSS" - RenderBR {BR} at (32,932) size 0x0 - RenderText {#text} at (0,936) size 36x18 - text run at (0,936) width 36: "TTTT" - RenderBR {BR} at (36,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,986) size 0x0 - RenderText {#text} at (0,990) size 52x18 - text run at (0,990) width 52: "WWWW" - RenderBR {BR} at (52,1004) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1022) size 0x0 - RenderText {#text} at (0,1026) size 36x18 - text run at (0,1026) width 36: "YYYY" - RenderBR {BR} at (36,1040) size 0x0 - RenderText {#text} at (0,1044) size 36x18 - text run at (0,1044) width 36: "ZZZZ" - RenderBR {BR} at (36,1058) size 0x0 - RenderText {#text} at (0,1062) size 24x18 - text run at (0,1062) width 24: "[[[[" - RenderBR {BR} at (24,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 24x18 - text run at (0,1098) width 24: "]]]]" - RenderBR {BR} at (24,1112) size 0x0 - RenderText {#text} at (0,1116) size 28x18 - text run at (0,1116) width 28: "^^^^" - RenderBR {BR} at (28,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 16x18 - text run at (0,1260) width 16: "ffff" - RenderBR {BR} at (16,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 32x18 - text run at (0,1296) width 32: "hhhh" - RenderBR {BR} at (32,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 28x18 - text run at (0,1350) width 28: "kkkk" - RenderBR {BR} at (28,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 32x18 - text run at (0,1404) width 32: "nnnn" - RenderBR {BR} at (32,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 32x18 - text run at (0,1530) width 32: "uuuu" - RenderBR {BR} at (32,1544) size 0x0 - RenderText {#text} at (0,1548) size 28x18 - text run at (0,1548) width 28: "vvvv" - RenderBR {BR} at (28,1562) size 0x0 - RenderText {#text} at (0,1566) size 44x18 - text run at (0,1566) width 44: "wwww" - RenderBR {BR} at (44,1580) size 0x0 - RenderText {#text} at (0,1584) size 28x18 - text run at (0,1584) width 28: "xxxx" - RenderBR {BR} at (28,1598) size 0x0 - RenderText {#text} at (0,1602) size 28x18 - text run at (0,1602) width 28: "yyyy" - RenderBR {BR} at (28,1616) size 0x0 - RenderText {#text} at (0,1620) size 24x18 - text run at (0,1620) width 24: "zzzz" - RenderBR {BR} at (24,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5124) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5124) size 769x1692 - RenderInline {FONT} at (0,0) size 56x1692 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 56x1692 - RenderInline {I} at (0,0) size 56x1692 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,14) size 0x0 - RenderText {#text} at (0,18) size 24x18 - text run at (0,18) width 24: "!!!!" - RenderBR {BR} at (24,32) size 0x0 - RenderText {#text} at (0,36) size 36x18 - text run at (0,36) width 36: "\"\"\"\"" - RenderBR {BR} at (36,50) size 0x0 - RenderText {#text} at (0,54) size 32x18 - text run at (0,54) width 32: "####" - RenderBR {BR} at (32,68) size 0x0 - RenderText {#text} at (0,72) size 32x18 - text run at (0,72) width 32: "$$$$" - RenderBR {BR} at (32,86) size 0x0 - RenderText {#text} at (0,90) size 52x18 - text run at (0,90) width 52: "%%%%" - RenderBR {BR} at (52,104) size 0x0 - RenderText {#text} at (0,108) size 48x18 - text run at (0,108) width 48: "&&&&" - RenderBR {BR} at (48,122) size 0x0 - RenderText {#text} at (0,126) size 16x18 - text run at (0,126) width 16: "''''" - RenderBR {BR} at (16,140) size 0x0 - RenderText {#text} at (0,144) size 20x18 - text run at (0,144) width 20: "((((" - RenderBR {BR} at (20,158) size 0x0 - RenderText {#text} at (0,162) size 20x18 - text run at (0,162) width 20: "))))" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 32x18 - text run at (0,180) width 32: "****" - RenderBR {BR} at (32,194) size 0x0 - RenderText {#text} at (0,198) size 36x18 - text run at (0,198) width 36: "++++" - RenderBR {BR} at (36,212) size 0x0 - RenderText {#text} at (0,216) size 16x18 - text run at (0,216) width 16: ",,,," - RenderBR {BR} at (16,230) size 0x0 - RenderText {#text} at (0,234) size 20x18 - text run at (0,234) width 20: "----" - RenderBR {BR} at (20,248) size 0x0 - RenderText {#text} at (0,252) size 16x18 - text run at (0,252) width 16: "...." - RenderBR {BR} at (16,266) size 0x0 - RenderText {#text} at (0,270) size 16x18 - text run at (0,270) width 16: "////" - RenderBR {BR} at (16,284) size 0x0 - RenderText {#text} at (0,288) size 32x18 - text run at (0,288) width 32: "0000" - RenderBR {BR} at (32,302) size 0x0 - RenderText {#text} at (0,306) size 32x18 - text run at (0,306) width 32: "1111" - RenderBR {BR} at (32,320) size 0x0 - RenderText {#text} at (0,324) size 32x18 - text run at (0,324) width 32: "2222" - RenderBR {BR} at (32,338) size 0x0 - RenderText {#text} at (0,342) size 32x18 - text run at (0,342) width 32: "3333" - RenderBR {BR} at (32,356) size 0x0 - RenderText {#text} at (0,360) size 32x18 - text run at (0,360) width 32: "4444" - RenderBR {BR} at (32,374) size 0x0 - RenderText {#text} at (0,378) size 32x18 - text run at (0,378) width 32: "5555" - RenderBR {BR} at (32,392) size 0x0 - RenderText {#text} at (0,396) size 32x18 - text run at (0,396) width 32: "6666" - RenderBR {BR} at (32,410) size 0x0 - RenderText {#text} at (0,414) size 32x18 - text run at (0,414) width 32: "7777" - RenderBR {BR} at (32,428) size 0x0 - RenderText {#text} at (0,432) size 32x18 - text run at (0,432) width 32: "8888" - RenderBR {BR} at (32,446) size 0x0 - RenderText {#text} at (0,450) size 32x18 - text run at (0,450) width 32: "9999" - RenderBR {BR} at (32,464) size 0x0 - RenderText {#text} at (0,468) size 20x18 - text run at (0,468) width 20: "::::" - RenderBR {BR} at (20,482) size 0x0 - RenderText {#text} at (0,486) size 20x18 - text run at (0,486) width 20: ";;;;" - RenderBR {BR} at (20,500) size 0x0 - RenderText {#text} at (0,504) size 36x18 - text run at (0,504) width 36: "<<<<" - RenderBR {BR} at (36,518) size 0x0 - RenderText {#text} at (0,522) size 36x18 - text run at (0,522) width 36: "====" - RenderBR {BR} at (36,536) size 0x0 - RenderText {#text} at (0,540) size 36x18 - text run at (0,540) width 36: ">>>>" - RenderBR {BR} at (36,554) size 0x0 - RenderText {#text} at (0,558) size 32x18 - text run at (0,558) width 32: "????" - RenderBR {BR} at (32,572) size 0x0 - RenderText {#text} at (0,576) size 52x18 - text run at (0,576) width 52: "@@@@" - RenderBR {BR} at (52,590) size 0x0 - RenderText {#text} at (0,594) size 44x18 - text run at (0,594) width 44: "AAAA" - RenderBR {BR} at (44,608) size 0x0 - RenderText {#text} at (0,612) size 44x18 - text run at (0,612) width 44: "BBBB" - RenderBR {BR} at (44,626) size 0x0 - RenderText {#text} at (0,630) size 44x18 - text run at (0,630) width 44: "CCCC" - RenderBR {BR} at (44,644) size 0x0 - RenderText {#text} at (0,648) size 48x18 - text run at (0,648) width 48: "DDDD" - RenderBR {BR} at (48,662) size 0x0 - RenderText {#text} at (0,666) size 44x18 - text run at (0,666) width 44: "EEEE" - RenderBR {BR} at (44,680) size 0x0 - RenderText {#text} at (0,684) size 44x18 - text run at (0,684) width 44: "FFFF" - RenderBR {BR} at (44,698) size 0x0 - RenderText {#text} at (0,702) size 48x18 - text run at (0,702) width 48: "GGGG" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x18 - text run at (0,720) width 48: "HHHH" - RenderBR {BR} at (48,734) size 0x0 - RenderText {#text} at (0,738) size 24x18 - text run at (0,738) width 24: "IIII" - RenderBR {BR} at (24,752) size 0x0 - RenderText {#text} at (0,756) size 32x18 - text run at (0,756) width 32: "JJJJ" - RenderBR {BR} at (32,770) size 0x0 - RenderText {#text} at (0,774) size 44x18 - text run at (0,774) width 44: "KKKK" - RenderBR {BR} at (44,788) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,806) size 0x0 - RenderText {#text} at (0,810) size 56x18 - text run at (0,810) width 56: "MMMM" - RenderBR {BR} at (56,824) size 0x0 - RenderText {#text} at (0,828) size 48x18 - text run at (0,828) width 48: "NNNN" - RenderBR {BR} at (48,842) size 0x0 - RenderText {#text} at (0,846) size 48x18 - text run at (0,846) width 48: "OOOO" - RenderBR {BR} at (48,860) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,878) size 0x0 - RenderText {#text} at (0,882) size 48x18 - text run at (0,882) width 48: "QQQQ" - RenderBR {BR} at (48,896) size 0x0 - RenderText {#text} at (0,900) size 44x18 - text run at (0,900) width 44: "RRRR" - RenderBR {BR} at (44,914) size 0x0 - RenderText {#text} at (0,918) size 36x18 - text run at (0,918) width 36: "SSSS" - RenderBR {BR} at (36,932) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,950) size 0x0 - RenderText {#text} at (0,954) size 48x18 - text run at (0,954) width 48: "UUUU" - RenderBR {BR} at (48,968) size 0x0 - RenderText {#text} at (0,972) size 44x18 - text run at (0,972) width 44: "VVVV" - RenderBR {BR} at (44,986) size 0x0 - RenderText {#text} at (0,990) size 56x18 - text run at (0,990) width 56: "WWWW" - RenderBR {BR} at (56,1004) size 0x0 - RenderText {#text} at (0,1008) size 44x18 - text run at (0,1008) width 44: "XXXX" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1058) size 0x0 - RenderText {#text} at (0,1062) size 20x18 - text run at (0,1062) width 20: "[[[[" - RenderBR {BR} at (20,1076) size 0x0 - RenderText {#text} at (0,1080) size 16x18 - text run at (0,1080) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1094) size 0x0 - RenderText {#text} at (0,1098) size 20x18 - text run at (0,1098) width 20: "]]]]" - RenderBR {BR} at (20,1112) size 0x0 - RenderText {#text} at (0,1116) size 36x18 - text run at (0,1116) width 36: "^^^^" - RenderBR {BR} at (36,1130) size 0x0 - RenderText {#text} at (0,1134) size 32x18 - text run at (0,1134) width 32: "____" - RenderBR {BR} at (32,1148) size 0x0 - RenderText {#text} at (0,1152) size 20x18 - text run at (0,1152) width 20: "````" - RenderBR {BR} at (20,1166) size 0x0 - RenderText {#text} at (0,1170) size 32x18 - text run at (0,1170) width 32: "aaaa" - RenderBR {BR} at (32,1184) size 0x0 - RenderText {#text} at (0,1188) size 32x18 - text run at (0,1188) width 32: "bbbb" - RenderBR {BR} at (32,1202) size 0x0 - RenderText {#text} at (0,1206) size 28x18 - text run at (0,1206) width 28: "cccc" - RenderBR {BR} at (28,1220) size 0x0 - RenderText {#text} at (0,1224) size 32x18 - text run at (0,1224) width 32: "dddd" - RenderBR {BR} at (32,1238) size 0x0 - RenderText {#text} at (0,1242) size 28x18 - text run at (0,1242) width 28: "eeee" - RenderBR {BR} at (28,1256) size 0x0 - RenderText {#text} at (0,1260) size 20x18 - text run at (0,1260) width 20: "ffff" - RenderBR {BR} at (20,1274) size 0x0 - RenderText {#text} at (0,1278) size 32x18 - text run at (0,1278) width 32: "gggg" - RenderBR {BR} at (32,1292) size 0x0 - RenderText {#text} at (0,1296) size 36x18 - text run at (0,1296) width 36: "hhhh" - RenderBR {BR} at (36,1310) size 0x0 - RenderText {#text} at (0,1314) size 16x18 - text run at (0,1314) width 16: "iiii" - RenderBR {BR} at (16,1328) size 0x0 - RenderText {#text} at (0,1332) size 16x18 - text run at (0,1332) width 16: "jjjj" - RenderBR {BR} at (16,1346) size 0x0 - RenderText {#text} at (0,1350) size 32x18 - text run at (0,1350) width 32: "kkkk" - RenderBR {BR} at (32,1364) size 0x0 - RenderText {#text} at (0,1368) size 16x18 - text run at (0,1368) width 16: "llll" - RenderBR {BR} at (16,1382) size 0x0 - RenderText {#text} at (0,1386) size 48x18 - text run at (0,1386) width 48: "mmmm" - RenderBR {BR} at (48,1400) size 0x0 - RenderText {#text} at (0,1404) size 36x18 - text run at (0,1404) width 36: "nnnn" - RenderBR {BR} at (36,1418) size 0x0 - RenderText {#text} at (0,1422) size 32x18 - text run at (0,1422) width 32: "oooo" - RenderBR {BR} at (32,1436) size 0x0 - RenderText {#text} at (0,1440) size 32x18 - text run at (0,1440) width 32: "pppp" - RenderBR {BR} at (32,1454) size 0x0 - RenderText {#text} at (0,1458) size 32x18 - text run at (0,1458) width 32: "qqqq" - RenderBR {BR} at (32,1472) size 0x0 - RenderText {#text} at (0,1476) size 24x18 - text run at (0,1476) width 24: "rrrr" - RenderBR {BR} at (24,1490) size 0x0 - RenderText {#text} at (0,1494) size 24x18 - text run at (0,1494) width 24: "ssss" - RenderBR {BR} at (24,1508) size 0x0 - RenderText {#text} at (0,1512) size 16x18 - text run at (0,1512) width 16: "tttt" - RenderBR {BR} at (16,1526) size 0x0 - RenderText {#text} at (0,1530) size 36x18 - text run at (0,1530) width 36: "uuuu" - RenderBR {BR} at (36,1544) size 0x0 - RenderText {#text} at (0,1548) size 28x18 - text run at (0,1548) width 28: "vvvv" - RenderBR {BR} at (28,1562) size 0x0 - RenderText {#text} at (0,1566) size 44x18 - text run at (0,1566) width 44: "wwww" - RenderBR {BR} at (44,1580) size 0x0 - RenderText {#text} at (0,1584) size 32x18 - text run at (0,1584) width 32: "xxxx" - RenderBR {BR} at (32,1598) size 0x0 - RenderText {#text} at (0,1602) size 28x18 - text run at (0,1602) width 28: "yyyy" - RenderBR {BR} at (28,1616) size 0x0 - RenderText {#text} at (0,1620) size 24x18 - text run at (0,1620) width 24: "zzzz" - RenderBR {BR} at (24,1634) size 0x0 - RenderText {#text} at (0,1638) size 24x18 - text run at (0,1638) width 24: "{{{{" - RenderBR {BR} at (24,1652) size 0x0 - RenderText {#text} at (0,1656) size 16x18 - text run at (0,1656) width 16: "||||" - RenderBR {BR} at (16,1670) size 0x0 - RenderText {#text} at (0,1674) size 24x18 - text run at (0,1674) width 24: "}}}}" - RenderBR {BR} at (24,1688) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/pending/fast/repaint/bugzilla-6473-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/pending/fast/repaint/bugzilla-6473-expected.txt deleted file mode 100644 index d8e9654..0000000 --- a/webkit/data/layout_tests/platform/chromium-mac/pending/fast/repaint/bugzilla-6473-expected.txt +++ /dev/null @@ -1,36 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x164 - RenderBlock {HTML} at (0,0) size 800x164 - RenderBody {BODY} at (8,16) size 784x132 - RenderBlock {P} at (0,0) size 784x18 - RenderInline {B} at (0,0) size 62x18 - RenderText {#text} at (0,0) size 62x18 - text run at (0,0) width 62: "BUG ID:" - RenderText {#text} at (62,0) size 4x18 - text run at (62,0) width 4: " " - RenderInline {A} at (0,0) size 117x18 [color=#0000EE] - RenderText {#text} at (66,0) size 117x18 - text run at (66,0) width 117: "Bugzilla bug 6473" - RenderText {#text} at (183,0) size 479x18 - text run at (183,0) width 479: " REGRESSION: Serious painting problems on new iLife and iWorks pages" - RenderBlock {P} at (0,34) size 784x24 [bgcolor=#98FB98] - RenderInline {B} at (0,0) size 91x18 - RenderText {#text} at (3,3) size 91x18 - text run at (3,3) width 91: "TEST PASS:" - RenderText {#text} at (94,3) size 434x18 - text run at (94,3) width 4: " " - text run at (98,3) width 430: "A green rectangle containing the word SUCCESS will show below." - RenderBlock {P} at (0,74) size 784x24 [bgcolor=#FF3300] - RenderInline {B} at (0,0) size 90x18 - RenderText {#text} at (3,3) size 90x18 - text run at (3,3) width 90: "TEST FAIL:" - RenderText {#text} at (93,3) size 253x18 - text run at (93,3) width 4: " " - text run at (97,3) width 249: "A green rectangle will not show below." - RenderBlock {DIV} at (0,114) size 784x18 - RenderBlock {DIV} at (0,0) size 784x18 -layer at (8,130) size 784x18 - RenderBlock (relative positioned) {P} at (0,0) size 784x18 [bgcolor=#00FF00] - RenderText {#text} at (0,0) size 71x18 - text run at (0,0) width 71: "SUCCESS" diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt deleted file mode 100644 index 43cd16d..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-2-expected.txt +++ /dev/null @@ -1,228 +0,0 @@ -window.Attr : PASS -window.CDATASection : PASS -window.CSSCharsetRule : PASS -window.CSSFontFaceRule : PASS -window.CSSImportRule : PASS -window.CSSMediaRule : PASS -window.CSSPageRule : PASS -window.CSSPrimitiveValue : PASS -window.CSSRule : PASS -window.CSSRuleList : PASS -window.CSSStyleDeclaration : PASS -window.CSSStyleRule : PASS -window.CSSStyleSheet : PASS -window.CSSValue : PASS -window.CSSValueList : PASS -window.CharacterData : PASS -window.Comment : PASS -window.Counter : PASS -window.DOMException : PASS -window.DOMImplementation : PASS -window.DOMParser : PASS -window.Document : PASS -window.DocumentFragment : PASS -window.DocumentType : PASS -window.Element : PASS -window.Entity : PASS -window.EntityReference : PASS -window.Event : PASS -window.EventException : PASS -window.HTMLAnchorElement : PASS -window.HTMLAppletElement : PASS -window.HTMLAreaElement : PASS -window.HTMLBRElement : PASS -window.HTMLBaseElement : PASS -window.HTMLBaseFontElement : PASS -window.HTMLBlockquoteElement : PASS -window.HTMLBodyElement : PASS -window.HTMLButtonElement : PASS -window.HTMLCanvasElement : PASS -window.HTMLDListElement : PASS -window.HTMLDirectoryElement : PASS -window.HTMLDivElement : PASS -window.HTMLDocument : PASS -window.HTMLElement : PASS -window.HTMLEmbedElement : PASS -window.HTMLFieldSetElement : PASS -window.HTMLFontElement : PASS -window.HTMLFormElement : PASS -window.HTMLFrameElement : PASS -window.HTMLFrameSetElement : PASS -window.HTMLHRElement : PASS -window.HTMLHeadElement : PASS -window.HTMLHeadingElement : PASS -window.HTMLHtmlElement : PASS -window.HTMLIFrameElement : PASS -window.HTMLImageElement : PASS -window.HTMLInputElement : PASS -window.HTMLIsIndexElement : PASS -window.HTMLLIElement : PASS -window.HTMLLabelElement : PASS -window.HTMLLegendElement : PASS -window.HTMLLinkElement : PASS -window.HTMLMapElement : PASS -window.HTMLMarqueeElement : PASS -window.HTMLMenuElement : PASS -window.HTMLMetaElement : PASS -window.HTMLModElement : PASS -window.HTMLOListElement : PASS -window.HTMLObjectElement : PASS -window.HTMLOptGroupElement : PASS -window.HTMLOptionElement : PASS -window.HTMLParagraphElement : PASS -window.HTMLParamElement : PASS -window.HTMLPreElement : PASS -window.HTMLQuoteElement : PASS -window.HTMLScriptElement : PASS -window.HTMLSelectElement : PASS -window.HTMLStyleElement : PASS -window.HTMLTableCaptionElement : PASS -window.HTMLTableCellElement : PASS -window.HTMLTableColElement : PASS -window.HTMLTableElement : PASS -window.HTMLTableRowElement : PASS -window.HTMLTableSectionElement : PASS -window.HTMLTextAreaElement : PASS -window.HTMLTitleElement : PASS -window.HTMLUListElement : PASS -window.KeyboardEvent : PASS -window.MediaList : PASS -window.MessageEvent : PASS -window.MouseEvent : PASS -window.MutationEvent : PASS -window.NamedNodeMap : PASS -window.Node : PASS -window.NodeFilter : PASS -window.NodeList : PASS -window.Notation : PASS -window.OverflowEvent : PASS -window.ProcessingInstruction : PASS -window.ProgressEvent : PASS -window.Range : PASS -window.RangeException : PASS -window.Rect : PASS -window.SVGAngle : PASS -window.SVGColor : PASS -window.SVGException : PASS -window.SVGGradientElement : PASS -window.SVGLength : PASS -window.SVGMarkerElement : PASS -window.SVGPaint : PASS -window.SVGPathSeg : PASS -window.SVGPreserveAspectRatio : PASS -window.SVGRenderingIntent : PASS -window.SVGTextContentElement : PASS -window.SVGTextPathElement : PASS -window.SVGTransform : PASS -window.SVGUnitTypes : PASS -window.StyleSheet : PASS -window.StyleSheetList : PASS -window.Text : PASS -window.TextEvent : PASS -window.UIEvent : PASS -window.WheelEvent : PASS -window.XMLDocument : PASS -window.XMLHttpRequest : PASS -window.XMLHttpRequestException : PASS -window.XMLSerializer : PASS -window.XPathEvaluator : PASS -window.XPathException : PASS -window.XPathResult : PASS -window.XSLTProcessor : PASS -window.alert : PASS -window.atob : PASS -window.blur : PASS -window.btoa : PASS -window.captureEvents : PASS -window.clearInterval : PASS -window.clearTimeout : PASS -window.clientInformation : PASS -window.close : PASS -window.closed : PASS -window.confirm : PASS -window.console : PASS -window.defaultStatus : PASS -window.defaultstatus : PASS -window.devicePixelRatio : PASS -window.document : PASS -window.find : PASS -window.focus : PASS -window.frameElement : PASS -window.frames : PASS -window.getComputedStyle : PASS -window.getMatchedCSSRules : PASS -window.getSelection : PASS -window.history : PASS -window.innerHeight : PASS -window.innerWidth : PASS -window.length : PASS -window.location : PASS -window.locationbar : PASS -window.menubar : PASS -window.moveBy : PASS -window.moveTo : PASS -window.name : PASS -window.navigator : PASS -window.offscreenBuffering : PASS -window.onabort : PASS -window.onbeforeunload : PASS -window.onblur : PASS -window.onchange : PASS -window.onclick : PASS -window.ondblclick : PASS -window.ondragdrop : PASS -window.onerror : PASS -window.onfocus : PASS -window.onkeydown : PASS -window.onkeypress : PASS -window.onkeyup : PASS -window.onload : PASS -window.onmousedown : PASS -window.onmousemove : PASS -window.onmouseout : PASS -window.onmouseover : PASS -window.onmouseup : PASS -window.onmousewheel : PASS -window.onmove : PASS -window.onreset : PASS -window.onresize : PASS -window.onscroll : PASS -window.onsearch : PASS -window.onselect : PASS -window.onsubmit : PASS -window.onunload : PASS -window.open : PASS -window.opener : PASS -window.outerHeight : PASS -window.outerWidth : PASS -window.pageXOffset : PASS -window.pageYOffset : PASS -window.parent : PASS -window.personalbar : PASS -window.print : PASS -window.prompt : PASS -window.releaseEvents : PASS -window.resizeBy : PASS -window.resizeTo : PASS -window.screen : PASS -window.screenLeft : PASS -window.screenTop : PASS -window.screenX : PASS -window.screenY : PASS -window.scroll : PASS -window.scrollBy : PASS -window.scrollTo : PASS -window.scrollX : PASS -window.scrollY : PASS -window.scrollbars : PASS -window.self : PASS -window.setInterval : PASS -window.setTimeout : PASS -window.showModalDialog : PASS -window.status : PASS -window.statusbar : PASS -window.stop : PASS -window.toString : PASS -window.toolbar : PASS -window.top : PASS -window.window : PASS diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-expected.txt deleted file mode 100644 index 0ea2dd8..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/Window/window-lookup-precedence-expected.txt +++ /dev/null @@ -1,230 +0,0 @@ - -window.Attr IS function Attr() { [native code] } -window.CDATASection IS function CDATASection() { [native code] } -window.CSSCharsetRule IS function CSSCharsetRule() { [native code] } -window.CSSFontFaceRule IS function CSSFontFaceRule() { [native code] } -window.CSSImportRule IS function CSSImportRule() { [native code] } -window.CSSMediaRule IS function CSSMediaRule() { [native code] } -window.CSSPageRule IS function CSSPageRule() { [native code] } -window.CSSPrimitiveValue IS function CSSPrimitiveValue() { [native code] } -window.CSSRule IS function CSSRule() { [native code] } -window.CSSRuleList IS function CSSRuleList() { [native code] } -window.CSSStyleDeclaration IS function CSSStyleDeclaration() { [native code] } -window.CSSStyleRule IS function CSSStyleRule() { [native code] } -window.CSSStyleSheet IS function CSSStyleSheet() { [native code] } -window.CSSValue IS function CSSValue() { [native code] } -window.CSSValueList IS function CSSValueList() { [native code] } -window.CharacterData IS function CharacterData() { [native code] } -window.Comment IS function Comment() { [native code] } -window.Counter IS function Counter() { [native code] } -window.DOMException IS function DOMCoreException() { [native code] } -window.DOMImplementation IS function DOMImplementation() { [native code] } -window.DOMParser IS function DOMParser() { [native code] } -window.Document IS function Document() { [native code] } -window.DocumentFragment IS function DocumentFragment() { [native code] } -window.DocumentType IS function DocumentType() { [native code] } -window.Element IS function Element() { [native code] } -window.Entity IS function Entity() { [native code] } -window.EntityReference IS function EntityReference() { [native code] } -window.Event IS function Event() { [native code] } -window.EventException IS function EventException() { [native code] } -window.HTMLAnchorElement IS function HTMLAnchorElement() { [native code] } -window.HTMLAppletElement IS function HTMLAppletElement() { [native code] } -window.HTMLAreaElement IS function HTMLAreaElement() { [native code] } -window.HTMLBRElement IS function HTMLBRElement() { [native code] } -window.HTMLBaseElement IS function HTMLBaseElement() { [native code] } -window.HTMLBaseFontElement IS function HTMLBaseFontElement() { [native code] } -window.HTMLBlockquoteElement IS function HTMLBlockquoteElement() { [native code] } -window.HTMLBodyElement IS function HTMLBodyElement() { [native code] } -window.HTMLButtonElement IS function HTMLButtonElement() { [native code] } -window.HTMLCanvasElement IS function HTMLCanvasElement() { [native code] } -window.HTMLDListElement IS function HTMLDListElement() { [native code] } -window.HTMLDirectoryElement IS function HTMLDirectoryElement() { [native code] } -window.HTMLDivElement IS function HTMLDivElement() { [native code] } -window.HTMLDocument IS function HTMLDocument() { [native code] } -window.HTMLElement IS function HTMLElement() { [native code] } -window.HTMLEmbedElement IS function HTMLEmbedElement() { [native code] } -window.HTMLFieldSetElement IS function HTMLFieldSetElement() { [native code] } -window.HTMLFontElement IS function HTMLFontElement() { [native code] } -window.HTMLFormElement IS function HTMLFormElement() { [native code] } -window.HTMLFrameElement IS function HTMLFrameElement() { [native code] } -window.HTMLFrameSetElement IS function HTMLFrameSetElement() { [native code] } -window.HTMLHRElement IS function HTMLHRElement() { [native code] } -window.HTMLHeadElement IS function HTMLHeadElement() { [native code] } -window.HTMLHeadingElement IS function HTMLHeadingElement() { [native code] } -window.HTMLHtmlElement IS function HTMLHtmlElement() { [native code] } -window.HTMLIFrameElement IS function HTMLIFrameElement() { [native code] } -window.HTMLImageElement IS function HTMLImageElement() { [native code] } -window.HTMLInputElement IS function HTMLInputElement() { [native code] } -window.HTMLIsIndexElement IS function HTMLIsIndexElement() { [native code] } -window.HTMLLIElement IS function HTMLLIElement() { [native code] } -window.HTMLLabelElement IS function HTMLLabelElement() { [native code] } -window.HTMLLegendElement IS function HTMLLegendElement() { [native code] } -window.HTMLLinkElement IS function HTMLLinkElement() { [native code] } -window.HTMLMapElement IS function HTMLMapElement() { [native code] } -window.HTMLMarqueeElement IS function HTMLMarqueeElement() { [native code] } -window.HTMLMenuElement IS function HTMLMenuElement() { [native code] } -window.HTMLMetaElement IS function HTMLMetaElement() { [native code] } -window.HTMLModElement IS function HTMLModElement() { [native code] } -window.HTMLOListElement IS function HTMLOListElement() { [native code] } -window.HTMLObjectElement IS function HTMLObjectElement() { [native code] } -window.HTMLOptGroupElement IS function HTMLOptGroupElement() { [native code] } -window.HTMLOptionElement IS function HTMLOptionElement() { [native code] } -window.HTMLParagraphElement IS function HTMLParagraphElement() { [native code] } -window.HTMLParamElement IS function HTMLParamElement() { [native code] } -window.HTMLPreElement IS function HTMLPreElement() { [native code] } -window.HTMLQuoteElement IS function HTMLQuoteElement() { [native code] } -window.HTMLScriptElement IS function HTMLScriptElement() { [native code] } -window.HTMLSelectElement IS function HTMLSelectElement() { [native code] } -window.HTMLStyleElement IS function HTMLStyleElement() { [native code] } -window.HTMLTableCaptionElement IS function HTMLTableCaptionElement() { [native code] } -window.HTMLTableCellElement IS function HTMLTableCellElement() { [native code] } -window.HTMLTableColElement IS function HTMLTableColElement() { [native code] } -window.HTMLTableElement IS function HTMLTableElement() { [native code] } -window.HTMLTableRowElement IS function HTMLTableRowElement() { [native code] } -window.HTMLTableSectionElement IS function HTMLTableSectionElement() { [native code] } -window.HTMLTextAreaElement IS function HTMLTextAreaElement() { [native code] } -window.HTMLTitleElement IS function HTMLTitleElement() { [native code] } -window.HTMLUListElement IS function HTMLUListElement() { [native code] } -window.KeyboardEvent IS function KeyboardEvent() { [native code] } -window.MediaList IS function MediaList() { [native code] } -window.MessageEvent IS function MessageEvent() { [native code] } -window.MouseEvent IS function MouseEvent() { [native code] } -window.MutationEvent IS function MutationEvent() { [native code] } -window.NamedNodeMap IS function NamedNodeMap() { [native code] } -window.Node IS function Node() { [native code] } -window.NodeFilter IS function NodeFilter() { [native code] } -window.NodeList IS function NodeList() { [native code] } -window.Notation IS function Notation() { [native code] } -window.OverflowEvent IS function OverflowEvent() { [native code] } -window.ProcessingInstruction IS function ProcessingInstruction() { [native code] } -window.ProgressEvent IS function ProgressEvent() { [native code] } -window.Range IS function Range() { [native code] } -window.RangeException IS function RangeException() { [native code] } -window.Rect IS function Rect() { [native code] } -window.SVGAngle IS function SVGAngle() { [native code] } -window.SVGColor IS function SVGColor() { [native code] } -window.SVGException IS function SVGException() { [native code] } -window.SVGGradientElement IS function SVGGradientElement() { [native code] } -window.SVGLength IS function SVGLength() { [native code] } -window.SVGMarkerElement IS function SVGMarkerElement() { [native code] } -window.SVGPaint IS function SVGPaint() { [native code] } -window.SVGPathSeg IS function SVGPathSeg() { [native code] } -window.SVGPreserveAspectRatio IS function SVGPreserveAspectRatio() { [native code] } -window.SVGRenderingIntent IS function SVGRenderingIntent() { [native code] } -window.SVGTextContentElement IS function SVGTextContentElement() { [native code] } -window.SVGTextPathElement IS function SVGTextPathElement() { [native code] } -window.SVGTransform IS function SVGTransform() { [native code] } -window.SVGUnitTypes IS function SVGUnitTypes() { [native code] } -window.StyleSheet IS function StyleSheet() { [native code] } -window.StyleSheetList IS function StyleSheetList() { [native code] } -window.Text IS function Text() { [native code] } -window.TextEvent IS function TextEvent() { [native code] } -window.UIEvent IS function UIEvent() { [native code] } -window.WheelEvent IS function WheelEvent() { [native code] } -window.XMLDocument IS function Document() { [native code] } -window.XMLHttpRequest IS function XMLHttpRequest() { [native code] } -window.XMLHttpRequestException IS function XMLHttpRequestException() { [native code] } -window.XMLSerializer IS function XMLSerializer() { [native code] } -window.XPathEvaluator IS function XPathEvaluator() { [native code] } -window.XPathException IS function XPathException() { [native code] } -window.XPathResult IS function XPathResult() { [native code] } -window.XSLTProcessor IS function XSLTProcessor() { [native code] } -window.alert IS [object global] -window.atob IS [object global] -window.blur IS [object global] -window.btoa IS [object global] -window.captureEvents IS [object global] -window.clearInterval IS [object global] -window.clearTimeout IS [object global] -window.clientInformation IS [object Navigator] -window.close IS [object global] -window.closed IS false -window.confirm IS [object global] -window.console IS [object Console] -window.defaultStatus IS -window.defaultstatus IS -window.devicePixelRatio IS Number -window.document IS [object HTMLDocument] -window.find IS [object global] -window.focus IS [object global] -window.frameElement IS undefined -window.frames IS [object global] -window.getComputedStyle IS [object global] -window.getMatchedCSSRules IS [object global] -window.getSelection IS [object global] -window.history IS [object History] -window.innerHeight IS Number -window.innerWidth IS Number -window.length IS Number -window.location IS Location -window.locationbar IS [object BarInfo] -window.menubar IS [object BarInfo] -window.moveBy IS [object global] -window.moveTo IS [object global] -window.name IS -window.navigator IS [object Navigator] -window.offscreenBuffering IS true -window.onabort IS null -window.onbeforeunload IS null -window.onblur IS null -window.onchange IS null -window.onclick IS null -window.ondblclick IS null -window.ondragdrop IS null -window.onerror IS null -window.onfocus IS null -window.onkeydown IS null -window.onkeypress IS null -window.onkeyup IS null -window.onload IS function onload(evt) { with (this.ownerDocument ? this.ownerDocument : {}) { with (this.form ? this.form : {}) { with (this) { return (function(evt){ runTest() }).call(this, evt); } } } } -window.onmousedown IS null -window.onmousemove IS null -window.onmouseout IS null -window.onmouseover IS null -window.onmouseup IS null -window.onmousewheel IS null -window.onmove IS null -window.onreset IS null -window.onresize IS null -window.onscroll IS null -window.onsearch IS null -window.onselect IS null -window.onsubmit IS null -window.onunload IS null -window.open IS [object global] -window.opener IS null -window.outerHeight IS Number -window.outerWidth IS Number -window.pageXOffset IS Number -window.pageYOffset IS Number -window.parent IS [object global] -window.personalbar IS [object BarInfo] -window.print IS [object global] -window.prompt IS [object global] -window.releaseEvents IS [object global] -window.resizeBy IS [object global] -window.resizeTo IS [object global] -window.screen IS [object Screen] -window.screenLeft IS Number -window.screenTop IS Number -window.screenX IS Number -window.screenY IS Number -window.scroll IS [object global] -window.scrollBy IS [object global] -window.scrollTo IS [object global] -window.scrollX IS Number -window.scrollY IS Number -window.scrollbars IS [object BarInfo] -window.self IS [object global] -window.setInterval IS [object global] -window.setTimeout IS [object global] -window.showModalDialog IS [object global] -window.status IS -window.statusbar IS [object BarInfo] -window.stop IS [object global] -window.toString IS [object global] -window.toolbar IS [object BarInfo] -window.top IS [object global] -window.window IS [object global] - diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/xmlhttprequest-gc-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/xmlhttprequest-gc-expected.txt deleted file mode 100644 index 32e95aa..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/dom/xmlhttprequest-gc-expected.txt +++ /dev/null @@ -1,17 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderText {#text} at (0,0) size 20x19 - text run at (0,0) width 20: "bar" - RenderBR {BR} at (20,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "bar" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 20x19 - text run at (0,40) width 20: "bar" - RenderBR {BR} at (20,55) size 0x0 - RenderText {#text} at (0,60) size 20x19 - text run at (0,60) width 20: "bar" - RenderBR {BR} at (20,75) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.checksum deleted file mode 100644 index 2f1d18a..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -6bf78fb02f62d6d75c06a4f2bc7d9fe7
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.png b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.png Binary files differdeleted file mode 100644 index 4b7c979..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.txt deleted file mode 100644 index 6217c5a..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-buttons-expected.txt +++ /dev/null @@ -1,156 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x355 - RenderBlock {HTML} at (0,0) size 800x355 - RenderBody {BODY} at (8,8) size 784x339 - RenderTable {TABLE} at (0,0) size 673x339 - RenderTableSection {TBODY} at (0,0) size 673x339 - RenderTableRow {TR} at (0,0) size 673x22 - RenderTableCell {TD} at (0,0) size 161x22 [r=0 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 37x19 - text run at (1,1) width 37: "styling" - RenderTableCell {TD} at (161,0) size 76x22 [r=0 c=1 rs=1 cs=1] - RenderText {#text} at (1,1) size 56x19 - text run at (1,1) width 56: "<button>" - RenderTableCell {TD} at (237,0) size 150x22 [r=0 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 148x19 - text run at (1,1) width 148: "(offsetH,W) (clientH,W)" - RenderTableCell {TD} at (387,0) size 126x22 [r=0 c=3 rs=1 cs=1] - RenderText {#text} at (1,1) size 124x19 - text run at (1,1) width 124: "<input type=button>" - RenderTableCell {TD} at (513,0) size 160x22 [r=0 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 158x19 - text run at (1,1) width 158: "(offsetH,W) (clientH, -W)" - RenderTableRow {TR} at (0,22) size 673x35 - RenderTableCell {TD} at (0,28) size 161x22 [r=1 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 50x19 - text run at (1,1) width 50: "(default)" - RenderTableCell {TD} at (161,22) size 76x35 [r=1 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 42x29 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (8,2) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,28) size 150x22 [r=1 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(29, 42) (25, 38)" - RenderTableCell {TD} at (387,25) size 126x28 [r=1 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 39x22 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (8,2) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,28) size 160x22 [r=1 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(22, 39) (18, 35)" - RenderTableRow {TR} at (0,57) size 673x35 - RenderTableCell {TD} at (0,63) size 161x22 [r=2 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 63x19 - text run at (1,1) width 63: "padding: 0" - RenderTableCell {TD} at (161,57) size 76x35 [r=2 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 30x29 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (2,2) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,63) size 150x22 [r=2 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(29, 30) (25, 26)" - RenderTableCell {TD} at (387,60) size 126x28 [r=2 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 27x22 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (2,2) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,63) size 160x22 [r=2 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(22, 27) (18, 23)" - RenderTableRow {TR} at (0,92) size 673x52 - RenderTableCell {TD} at (0,107) size 161x22 [r=3 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 84x19 - text run at (1,1) width 84: "padding: 10%" - RenderTableCell {TD} at (161,93) size 76x49 [r=3 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 44x43 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (9,9) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,107) size 150x22 [r=3 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(43, 44) (39, 40)" - RenderTableCell {TD} at (387,92) size 126x52 [r=3 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 51x46 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (14,14) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,107) size 160x22 [r=3 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(46, 51) (42, 47)" - RenderTableRow {TR} at (0,144) size 673x39 - RenderTableCell {TD} at (0,152) size 161x22 [r=4 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 78x19 - text run at (1,1) width 78: "padding: 2px" - RenderTableCell {TD} at (161,144) size 76x39 [r=4 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 34x33 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (4,4) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,152) size 150x22 [r=4 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(33, 34) (29, 30)" - RenderTableCell {TD} at (387,147) size 126x32 [r=4 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 31x26 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (4,4) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,152) size 160x22 [r=4 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(26, 31) (22, 27)" - RenderTableRow {TR} at (0,183) size 673x40 - RenderTableCell {TD} at (0,192) size 161x22 [r=5 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 159x19 - text run at (1,1) width 159: "padding: 2px 6px 3px 6px" - RenderTableCell {TD} at (161,183) size 76x40 [r=5 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 42x34 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (8,4) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,192) size 150x22 [r=5 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(34, 42) (30, 38)" - RenderTableCell {TD} at (387,186) size 126x33 [r=5 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 39x27 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (8,4) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,192) size 160x22 [r=5 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(27, 39) (23, 35)" - RenderTableRow {TR} at (0,223) size 673x41 - RenderTableCell {TD} at (0,232) size 161x22 [r=6 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 105x19 - text run at (1,1) width 105: "padding: 3px 7px" - RenderTableCell {TD} at (161,223) size 76x41 [r=6 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 44x35 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (9,5) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,232) size 150x22 [r=6 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(35, 44) (31, 40)" - RenderTableCell {TD} at (387,226) size 126x34 [r=6 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 41x28 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (9,5) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,232) size 160x22 [r=6 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(28, 41) (24, 37)" - RenderTableRow {TR} at (0,264) size 673x75 - RenderTableCell {TD} at (0,290) size 161x22 [r=7 c=0 rs=1 cs=1] - RenderText {#text} at (1,1) size 86x19 - text run at (1,1) width 86: "padding: 20px" - RenderTableCell {TD} at (161,264) size 76x75 [r=7 c=1 rs=1 cs=1] - RenderButton {BUTTON} at (3,3) size 70x69 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (22,22) size 26x25 - RenderImage {IMG} at (3,1) size 20x20 - RenderTableCell {TD} at (237,290) size 150x22 [r=7 c=2 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(69, 70) (65, 66)" - RenderTableCell {TD} at (387,267) size 126x68 [r=7 c=3 rs=1 cs=1] - RenderButton {INPUT} at (3,3) size 67x62 [bgcolor=#C0C0C0] [border: (2px outset #C0C0C0)] - RenderBlock (anonymous) at (22,22) size 23x18 - RenderText at (3,1) size 17x16 - text run at (3,1) width 17: "foo" - RenderTableCell {TD} at (513,290) size 160x22 [r=7 c=4 rs=1 cs=1] - RenderText {#text} at (1,1) size 104x19 - text run at (1,1) width 104: "(62, 67) (58, 63)" diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.checksum deleted file mode 100644 index 191c5d1..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -ca26265383376749e61dc62bc0067404
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.png b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.png Binary files differdeleted file mode 100644 index e1478ec..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.txt deleted file mode 100644 index bdd177f..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-inputs-expected.txt +++ /dev/null @@ -1,55 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,10) size 470x580 - RenderBlock {DIV} at (10,0) size 450x54 [border: (1px solid #FF0000)] - RenderText {#text} at (1,4) size 7x19 - text run at (1,4) width 7: "a" - RenderTextControl {INPUT} at (10,3) size 155x22 [bgcolor=#FFFFFF] [border: (2px inset #000000)] - RenderText {#text} at (167,4) size 26x19 - text run at (167,4) width 26: "text " - RenderTextControl {INPUT} at (195,3) size 155x22 [bgcolor=#EBEBE4] [border: (2px inset #000000)] - RenderText {#text} at (352,4) size 19x19 - text run at (352,4) width 12: "b " - text run at (364,4) width 7: "a" - RenderTextControl {INPUT} at (3,29) size 155x22 [bgcolor=#FFFFFF] [border: (2px inset #000000)] - RenderText {#text} at (160,30) size 63x19 - text run at (160,30) width 63: "password " - RenderTextControl {INPUT} at (225,29) size 155x22 [bgcolor=#EBEBE4] [border: (2px inset #000000)] - RenderText {#text} at (382,30) size 8x19 - text run at (382,30) width 8: "b" - RenderBlock {DIV} at (10,64) size 450x23 [border: (1px solid #FF0000)] - RenderText {#text} at (1,2) size 7x19 - text run at (1,2) width 7: "a" - RenderBlock {INPUT} at (12,4) size 13x13 - RenderText {#text} at (28,2) size 63x19 - text run at (28,2) width 63: "checkbox " - RenderBlock {INPUT} at (95,4) size 13x13 - RenderText {#text} at (111,2) size 8x19 - text run at (111,2) width 8: "b" - RenderBlock {DIV} at (10,97) size 450x23 [border: (1px solid #FF0000)] - RenderText {#text} at (1,2) size 7x19 - text run at (1,2) width 7: "a" - RenderBlock {INPUT} at (13,4) size 13x13 - RenderText {#text} at (29,2) size 35x19 - text run at (29,2) width 35: "radio " - RenderBlock {INPUT} at (69,4) size 13x13 - RenderText {#text} at (85,2) size 8x19 - text run at (85,2) width 8: "b" -layer at (30,16) size 151x16 scrollWidth 170 - RenderBlock {DIV} at (2,3) size 151x16 - RenderText {#text} at (1,0) size 168x16 - text run at (1,0) width 168: "foobarbazfoobarbazfoobarbaz" -layer at (215,16) size 151x16 - RenderBlock {DIV} at (2,3) size 151x16 [color=#545454] - RenderText {#text} at (1,0) size 17x16 - text run at (1,0) width 17: "foo" -layer at (23,42) size 151x16 - RenderBlock {DIV} at (2,3) size 151x16 - RenderText {#text} at (1,0) size 15x16 - text run at (1,0) width 15: "\x{2022}\x{2022}\x{2022}" -layer at (245,42) size 151x16 - RenderBlock {DIV} at (2,3) size 151x16 [color=#545454] - RenderText {#text} at (1,0) size 15x16 - text run at (1,0) width 15: "\x{2022}\x{2022}\x{2022}" diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.checksum deleted file mode 100644 index 6459173..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -6fad04b82d801f95912d710ccfbfed84
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.png b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.png Binary files differdeleted file mode 100644 index 026daff..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.txt deleted file mode 100644 index 2ad57e9..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-selects-expected.txt +++ /dev/null @@ -1,174 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x574 - RenderBlock {HTML} at (0,0) size 800x574 - RenderBody {BODY} at (8,8) size 784x558 - RenderBlock {DIV} at (0,0) size 784x558 [border: (1px solid #FF0000)] - RenderText {#text} at (1,3) size 156x19 - text run at (1,3) width 156: "Whitespace in option text:" - RenderMenuList {SELECT} at (159,3) size 50x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 48x18 - RenderText at (4,1) size 25x16 - text run at (4,1) width 25: "f o o" - RenderText {#text} at (211,3) size 7x19 - text run at (211,3) width 7: "a" - RenderMenuList {SELECT} at (220,3) size 50x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 48x18 - RenderText at (4,1) size 25x16 - text run at (4,1) width 25: "f o o" - RenderText {#text} at (272,3) size 8x19 - text run at (272,3) width 8: "b" - RenderBR {BR} at (280,3) size 0x19 - RenderBR {BR} at (1,24) size 0x19 - RenderText {#text} at (1,43) size 128x19 - text run at (1,43) width 128: "Simple select control:" - RenderMenuList {SELECT} at (131,43) size 43x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 41x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (176,43) size 7x19 - text run at (176,43) width 7: "a" - RenderMenuList {SELECT} at (185,43) size 43x20 [color=#808080] [bgcolor=#FFFFFF] [border: (1px solid #808080)] - RenderBlock (anonymous) at (1,1) size 41x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (230,43) size 8x19 - text run at (230,43) width 8: "b" - RenderBR {BR} at (238,43) size 0x19 - RenderBR {BR} at (1,64) size 0x19 - RenderText {#text} at (1,83) size 181x19 - text run at (1,83) width 181: "Line-height should be ignored:" - RenderMenuList {SELECT} at (184,83) size 42x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (228,83) size 7x19 - text run at (228,83) width 7: "a" - RenderMenuList {SELECT} at (237,83) size 43x20 [color=#808080] [bgcolor=#FFFFFF] [border: (1px solid #808080)] - RenderBlock (anonymous) at (1,1) size 41x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (282,83) size 8x19 - text run at (282,83) width 8: "b" - RenderBR {BR} at (290,83) size 0x19 - RenderBR {BR} at (1,104) size 0x19 - RenderText {#text} at (1,127) size 414x19 - text run at (1,127) width 414: "Padding should be respected, the arrow button shouldn't change size:" - RenderMenuList {SELECT} at (417,123) size 50x28 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (5,5) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (469,127) size 7x19 - text run at (469,127) width 7: "a" - RenderMenuList {SELECT} at (478,123) size 50x28 [color=#808080] [bgcolor=#FFFFFF] [border: (1px solid #808080)] - RenderBlock (anonymous) at (5,5) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (530,127) size 8x19 - text run at (530,127) width 8: "b" - RenderBR {BR} at (538,127) size 0x19 - RenderBR {BR} at (1,152) size 0x19 - RenderText {#text} at (1,178) size 171x19 - text run at (1,178) width 171: "Border should be respected:" - RenderMenuList {SELECT} at (174,171) size 56x34 [bgcolor=#FFFFFF] [border: (8px solid #33CCFF)] - RenderBlock (anonymous) at (8,8) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (232,178) size 7x19 - text run at (232,178) width 7: "a" - RenderMenuList {SELECT} at (241,171) size 56x34 [color=#808080] [bgcolor=#FFFFFF] [border: (8px solid #33CCFF)] - RenderBlock (anonymous) at (8,8) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (299,178) size 8x19 - text run at (299,178) width 8: "b" - RenderBR {BR} at (307,178) size 0x19 - RenderBR {BR} at (1,206) size 0x19 - RenderText {#text} at (1,233) size 111x19 - text run at (1,233) width 111: "Border + padding:" - RenderMenuList {SELECT} at (114,225) size 58x36 [bgcolor=#FFFFFF] [border: (4px solid #33CCFF)] - RenderBlock (anonymous) at (9,9) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (174,233) size 7x19 - text run at (174,233) width 7: "a" - RenderMenuList {SELECT} at (183,225) size 58x36 [color=#808080] [bgcolor=#FFFFFF] [border: (4px solid #33CCFF)] - RenderBlock (anonymous) at (9,9) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (243,233) size 8x19 - text run at (243,233) width 8: "b" - RenderBR {BR} at (251,233) size 0x19 - RenderBR {BR} at (1,262) size 0x19 - RenderText {#text} at (1,284) size 454x19 - text run at (1,284) width 454: "Height larger than font-size, button should grow, text baseline should center:" - RenderMenuList {SELECT} at (457,279) size 42x30 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,6) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (501,284) size 7x19 - text run at (501,284) width 7: "a" - RenderMenuList {SELECT} at (510,279) size 42x30 [color=#808080] [bgcolor=#FFFFFF] [border: (1px solid #808080)] - RenderBlock (anonymous) at (1,6) size 40x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (554,284) size 8x19 - text run at (554,284) width 8: "b" - RenderBR {BR} at (562,284) size 0x19 - RenderBR {BR} at (1,308) size 0x19 - RenderText {#text} at (1,324) size 472x19 - text run at (1,324) width 472: "Heigh smaller than font-size, whole select shrinks and is baselined with the text:" - RenderMenuList {SELECT} at (475,336) size 43x3 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 41x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (520,324) size 7x19 - text run at (520,324) width 7: "a" - RenderMenuList {SELECT} at (529,336) size 43x3 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 41x18 - RenderText at (4,1) size 17x16 - text run at (4,1) width 17: "foo" - RenderText {#text} at (574,324) size 8x19 - text run at (574,324) width 8: "b" - RenderBR {BR} at (582,324) size 0x19 - RenderBR {BR} at (1,340) size 0x19 - RenderText {#text} at (1,356) size 159x19 - text run at (1,356) width 159: "select control with size=0: " - RenderBR {BR} at (160,356) size 0x19 - RenderMenuList {SELECT} at (3,375) size 204x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 202x18 - RenderText at (4,1) size 78x16 - text run at (4,1) width 78: "Future Series" - RenderText {#text} at (209,375) size 4x19 - text run at (209,375) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,396) size 159x19 - text run at (1,396) width 159: "select control with size=1: " - RenderBR {BR} at (160,396) size 0x19 - RenderMenuList {SELECT} at (3,415) size 204x20 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (1,1) size 202x18 - RenderText at (4,1) size 78x16 - text run at (4,1) width 78: "Future Series" - RenderText {#text} at (209,415) size 4x19 - text run at (209,415) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,436) size 159x19 - text run at (1,436) width 159: "Non-styled select control: " - RenderBR {BR} at (160,436) size 0x19 - RenderMenuList {SELECT} at (3,455) size 224x40 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (11,11) size 202x18 - RenderText at (4,1) size 78x16 - text run at (4,1) width 78: "Future Series" - RenderText {#text} at (229,465) size 4x19 - text run at (229,465) width 4: " " - RenderBR {BR} at (0,0) size 0x0 - RenderText {#text} at (1,496) size 278x19 - text run at (1,496) width 278: "Styled select control with large border-radius: " - RenderBR {BR} at (279,496) size 0x19 - RenderMenuList {SELECT} at (3,515) size 224x40 [bgcolor=#33CCFF] [border: (1px solid #000000)] - RenderBlock (anonymous) at (11,11) size 202x18 - RenderText at (4,1) size 78x16 - text run at (4,1) width 78: "Future Series" - RenderText {#text} at (229,525) size 4x19 - text run at (229,525) width 4: " " - RenderBR {BR} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.checksum b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.checksum deleted file mode 100644 index 47f22bb..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -a96f9fe9ba58d2427506b9b7bcd02386
\ No newline at end of file diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.png b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.png Binary files differdeleted file mode 100644 index 8214052..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.txt deleted file mode 100644 index 94f4417..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fast/forms/basic-textareas-quirks-expected.txt +++ /dev/null @@ -1,845 +0,0 @@ -layer at (0,0) size 785x1086 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x1086 - RenderBlock {HTML} at (0,0) size 785x600 - RenderBody {BODY} at (8,8) size 769x584 - RenderBlock (floating) {DIV} at (0,0) size 352x902 [border: (1px solid #FF0000)] - RenderBlock (anonymous) at (1,1) size 350x14 - RenderText {#text} at (0,-1) size 177x16 - text run at (0,-1) width 177: "Plain textarea with little content" - RenderBlock {DIV} at (1,15) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 12: " B" - RenderBlock (anonymous) at (1,59) size 350x14 - RenderText {#text} at (0,-1) size 75x16 - text run at (0,-1) width 75: "Plain textarea" - RenderBlock {DIV} at (1,73) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 12: " B" - RenderBlock (anonymous) at (1,117) size 350x14 - RenderText {#text} at (0,-1) size 96x16 - text run at (0,-1) width 96: "Disabled textarea" - RenderBlock {DIV} at (1,131) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 12: " B" - RenderBlock (anonymous) at (1,175) size 350x14 - RenderText {#text} at (0,-1) size 119x16 - text run at (0,-1) width 119: "style=\"padding:10px\"" - RenderBlock {DIV} at (1,189) size 352x62 [border: (1px solid #FF0000)] - RenderText {#text} at (1,46) size 13x16 - text run at (1,46) width 13: "A " - RenderText {#text} at (215,46) size 12x16 - text run at (215,46) width 12: " B" - RenderBlock (anonymous) at (1,251) size 350x14 - RenderText {#text} at (0,-1) size 112x16 - text run at (0,-1) width 112: "style=\"padding:0px\"" - RenderBlock {DIV} at (1,265) size 352x42 [border: (1px solid #FF0000)] - RenderText {#text} at (1,26) size 13x16 - text run at (1,26) width 13: "A " - RenderText {#text} at (195,26) size 12x16 - text run at (195,26) width 12: " B" - RenderBlock (anonymous) at (1,307) size 350x14 - RenderText {#text} at (0,-1) size 114x16 - text run at (0,-1) width 114: "style=\"margin:10px\"" - RenderBlock {DIV} at (1,321) size 352x60 [border: (1px solid #FF0000)] - RenderText {#text} at (1,44) size 13x16 - text run at (1,44) width 13: "A " - RenderText {#text} at (213,44) size 12x16 - text run at (213,44) width 12: " B" - RenderBlock (anonymous) at (1,381) size 350x14 - RenderText {#text} at (0,-1) size 107x16 - text run at (0,-1) width 107: "style=\"margin:0px\"" - RenderBlock {DIV} at (1,395) size 352x40 [border: (1px solid #FF0000)] - RenderText {#text} at (1,24) size 13x16 - text run at (1,24) width 13: "A " - RenderText {#text} at (193,24) size 12x16 - text run at (193,24) width 12: " B" - RenderBlock (anonymous) at (1,435) size 350x14 - RenderText {#text} at (0,-1) size 38x16 - text run at (0,-1) width 38: "cols=3" - RenderBlock {DIV} at (1,449) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (61,28) size 12x16 - text run at (61,28) width 12: " B" - RenderBlock (anonymous) at (1,493) size 350x14 - RenderText {#text} at (0,-1) size 44x16 - text run at (0,-1) width 44: "rows=3" - RenderBlock {DIV} at (1,507) size 352x60 [border: (1px solid #FF0000)] - RenderText {#text} at (1,44) size 13x16 - text run at (1,44) width 13: "A " - RenderText {#text} at (197,44) size 12x16 - text run at (197,44) width 12: " B" - RenderBlock (anonymous) at (1,567) size 350x14 - RenderText {#text} at (0,-1) size 45x16 - text run at (0,-1) width 45: "cols=10" - RenderBlock {DIV} at (1,581) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (117,28) size 12x16 - text run at (117,28) width 12: " B" - RenderBlock (anonymous) at (1,625) size 350x14 - RenderText {#text} at (0,-1) size 51x16 - text run at (0,-1) width 51: "rows=10" - RenderBlock {DIV} at (1,639) size 352x172 [border: (1px solid #FF0000)] - RenderText {#text} at (1,156) size 13x16 - text run at (1,156) width 13: "A " - RenderText {#text} at (197,156) size 12x16 - text run at (197,156) width 12: " B" - RenderBlock (anonymous) at (1,811) size 350x14 - RenderText {#text} at (0,-1) size 86x16 - text run at (0,-1) width 86: "cols=5 rows=4" - RenderBlock {DIV} at (1,825) size 352x76 [border: (1px solid #FF0000)] - RenderText {#text} at (1,60) size 13x16 - text run at (1,60) width 13: "A " - RenderText {#text} at (77,60) size 12x16 - text run at (77,60) width 12: " B" - RenderBlock (floating) {DIV} at (352,0) size 352x1078 [border: (1px solid #FF0000)] - RenderBlock (anonymous) at (1,1) size 350x14 - RenderText {#text} at (0,-1) size 107x16 - text run at (0,-1) width 107: "style=\"width:60px\"" - RenderBlock {DIV} at (1,15) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (74,28) size 12x16 - text run at (74,28) width 12: " B" - RenderBlock (anonymous) at (1,59) size 350x14 - RenderText {#text} at (0,-1) size 186x16 - text run at (0,-1) width 186: "style=\"width:60px;padding:20px\"" - RenderBlock {DIV} at (1,73) size 352x82 [border: (1px solid #FF0000)] - RenderText {#text} at (1,66) size 13x16 - text run at (1,66) width 13: "A " - RenderText {#text} at (74,66) size 12x16 - text run at (74,66) width 12: " B" - RenderBlock (anonymous) at (1,155) size 350x14 - RenderText {#text} at (0,-1) size 165x16 - text run at (0,-1) width 165: "style=\"width:60px;padding:0\"" - RenderBlock {DIV} at (1,169) size 352x42 [border: (1px solid #FF0000)] - RenderText {#text} at (1,26) size 13x16 - text run at (1,26) width 13: "A " - RenderText {#text} at (74,26) size 12x16 - text run at (74,26) width 12: " B" - RenderBlock (anonymous) at (1,211) size 350x14 - RenderText {#text} at (0,-1) size 109x16 - text run at (0,-1) width 109: "style=\"height:60px\"" - RenderBlock {DIV} at (1,225) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (197,48) size 12x16 - text run at (197,48) width 12: " B" - RenderBlock (anonymous) at (1,289) size 350x14 - RenderText {#text} at (0,-1) size 176x16 - text run at (0,-1) width 176: "style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,303) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,367) size 350x14 - RenderText {#text} at (0,-1) size 135x16 - text run at (0,-1) width 135: "style=\"overflow:hidden\"" - RenderBlock {DIV} at (1,381) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 12: " B" - RenderBlock (anonymous) at (1,425) size 350x14 - RenderText {#text} at (0,-1) size 129x16 - text run at (0,-1) width 129: "style=\"overflow:scroll\"" - RenderBlock {DIV} at (1,439) size 352x59 [border: (1px solid #FF0000)] - RenderText {#text} at (1,43) size 13x16 - text run at (1,43) width 13: "A " - RenderText {#text} at (197,43) size 12x16 - text run at (197,43) width 12: " B" - RenderBlock (anonymous) at (1,498) size 350x14 - RenderText {#text} at (0,-1) size 271x16 - text run at (0,-1) width 271: "style=\"overflow:hidden;width:60px;height:60px\"" - RenderBlock {DIV} at (1,512) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,576) size 350x14 - RenderText {#text} at (0,-1) size 265x16 - text run at (0,-1) width 265: "style=\"overflow:scroll;width:60px;height:60px\"" - RenderBlock {DIV} at (1,590) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,654) size 350x14 - RenderText {#text} at (0,-1) size 218x16 - text run at (0,-1) width 218: "cols=5 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,668) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,732) size 350x14 - RenderText {#text} at (0,-1) size 224x16 - text run at (0,-1) width 224: "rows=4 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,746) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,810) size 350x14 - RenderText {#text} at (0,-1) size 266x16 - text run at (0,-1) width 266: "cols=5 rows=4 style=\"width:60px;height:60px\"" - RenderBlock {DIV} at (1,824) size 352x64 [border: (1px solid #FF0000)] - RenderText {#text} at (1,48) size 13x16 - text run at (1,48) width 13: "A " - RenderText {#text} at (74,48) size 12x16 - text run at (74,48) width 12: " B" - RenderBlock (anonymous) at (1,888) size 350x14 - RenderText {#text} at (0,-1) size 64x16 - text run at (0,-1) width 64: "wrap=\"off\"" - RenderBlock {DIV} at (1,902) size 352x59 [border: (1px solid #FF0000)] - RenderText {#text} at (1,43) size 13x16 - text run at (1,43) width 13: "A " - RenderText {#text} at (197,43) size 12x16 - text run at (197,43) width 4: " " - text run at (201,43) width 8: "B" - RenderBlock (anonymous) at (1,961) size 350x14 - RenderText {#text} at (0,-1) size 72x16 - text run at (0,-1) width 72: "wrap=\"hard\"" - RenderBlock {DIV} at (1,975) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 4: " " - text run at (201,28) width 8: "B" - RenderBlock (anonymous) at (1,1019) size 350x14 - RenderText {#text} at (0,-1) size 69x16 - text run at (0,-1) width 69: "wrap=\"soft\"" - RenderBlock {DIV} at (1,1033) size 352x44 [border: (1px solid #FF0000)] - RenderText {#text} at (1,28) size 13x16 - text run at (1,28) width 13: "A " - RenderText {#text} at (197,28) size 12x16 - text run at (197,28) width 4: " " - text run at (201,28) width 8: "B" -layer at (25,26) size 179x36 clip at (26,27) size 177x34 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 175x16 - RenderText {#text} at (0,0) size 136x16 - text run at (0,0) width 136: "Lorem ipsum dolor" -layer at (25,84) size 179x36 clip at (26,85) size 162x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (25,142) size 179x36 clip at (26,143) size 162x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#EBEBE4] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 [color=#545454] - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (25,200) size 197x54 clip at (26,201) size 180x52 scrollHeight 100 - RenderTextControl {TEXTAREA} at (16,3) size 197x54 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (11,11) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (25,276) size 177x34 clip at (26,277) size 160x32 scrollHeight 80 - RenderTextControl {TEXTAREA} at (16,3) size 177x34 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (33,340) size 179x36 clip at (34,341) size 162x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (24,11) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (23,404) size 179x36 clip at (24,405) size 162x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (14,1) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (25,460) size 43x36 clip at (26,461) size 26x34 scrollHeight 370 - RenderTextControl {TEXTAREA} at (16,3) size 43x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 24x368 - RenderText {#text} at (0,0) size 24x368 - text run at (0,0) width 24: "Lor" - text run at (0,16) width 16: "em" - text run at (16,16) width 8: " " - text run at (0,32) width 24: "ips" - text run at (0,48) width 16: "um" - text run at (16,48) width 8: " " - text run at (0,64) width 24: "dol" - text run at (0,80) width 16: "or" - text run at (16,80) width 8: " " - text run at (0,96) width 24: "ABC" - text run at (0,112) width 24: "DEF" - text run at (0,128) width 24: "GHI" - text run at (0,144) width 24: "JKL" - text run at (0,160) width 24: "MNO" - text run at (0,176) width 24: "PQR" - text run at (0,192) width 24: "STU" - text run at (0,208) width 24: "VWX" - text run at (0,224) width 16: "YZ" - text run at (16,224) width 8: " " - text run at (0,240) width 24: "abc" - text run at (0,256) width 24: "def" - text run at (0,272) width 24: "ghi" - text run at (0,288) width 24: "jkl" - text run at (0,304) width 24: "mno" - text run at (0,320) width 24: "pqr" - text run at (0,336) width 24: "stu" - text run at (0,352) width 8: "v" - text run at (8,352) width 8: " " -layer at (25,518) size 179x52 clip at (26,519) size 162x50 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,3) size 179x52 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (25,592) size 99x36 clip at (26,593) size 82x34 scrollHeight 146 - RenderTextControl {TEXTAREA} at (16,3) size 99x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 80x144 - RenderText {#text} at (0,0) size 80x144 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 8: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 8: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 8: " " - text run at (0,48) width 80: "ABCDEFGHIJ" - text run at (0,64) width 80: "KLMNOPQRST" - text run at (0,80) width 48: "UVWXYZ" - text run at (48,80) width 8: " " - text run at (0,96) width 80: "abcdefghij" - text run at (0,112) width 80: "klmnopqrst" - text run at (0,128) width 16: "uv" - text run at (16,128) width 8: " " -layer at (25,650) size 179x164 clip at (26,651) size 177x162 - RenderTextControl {TEXTAREA} at (16,3) size 179x164 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 175x80 - RenderText {#text} at (0,0) size 168x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 168: "ABCDEFGHIJKLMNOPQRSTU" - text run at (0,32) width 40: "VWXYZ" - text run at (40,32) width 8: " " - text run at (0,48) width 168: "abcdefghijklmnopqrstu" - text run at (0,64) width 8: "v" - text run at (8,64) width 8: " " -layer at (25,836) size 59x68 clip at (26,837) size 42x66 scrollHeight 226 - RenderTextControl {TEXTAREA} at (16,3) size 59x68 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 40x224 - RenderText {#text} at (0,0) size 40x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 0: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 0: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 0: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (375,26) size 60x36 clip at (376,27) size 43x34 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,3) size 60x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (375,84) size 60x74 clip at (376,85) size 43x72 scrollHeight 1048 - RenderTextControl {TEXTAREA} at (14,3) size 60x74 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (21,21) size 3x1008 - RenderText {#text} at (0,0) size 8x1008 - text run at (0,0) width 8: "L" - text run at (0,16) width 8: "o" - text run at (0,32) width 8: "r" - text run at (0,48) width 8: "e" - text run at (0,64) width 8: "m" - text run at (0,80) width 8: "i" - text run at (0,96) width 8: "p" - text run at (0,112) width 8: "s" - text run at (0,128) width 8: "u" - text run at (0,144) width 8: "m" - text run at (0,160) width 8: "d" - text run at (0,176) width 8: "o" - text run at (0,192) width 8: "l" - text run at (0,208) width 8: "o" - text run at (0,224) width 8: "r" - text run at (0,240) width 8: "A" - text run at (0,256) width 8: "B" - text run at (0,272) width 8: "C" - text run at (0,288) width 8: "D" - text run at (0,304) width 8: "E" - text run at (0,320) width 8: "F" - text run at (0,336) width 8: "G" - text run at (0,352) width 8: "H" - text run at (0,368) width 8: "I" - text run at (0,384) width 8: "J" - text run at (0,400) width 8: "K" - text run at (0,416) width 8: "L" - text run at (0,432) width 8: "M" - text run at (0,448) width 8: "N" - text run at (0,464) width 8: "O" - text run at (0,480) width 8: "P" - text run at (0,496) width 8: "Q" - text run at (0,512) width 8: "R" - text run at (0,528) width 8: "S" - text run at (0,544) width 8: "T" - text run at (0,560) width 8: "U" - text run at (0,576) width 8: "V" - text run at (0,592) width 8: "W" - text run at (0,608) width 8: "X" - text run at (0,624) width 8: "Y" - text run at (0,640) width 8: "Z" - text run at (0,656) width 8: "a" - text run at (0,672) width 8: "b" - text run at (0,688) width 8: "c" - text run at (0,704) width 8: "d" - text run at (0,720) width 8: "e" - text run at (0,736) width 8: "f" - text run at (0,752) width 8: "g" - text run at (0,768) width 8: "h" - text run at (0,784) width 8: "i" - text run at (0,800) width 8: "j" - text run at (0,816) width 8: "k" - text run at (0,832) width 8: "l" - text run at (0,848) width 8: "m" - text run at (0,864) width 8: "n" - text run at (0,880) width 8: "o" - text run at (0,896) width 8: "p" - text run at (0,912) width 8: "q" - text run at (0,928) width 8: "r" - text run at (0,944) width 8: "s" - text run at (0,960) width 8: "t" - text run at (0,976) width 8: "u" - text run at (0,992) width 8: "v" -layer at (375,180) size 60x34 clip at (376,181) size 43x32 scrollHeight 224 - RenderTextControl {TEXTAREA} at (14,3) size 60x34 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (1,1) size 43x224 - RenderText {#text} at (0,0) size 43x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 3: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 3: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 3: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (377,234) size 179x60 clip at (378,235) size 162x58 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,1) size 179x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (375,312) size 60x60 clip at (376,313) size 43x58 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (377,392) size 179x36 clip at (378,393) size 177x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 175x80 - RenderText {#text} at (0,0) size 168x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 168: "ABCDEFGHIJKLMNOPQRSTU" - text run at (0,32) width 40: "VWXYZ" - text run at (40,32) width 8: " " - text run at (0,48) width 168: "abcdefghijklmnopqrstu" - text run at (0,64) width 8: "v" - text run at (8,64) width 8: " " -layer at (377,450) size 179x51 clip at (378,451) size 162x34 scrollHeight 82 - RenderTextControl {TEXTAREA} at (16,3) size 179x51 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x80 - RenderText {#text} at (0,0) size 160x80 - text run at (0,0) width 136: "Lorem ipsum dolor" - text run at (136,0) width 8: " " - text run at (0,16) width 160: "ABCDEFGHIJKLMNOPQRST" - text run at (0,32) width 48: "UVWXYZ" - text run at (48,32) width 8: " " - text run at (0,48) width 160: "abcdefghijklmnopqrst" - text run at (0,64) width 16: "uv" - text run at (16,64) width 8: " " -layer at (375,521) size 60x60 clip at (376,522) size 58x58 scrollHeight 178 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 56x176 - RenderText {#text} at (0,0) size 56x176 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 8: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 8: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 8: " " - text run at (0,48) width 56: "ABCDEFG" - text run at (0,64) width 56: "HIJKLMN" - text run at (0,80) width 56: "OPQRSTU" - text run at (0,96) width 40: "VWXYZ" - text run at (40,96) width 8: " " - text run at (0,112) width 56: "abcdefg" - text run at (0,128) width 56: "hijklmn" - text run at (0,144) width 56: "opqrstu" - text run at (0,160) width 8: "v" - text run at (8,160) width 8: " " -layer at (375,599) size 60x60 clip at (376,600) size 43x43 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (375,677) size 60x60 clip at (376,678) size 43x58 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (375,755) size 60x60 clip at (376,756) size 43x58 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (375,833) size 60x60 clip at (376,834) size 43x58 scrollHeight 226 - RenderTextControl {TEXTAREA} at (14,1) size 60x60 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 41x224 - RenderText {#text} at (0,0) size 41x224 - text run at (0,0) width 40: "Lorem" - text run at (40,0) width 1: " " - text run at (0,16) width 40: "ipsum" - text run at (40,16) width 1: " " - text run at (0,32) width 40: "dolor" - text run at (40,32) width 1: " " - text run at (0,48) width 40: "ABCDE" - text run at (0,64) width 40: "FGHIJ" - text run at (0,80) width 40: "KLMNO" - text run at (0,96) width 40: "PQRST" - text run at (0,112) width 40: "UVWXY" - text run at (0,128) width 8: "Z" - text run at (8,128) width 8: " " - text run at (0,144) width 40: "abcde" - text run at (0,160) width 40: "fghij" - text run at (0,176) width 40: "klmno" - text run at (0,192) width 40: "pqrst" - text run at (0,208) width 16: "uv" - text run at (16,208) width 8: " " -layer at (377,913) size 179x51 clip at (378,914) size 162x34 scrollWidth 290 scrollHeight 258 - RenderTextControl {TEXTAREA} at (16,3) size 179x51 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x256 - RenderText {#text} at (0,0) size 288x240 - text run at (0,0) width 8: " " - text run at (8,0) width 0: " " - text run at (0,16) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,16) width 0: " " - text run at (0,32) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,32) width 0: " " - text run at (0,48) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,48) width 0: " " - text run at (0,64) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,64) width 0: " " - text run at (0,80) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,80) width 0: " " - text run at (0,96) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,96) width 0: " " - text run at (0,112) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,112) width 0: " " - text run at (0,128) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,128) width 0: " " - text run at (0,144) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,144) width 0: " " - text run at (0,160) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,160) width 0: " " - text run at (0,176) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,176) width 0: " " - text run at (0,192) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,192) width 0: " " - text run at (0,208) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,208) width 0: " " - text run at (0,224) width 288: "This is a text area with wrap=\"soft\"" - text run at (288,224) width 0: " " - RenderBR {BR} at (0,240) size 0x16 -layer at (377,986) size 179x36 clip at (378,987) size 162x34 scrollHeight 482 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x480 - RenderText {#text} at (0,0) size 160x464 - text run at (0,0) width 8: " " - text run at (8,0) width 0: " " - text run at (0,16) width 152: "This is a text area" - text run at (152,16) width 8: " " - text run at (0,32) width 128: "with wrap=\"soft\"" - text run at (128,32) width 0: " " - text run at (0,48) width 152: "This is a text area" - text run at (152,48) width 8: " " - text run at (0,64) width 128: "with wrap=\"soft\"" - text run at (128,64) width 0: " " - text run at (0,80) width 152: "This is a text area" - text run at (152,80) width 8: " " - text run at (0,96) width 128: "with wrap=\"soft\"" - text run at (128,96) width 0: " " - text run at (0,112) width 152: "This is a text area" - text run at (152,112) width 8: " " - text run at (0,128) width 128: "with wrap=\"soft\"" - text run at (128,128) width 0: " " - text run at (0,144) width 152: "This is a text area" - text run at (152,144) width 8: " " - text run at (0,160) width 128: "with wrap=\"soft\"" - text run at (128,160) width 0: " " - text run at (0,176) width 152: "This is a text area" - text run at (152,176) width 8: " " - text run at (0,192) width 128: "with wrap=\"soft\"" - text run at (128,192) width 0: " " - text run at (0,208) width 152: "This is a text area" - text run at (152,208) width 8: " " - text run at (0,224) width 128: "with wrap=\"soft\"" - text run at (128,224) width 0: " " - text run at (0,240) width 152: "This is a text area" - text run at (152,240) width 8: " " - text run at (0,256) width 128: "with wrap=\"soft\"" - text run at (128,256) width 0: " " - text run at (0,272) width 152: "This is a text area" - text run at (152,272) width 8: " " - text run at (0,288) width 128: "with wrap=\"soft\"" - text run at (128,288) width 0: " " - text run at (0,304) width 152: "This is a text area" - text run at (152,304) width 8: " " - text run at (0,320) width 128: "with wrap=\"soft\"" - text run at (128,320) width 0: " " - text run at (0,336) width 152: "This is a text area" - text run at (152,336) width 8: " " - text run at (0,352) width 128: "with wrap=\"soft\"" - text run at (128,352) width 0: " " - text run at (0,368) width 152: "This is a text area" - text run at (152,368) width 8: " " - text run at (0,384) width 128: "with wrap=\"soft\"" - text run at (128,384) width 0: " " - text run at (0,400) width 152: "This is a text area" - text run at (152,400) width 8: " " - text run at (0,416) width 128: "with wrap=\"soft\"" - text run at (128,416) width 0: " " - text run at (0,432) width 152: "This is a text area" - text run at (152,432) width 8: " " - text run at (0,448) width 128: "with wrap=\"soft\"" - text run at (128,448) width 0: " " - RenderBR {BR} at (0,464) size 0x16 -layer at (377,1044) size 179x36 clip at (378,1045) size 162x34 scrollHeight 482 - RenderTextControl {TEXTAREA} at (16,3) size 179x36 [bgcolor=#FFFFFF] [border: (1px solid #000000)] - RenderBlock {DIV} at (3,3) size 160x480 - RenderText {#text} at (0,0) size 160x464 - text run at (0,0) width 8: " " - text run at (8,0) width 0: " " - text run at (0,16) width 152: "This is a text area" - text run at (152,16) width 8: " " - text run at (0,32) width 128: "with wrap=\"soft\"" - text run at (128,32) width 0: " " - text run at (0,48) width 152: "This is a text area" - text run at (152,48) width 8: " " - text run at (0,64) width 128: "with wrap=\"soft\"" - text run at (128,64) width 0: " " - text run at (0,80) width 152: "This is a text area" - text run at (152,80) width 8: " " - text run at (0,96) width 128: "with wrap=\"soft\"" - text run at (128,96) width 0: " " - text run at (0,112) width 152: "This is a text area" - text run at (152,112) width 8: " " - text run at (0,128) width 128: "with wrap=\"soft\"" - text run at (128,128) width 0: " " - text run at (0,144) width 152: "This is a text area" - text run at (152,144) width 8: " " - text run at (0,160) width 128: "with wrap=\"soft\"" - text run at (128,160) width 0: " " - text run at (0,176) width 152: "This is a text area" - text run at (152,176) width 8: " " - text run at (0,192) width 128: "with wrap=\"soft\"" - text run at (128,192) width 0: " " - text run at (0,208) width 152: "This is a text area" - text run at (152,208) width 8: " " - text run at (0,224) width 128: "with wrap=\"soft\"" - text run at (128,224) width 0: " " - text run at (0,240) width 152: "This is a text area" - text run at (152,240) width 8: " " - text run at (0,256) width 128: "with wrap=\"soft\"" - text run at (128,256) width 0: " " - text run at (0,272) width 152: "This is a text area" - text run at (152,272) width 8: " " - text run at (0,288) width 128: "with wrap=\"soft\"" - text run at (128,288) width 0: " " - text run at (0,304) width 152: "This is a text area" - text run at (152,304) width 8: " " - text run at (0,320) width 128: "with wrap=\"soft\"" - text run at (128,320) width 0: " " - text run at (0,336) width 152: "This is a text area" - text run at (152,336) width 8: " " - text run at (0,352) width 128: "with wrap=\"soft\"" - text run at (128,352) width 0: " " - text run at (0,368) width 152: "This is a text area" - text run at (152,368) width 8: " " - text run at (0,384) width 128: "with wrap=\"soft\"" - text run at (128,384) width 0: " " - text run at (0,400) width 152: "This is a text area" - text run at (152,400) width 8: " " - text run at (0,416) width 128: "with wrap=\"soft\"" - text run at (128,416) width 0: " " - text run at (0,432) width 152: "This is a text area" - text run at (152,432) width 8: " " - text run at (0,448) width 128: "with wrap=\"soft\"" - text run at (128,448) width 0: " " - RenderBR {BR} at (0,464) size 0x16 diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/arial-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/arial-expected.txt deleted file mode 100644 index 2071d91..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/arial-expected.txt +++ /dev/null @@ -1,865 +0,0 @@ -layer at (0,0) size 785x5602 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x5602 - RenderBlock {HTML} at (0,0) size 785x5602 - RenderBody {BODY} at (8,8) size 769x5578 - RenderBlock (anonymous) at (0,0) size 769x1786 - RenderInline {FONT} at (0,0) size 64x1785 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,19) size 20x18 - text run at (0,19) width 20: "!!!!" - RenderBR {BR} at (20,34) size 0x0 - RenderText {#text} at (0,38) size 24x18 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,53) size 0x0 - RenderText {#text} at (0,57) size 36x18 - text run at (0,57) width 36: "####" - RenderBR {BR} at (36,72) size 0x0 - RenderText {#text} at (0,76) size 36x18 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,91) size 0x0 - RenderText {#text} at (0,95) size 56x18 - text run at (0,95) width 56: "%%%%" - RenderBR {BR} at (56,110) size 0x0 - RenderText {#text} at (0,114) size 44x18 - text run at (0,114) width 44: "&&&&" - RenderBR {BR} at (44,129) size 0x0 - RenderText {#text} at (0,133) size 12x18 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,148) size 0x0 - RenderText {#text} at (0,152) size 20x18 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,167) size 0x0 - RenderText {#text} at (0,171) size 20x18 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,186) size 0x0 - RenderText {#text} at (0,190) size 24x18 - text run at (0,190) width 24: "****" - RenderBR {BR} at (24,205) size 0x0 - RenderText {#text} at (0,209) size 36x18 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,224) size 0x0 - RenderText {#text} at (0,228) size 16x18 - text run at (0,228) width 16: ",,,," - RenderBR {BR} at (16,243) size 0x0 - RenderText {#text} at (0,247) size 20x18 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,262) size 0x0 - RenderText {#text} at (0,266) size 16x18 - text run at (0,266) width 16: "...." - RenderBR {BR} at (16,281) size 0x0 - RenderText {#text} at (0,285) size 16x18 - text run at (0,285) width 16: "////" - RenderBR {BR} at (16,300) size 0x0 - RenderText {#text} at (0,304) size 36x18 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,319) size 0x0 - RenderText {#text} at (0,323) size 36x18 - text run at (0,323) width 36: "1111" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "2222" - RenderBR {BR} at (36,357) size 0x0 - RenderText {#text} at (0,361) size 36x18 - text run at (0,361) width 36: "3333" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x18 - text run at (0,380) width 36: "4444" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,399) size 36x18 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,414) size 0x0 - RenderText {#text} at (0,418) size 36x18 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,433) size 0x0 - RenderText {#text} at (0,437) size 36x18 - text run at (0,437) width 36: "7777" - RenderBR {BR} at (36,452) size 0x0 - RenderText {#text} at (0,456) size 36x18 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,471) size 0x0 - RenderText {#text} at (0,475) size 36x18 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,490) size 0x0 - RenderText {#text} at (0,494) size 16x18 - text run at (0,494) width 16: "::::" - RenderBR {BR} at (16,509) size 0x0 - RenderText {#text} at (0,513) size 16x18 - text run at (0,513) width 16: ";;;;" - RenderBR {BR} at (16,528) size 0x0 - RenderText {#text} at (0,532) size 36x18 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,547) size 0x0 - RenderText {#text} at (0,551) size 36x18 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,566) size 0x0 - RenderText {#text} at (0,570) size 36x18 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,585) size 0x0 - RenderText {#text} at (0,589) size 36x18 - text run at (0,589) width 36: "????" - RenderBR {BR} at (36,604) size 0x0 - RenderText {#text} at (0,608) size 64x18 - text run at (0,608) width 64: "@@@@" - RenderBR {BR} at (64,623) size 0x0 - RenderText {#text} at (0,627) size 44x18 - text run at (0,627) width 44: "AAAA" - RenderBR {BR} at (44,642) size 0x0 - RenderText {#text} at (0,646) size 44x18 - text run at (0,646) width 44: "BBBB" - RenderBR {BR} at (44,661) size 0x0 - RenderText {#text} at (0,665) size 48x18 - text run at (0,665) width 48: "CCCC" - RenderBR {BR} at (48,680) size 0x0 - RenderText {#text} at (0,684) size 48x18 - text run at (0,684) width 48: "DDDD" - RenderBR {BR} at (48,699) size 0x0 - RenderText {#text} at (0,703) size 44x18 - text run at (0,703) width 44: "EEEE" - RenderBR {BR} at (44,718) size 0x0 - RenderText {#text} at (0,722) size 40x18 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,741) size 48x18 - text run at (0,741) width 48: "GGGG" - RenderBR {BR} at (48,756) size 0x0 - RenderText {#text} at (0,760) size 44x18 - text run at (0,760) width 44: "HHHH" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,779) size 12x18 - text run at (0,779) width 12: "IIII" - RenderBR {BR} at (12,794) size 0x0 - RenderText {#text} at (0,798) size 32x18 - text run at (0,798) width 32: "JJJJ" - RenderBR {BR} at (32,813) size 0x0 - RenderText {#text} at (0,817) size 44x18 - text run at (0,817) width 44: "KKKK" - RenderBR {BR} at (44,832) size 0x0 - RenderText {#text} at (0,836) size 36x18 - text run at (0,836) width 36: "LLLL" - RenderBR {BR} at (36,851) size 0x0 - RenderText {#text} at (0,855) size 52x18 - text run at (0,855) width 52: "MMMM" - RenderBR {BR} at (52,870) size 0x0 - RenderText {#text} at (0,874) size 44x18 - text run at (0,874) width 44: "NNNN" - RenderBR {BR} at (44,889) size 0x0 - RenderText {#text} at (0,893) size 48x18 - text run at (0,893) width 48: "OOOO" - RenderBR {BR} at (48,908) size 0x0 - RenderText {#text} at (0,912) size 44x18 - text run at (0,912) width 44: "PPPP" - RenderBR {BR} at (44,927) size 0x0 - RenderText {#text} at (0,931) size 48x18 - text run at (0,931) width 48: "QQQQ" - RenderBR {BR} at (48,946) size 0x0 - RenderText {#text} at (0,950) size 44x18 - text run at (0,950) width 44: "RRRR" - RenderBR {BR} at (44,965) size 0x0 - RenderText {#text} at (0,969) size 44x18 - text run at (0,969) width 44: "SSSS" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,988) size 36x18 - text run at (0,988) width 36: "TTTT" - RenderBR {BR} at (36,1003) size 0x0 - RenderText {#text} at (0,1007) size 44x18 - text run at (0,1007) width 44: "UUUU" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "VVVV" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1045) size 60x18 - text run at (0,1045) width 60: "WWWW" - RenderBR {BR} at (60,1060) size 0x0 - RenderText {#text} at (0,1064) size 44x18 - text run at (0,1064) width 44: "XXXX" - RenderBR {BR} at (44,1079) size 0x0 - RenderText {#text} at (0,1083) size 36x18 - text run at (0,1083) width 36: "YYYY" - RenderBR {BR} at (36,1098) size 0x0 - RenderText {#text} at (0,1102) size 36x18 - text run at (0,1102) width 36: "ZZZZ" - RenderBR {BR} at (36,1117) size 0x0 - RenderText {#text} at (0,1121) size 16x18 - text run at (0,1121) width 16: "[[[[" - RenderBR {BR} at (16,1136) size 0x0 - RenderText {#text} at (0,1140) size 16x18 - text run at (0,1140) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1155) size 0x0 - RenderText {#text} at (0,1159) size 16x18 - text run at (0,1159) width 16: "]]]]" - RenderBR {BR} at (16,1174) size 0x0 - RenderText {#text} at (0,1178) size 28x18 - text run at (0,1178) width 28: "^^^^" - RenderBR {BR} at (28,1193) size 0x0 - RenderText {#text} at (0,1197) size 36x18 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1212) size 0x0 - RenderText {#text} at (0,1216) size 20x18 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1231) size 0x0 - RenderText {#text} at (0,1235) size 36x18 - text run at (0,1235) width 36: "aaaa" - RenderBR {BR} at (36,1250) size 0x0 - RenderText {#text} at (0,1254) size 36x18 - text run at (0,1254) width 36: "bbbb" - RenderBR {BR} at (36,1269) size 0x0 - RenderText {#text} at (0,1273) size 32x18 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1288) size 0x0 - RenderText {#text} at (0,1292) size 36x18 - text run at (0,1292) width 36: "dddd" - RenderBR {BR} at (36,1307) size 0x0 - RenderText {#text} at (0,1311) size 36x18 - text run at (0,1311) width 36: "eeee" - RenderBR {BR} at (36,1326) size 0x0 - RenderText {#text} at (0,1330) size 16x18 - text run at (0,1330) width 16: "ffff" - RenderBR {BR} at (16,1345) size 0x0 - RenderText {#text} at (0,1349) size 36x18 - text run at (0,1349) width 36: "gggg" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 32x18 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1383) size 0x0 - RenderText {#text} at (0,1387) size 16x18 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1402) size 0x0 - RenderText {#text} at (0,1406) size 12x18 - text run at (0,1406) width 12: "jjjj" - RenderBR {BR} at (12,1421) size 0x0 - RenderText {#text} at (0,1425) size 32x18 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1440) size 0x0 - RenderText {#text} at (0,1444) size 12x18 - text run at (0,1444) width 12: "llll" - RenderBR {BR} at (12,1459) size 0x0 - RenderText {#text} at (0,1463) size 52x18 - text run at (0,1463) width 52: "mmmm" - RenderBR {BR} at (52,1478) size 0x0 - RenderText {#text} at (0,1482) size 32x18 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1497) size 0x0 - RenderText {#text} at (0,1501) size 36x18 - text run at (0,1501) width 36: "oooo" - RenderBR {BR} at (36,1516) size 0x0 - RenderText {#text} at (0,1520) size 36x18 - text run at (0,1520) width 36: "pppp" - RenderBR {BR} at (36,1535) size 0x0 - RenderText {#text} at (0,1539) size 36x18 - text run at (0,1539) width 36: "qqqq" - RenderBR {BR} at (36,1554) size 0x0 - RenderText {#text} at (0,1558) size 20x18 - text run at (0,1558) width 20: "rrrr" - RenderBR {BR} at (20,1573) size 0x0 - RenderText {#text} at (0,1577) size 32x18 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1592) size 0x0 - RenderText {#text} at (0,1596) size 16x18 - text run at (0,1596) width 16: "tttt" - RenderBR {BR} at (16,1611) size 0x0 - RenderText {#text} at (0,1615) size 32x18 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1630) size 0x0 - RenderText {#text} at (0,1634) size 28x18 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1649) size 0x0 - RenderText {#text} at (0,1653) size 44x18 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1668) size 0x0 - RenderText {#text} at (0,1672) size 28x18 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1687) size 0x0 - RenderText {#text} at (0,1691) size 28x18 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1706) size 0x0 - RenderText {#text} at (0,1710) size 28x18 - text run at (0,1710) width 28: "zzzz" - RenderBR {BR} at (28,1725) size 0x0 - RenderText {#text} at (0,1729) size 20x18 - text run at (0,1729) width 20: "{{{{" - RenderBR {BR} at (20,1744) size 0x0 - RenderText {#text} at (0,1748) size 12x18 - text run at (0,1748) width 12: "||||" - RenderBR {BR} at (12,1763) size 0x0 - RenderText {#text} at (0,1767) size 20x18 - text run at (0,1767) width 20: "}}}}" - RenderBR {BR} at (20,1782) size 0x0 - RenderBlock (anonymous) at (0,1802) size 769x1880 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,75) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,335) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,355) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,375) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,435) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,455) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,475) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,495) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,515) size 0x0 - RenderText {#text} at (0,520) size 24x19 - text run at (0,520) width 24: "::::" - RenderBR {BR} at (24,535) size 0x0 - RenderText {#text} at (0,540) size 24x19 - text run at (0,540) width 24: ";;;;" - RenderBR {BR} at (24,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 40x19 - text run at (0,620) width 40: "????" - RenderBR {BR} at (40,635) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 48x19 - text run at (0,680) width 48: "BBBB" - RenderBR {BR} at (48,695) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,835) size 0x0 - RenderText {#text} at (0,840) size 36x19 - text run at (0,840) width 36: "JJJJ" - RenderBR {BR} at (36,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1315) size 0x0 - RenderText {#text} at (0,1320) size 40x19 - text run at (0,1320) width 40: "bbbb" - RenderBR {BR} at (40,1335) size 0x0 - RenderText {#text} at (0,1340) size 36x19 - text run at (0,1340) width 36: "cccc" - RenderBR {BR} at (36,1355) size 0x0 - RenderText {#text} at (0,1360) size 40x19 - text run at (0,1360) width 40: "dddd" - RenderBR {BR} at (40,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 40x19 - text run at (0,1420) width 40: "gggg" - RenderBR {BR} at (40,1435) size 0x0 - RenderText {#text} at (0,1440) size 40x19 - text run at (0,1440) width 40: "hhhh" - RenderBR {BR} at (40,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1555) size 0x0 - RenderText {#text} at (0,1560) size 40x19 - text run at (0,1560) width 40: "nnnn" - RenderBR {BR} at (40,1575) size 0x0 - RenderText {#text} at (0,1580) size 40x19 - text run at (0,1580) width 40: "oooo" - RenderBR {BR} at (40,1595) size 0x0 - RenderText {#text} at (0,1600) size 40x19 - text run at (0,1600) width 40: "pppp" - RenderBR {BR} at (40,1615) size 0x0 - RenderText {#text} at (0,1620) size 40x19 - text run at (0,1620) width 40: "qqqq" - RenderBR {BR} at (40,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 36x19 - text run at (0,1660) width 36: "ssss" - RenderBR {BR} at (36,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 40x19 - text run at (0,1700) width 40: "uuuu" - RenderBR {BR} at (40,1715) size 0x0 - RenderText {#text} at (0,1720) size 36x19 - text run at (0,1720) width 36: "vvvv" - RenderBR {BR} at (36,1735) size 0x0 - RenderText {#text} at (0,1740) size 52x19 - text run at (0,1740) width 52: "wwww" - RenderBR {BR} at (52,1755) size 0x0 - RenderText {#text} at (0,1760) size 36x19 - text run at (0,1760) width 36: "xxxx" - RenderBR {BR} at (36,1775) size 0x0 - RenderText {#text} at (0,1780) size 36x19 - text run at (0,1780) width 36: "yyyy" - RenderBR {BR} at (36,1795) size 0x0 - RenderText {#text} at (0,1800) size 36x19 - text run at (0,1800) width 36: "zzzz" - RenderBR {BR} at (36,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,3698) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,3698) size 769x1880 - RenderInline {FONT} at (0,0) size 64x1878 - RenderText {#text} at (0,0) size 0x0 - RenderInline {I} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,16) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,36) size 0x0 - RenderText {#text} at (0,40) size 24x19 - text run at (0,40) width 24: "\"\"\"\"" - RenderBR {BR} at (24,56) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,76) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,96) size 0x0 - RenderText {#text} at (0,100) size 56x19 - text run at (0,100) width 56: "%%%%" - RenderBR {BR} at (56,116) size 0x0 - RenderText {#text} at (0,120) size 44x19 - text run at (0,120) width 44: "&&&&" - RenderBR {BR} at (44,136) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,156) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,196) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,216) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,236) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,256) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,276) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,296) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,316) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,336) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,396) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,416) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,436) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,456) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,476) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,496) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,516) size 0x0 - RenderText {#text} at (0,520) size 16x19 - text run at (0,520) width 16: "::::" - RenderBR {BR} at (16,536) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,556) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,576) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,596) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,616) size 0x0 - RenderText {#text} at (0,620) size 36x19 - text run at (0,620) width 36: "????" - RenderBR {BR} at (36,636) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,656) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,676) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,696) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,736) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,756) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,776) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,796) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,816) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,836) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,856) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,876) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,896) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,916) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,936) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,956) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,976) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,996) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1016) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1036) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1056) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1076) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1096) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1116) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1136) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1156) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1176) size 0x0 - RenderText {#text} at (0,1180) size 16x19 - text run at (0,1180) width 16: "[[[[" - RenderBR {BR} at (16,1196) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1216) size 0x0 - RenderText {#text} at (0,1220) size 16x19 - text run at (0,1220) width 16: "]]]]" - RenderBR {BR} at (16,1236) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1256) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1276) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1296) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1316) size 0x0 - RenderText {#text} at (0,1320) size 36x19 - text run at (0,1320) width 36: "bbbb" - RenderBR {BR} at (36,1336) size 0x0 - RenderText {#text} at (0,1340) size 32x19 - text run at (0,1340) width 32: "cccc" - RenderBR {BR} at (32,1356) size 0x0 - RenderText {#text} at (0,1360) size 36x19 - text run at (0,1360) width 36: "dddd" - RenderBR {BR} at (36,1376) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1396) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1416) size 0x0 - RenderText {#text} at (0,1420) size 36x19 - text run at (0,1420) width 36: "gggg" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1456) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1476) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1496) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1516) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1536) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1556) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1576) size 0x0 - RenderText {#text} at (0,1580) size 36x19 - text run at (0,1580) width 36: "oooo" - RenderBR {BR} at (36,1596) size 0x0 - RenderText {#text} at (0,1600) size 36x19 - text run at (0,1600) width 36: "pppp" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 36x19 - text run at (0,1620) width 36: "qqqq" - RenderBR {BR} at (36,1636) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1656) size 0x0 - RenderText {#text} at (0,1660) size 32x19 - text run at (0,1660) width 32: "ssss" - RenderBR {BR} at (32,1676) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1696) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1716) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1736) size 0x0 - RenderText {#text} at (0,1740) size 36x19 - text run at (0,1740) width 36: "wwww" - RenderBR {BR} at (36,1756) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1776) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1796) size 0x0 - RenderText {#text} at (0,1800) size 28x19 - text run at (0,1800) width 28: "zzzz" - RenderBR {BR} at (28,1816) size 0x0 - RenderText {#text} at (0,1820) size 20x19 - text run at (0,1820) width 20: "{{{{" - RenderBR {BR} at (20,1836) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1856) size 0x0 - RenderText {#text} at (0,1860) size 20x19 - text run at (0,1860) width 20: "}}}}" - RenderBR {BR} at (20,1876) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/times-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/times-expected.txt deleted file mode 100644 index 2027128..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/fonts/times-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7592 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7592 - RenderBlock {HTML} at (0,0) size 785x7592 - RenderBody {BODY} at (8,8) size 769x7568 - RenderBlock (anonymous) at (0,0) size 769x1880 - RenderInline {FONT} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 20x19 - text run at (0,40) width 20: "\"\"\"\"" - RenderBR {BR} at (20,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 24x19 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 12x19 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,535) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 28x19 - text run at (0,620) width 28: "????" - RenderBR {BR} at (28,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 40x19 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 36x19 - text run at (0,740) width 36: "EEEE" - RenderBR {BR} at (36,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 44x19 - text run at (0,780) width 44: "GGGG" - RenderBR {BR} at (44,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 24x19 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 40x19 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 28x19 - text run at (0,1300) width 28: "aaaa" - RenderBR {BR} at (28,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1415) size 0x0 - RenderText {#text} at (0,1420) size 28x19 - text run at (0,1420) width 28: "gggg" - RenderBR {BR} at (28,1435) size 0x0 - RenderText {#text} at (0,1440) size 28x19 - text run at (0,1440) width 28: "hhhh" - RenderBR {BR} at (28,1455) size 0x0 - RenderText {#text} at (0,1460) size 12x19 - text run at (0,1460) width 12: "iiii" - RenderBR {BR} at (12,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 12x19 - text run at (0,1520) width 12: "llll" - RenderBR {BR} at (12,1535) size 0x0 - RenderText {#text} at (0,1540) size 44x19 - text run at (0,1540) width 44: "mmmm" - RenderBR {BR} at (44,1555) size 0x0 - RenderText {#text} at (0,1560) size 28x19 - text run at (0,1560) width 28: "nnnn" - RenderBR {BR} at (28,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1695) size 0x0 - RenderText {#text} at (0,1700) size 28x19 - text run at (0,1700) width 28: "uuuu" - RenderBR {BR} at (28,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 28x19 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 28x19 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 32x19 - text run at (0,1860) width 32: "}}}}" - RenderBR {BR} at (32,1875) size 0x0 - RenderBlock (anonymous) at (0,1896) size 769x3776 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 52x19 - text run at (0,120) width 52: "&&&&" - RenderBR {BR} at (52,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 64x19 - text run at (0,900) width 64: "MMMM" - RenderBR {BR} at (64,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 32x19 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 28x19 - text run at (0,1660) width 28: "ssss" - RenderBR {BR} at (28,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 40x19 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {I} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 44x19 - text run at (0,220) width 44: "++++" - RenderBR {BR} at (44,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 44x19 - text run at (0,560) width 44: "<<<<" - RenderBR {BR} at (44,575) size 0x0 - RenderText {#text} at (0,580) size 44x19 - text run at (0,580) width 44: "====" - RenderBR {BR} at (44,595) size 0x0 - RenderText {#text} at (0,600) size 44x19 - text run at (0,600) width 44: ">>>>" - RenderBR {BR} at (44,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 40x19 - text run at (0,660) width 40: "AAAA" - RenderBR {BR} at (40,675) size 0x0 - RenderText {#text} at (0,680) size 36x19 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 28x19 - text run at (0,840) width 28: "JJJJ" - RenderBR {BR} at (28,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 44x19 - text run at (0,920) width 44: "NNNN" - RenderBR {BR} at (44,935) size 0x0 - RenderText {#text} at (0,940) size 44x19 - text run at (0,940) width 44: "OOOO" - RenderBR {BR} at (44,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 44x19 - text run at (0,980) width 44: "QQQQ" - RenderBR {BR} at (44,995) size 0x0 - RenderText {#text} at (0,1000) size 36x19 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1015) size 0x0 - RenderText {#text} at (0,1020) size 32x19 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 40x19 - text run at (0,1080) width 40: "VVVV" - RenderBR {BR} at (40,1095) size 0x0 - RenderText {#text} at (0,1100) size 52x19 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1115) size 0x0 - RenderText {#text} at (0,1120) size 40x19 - text run at (0,1120) width 40: "XXXX" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 32x19 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 28x19 - text run at (0,1180) width 28: "[[[[" - RenderBR {BR} at (28,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 28x19 - text run at (0,1220) width 28: "]]]]" - RenderBR {BR} at (28,1235) size 0x0 - RenderText {#text} at (0,1240) size 28x19 - text run at (0,1240) width 28: "^^^^" - RenderBR {BR} at (28,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 20x19 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5688) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5688) size 769x1880 - RenderInline {FONT} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 56x1879 - RenderInline {I} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 52x19 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 44x19 - text run at (0,760) width 44: "FFFF" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 44x19 - text run at (0,1000) width 44: "RRRR" - RenderBR {BR} at (44,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 56x19 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1455) size 0x0 - RenderText {#text} at (0,1460) size 20x19 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 20x19 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-win/chrome/plugins/return-npobject-expected.txt b/webkit/data/layout_tests/platform/chromium-win/chrome/plugins/return-npobject-expected.txt deleted file mode 100644 index 2fcd943..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/chrome/plugins/return-npobject-expected.txt +++ /dev/null @@ -1,16 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderBlock (anonymous) at (0,0) size 784x20 - RenderText {#text} at (0,0) size 506x19 - text run at (0,0) width 506: "Test that we can get an NPObject returned through a method on an NPAPI Object." - RenderBlock {P} at (0,36) size 784x155 - RenderText {#text} at (0,135) size 335x19 - text run at (0,135) width 335: "Prints \"SUCCESS\" on success, \"FAILURE\" on failure. " - RenderPartObject {EMBED} at (335,0) size 300x150 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {DIV} at (0,207) size 784x20 - RenderText {#text} at (0,0) size 69x19 - text run at (0,0) width 69: "SUCCESS" diff --git a/webkit/data/layout_tests/platform/chromium-win/pending/fast/events/autoscroll-expected.txt b/webkit/data/layout_tests/platform/chromium-win/pending/fast/events/autoscroll-expected.txt deleted file mode 100644 index a4058ef..0000000 --- a/webkit/data/layout_tests/platform/chromium-win/pending/fast/events/autoscroll-expected.txt +++ /dev/null @@ -1,31 +0,0 @@ -layer at (0,0) size 785x3172 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x3172 - RenderBlock {HTML} at (0,0) size 785x3172 - RenderBody {BODY} at (8,8) size 769x3148 - RenderBlock {P} at (0,0) size 769x20 - RenderText {#text} at (0,0) size 51x19 - text run at (0,0) width 51: "Test for " - RenderInline {A} at (0,0) size 66x19 [color=#0000EE] - RenderText {#text} at (51,0) size 66x19 - text run at (51,0) width 66: "bug 12331" - RenderText {#text} at (117,0) size 4x19 - text run at (117,0) width 4: "." - RenderBlock {P} at (0,36) size 769x40 - RenderText {#text} at (0,0) size 765x39 - text run at (0,0) width 765: "To test manually, scroll down until you find the input element. Select some text. If the bug occurs, the page will scroll back up to" - text run at (0,20) width 46: "the top." - RenderBlock {DIV} at (0,92) size 769x3000 - RenderBlock (anonymous) at (0,3092) size 769x20 - RenderTextControl {INPUT} at (0,0) size 110x20 [bgcolor=#FFFFFF] [border: (2px inset #000000)] - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,3128) size 769x20 - RenderText {#text} at (0,0) size 387x19 - text run at (0,0) width 387: "If the bug does not occur, you'll be left down here at the bottom." -layer at (10,3103) size 106x14 scrollWidth 110 - RenderBlock {DIV} at (2,3) size 106x14 - RenderText {#text} at (1,0) size 108x14 - text run at (1,0) width 108: "select some of this text" -selection start: position 2 of child 0 {#text} of child 0 {DIV} of child 7 {INPUT} of child 1 {BODY} of child 0 {HTML} of document -selection end: position 20 of child 0 {#text} of child 0 {DIV} of child 7 {INPUT} of child 1 {BODY} of child 0 {HTML} of document -scrolled to 0,2572 diff --git a/webkit/tools/layout_tests/layout_package/path_utils.py b/webkit/tools/layout_tests/layout_package/path_utils.py index 42aae30..104ee96 100644 --- a/webkit/tools/layout_tests/layout_package/path_utils.py +++ b/webkit/tools/layout_tests/layout_package/path_utils.py @@ -32,14 +32,8 @@ class PathNotFound(Exception): pass def LayoutTestsDir(path=None): """Returns the fully-qualified path to the directory containing the input - data for the specified layout test. - - We have not fully upstreamed all of our layout tests, so we need to - potentially return two different places.""" - if path and path.find('LayoutTests') == -1: - return PathFromBase('webkit', 'data', 'layout_tests') - else: - return PathFromBase('third_party', 'WebKit'); + data for the specified layout test.""" + return PathFromBase('third_party', 'WebKit'); def ChromiumBaselinePath(platform=None): """Returns the full path to the directory containing expected @@ -197,9 +191,6 @@ def FilenameToUri(full_path): # Note: the root is LayoutTests/, not LayoutTests/websocket/tests/ relative_path = relative_path[len(LAYOUTTESTS_DIR):] port = 8880 - elif relative_path.find("/http/") >= 0: - # chrome/http/tests run off of port 8081 with the full path - port = 8081 # Make LayoutTests/http/tests/local run as local files. This is to mimic the # logic in run-webkit-tests. diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index aaa9e1a..b94a16f 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -158,8 +158,8 @@ class TestRunner: else: self._http_server = http_server.Lighttpd(options.results_directory) - self._shardable_directories = ['chrome', 'LayoutTests', 'fast', - 'svg', 'loader', 'editing'] + self._shardable_directories = ['LayoutTests', 'fast', 'svg', 'loader', + 'editing'] # The http tests are very stable on mac/linux. # TODO(ojan): Make the http server on Windows be apache so we can turn @@ -373,8 +373,6 @@ class TestRunner: # provide better parallelization. We should at least be able to do so # for some directories (e.g. LayoutTests/dom). index = test_file.rfind(os.sep + 'LayoutTests' + os.sep) - if index is -1: - index = test_file.rfind(os.sep + 'chrome' + os.sep) test_file = test_file[index + 1:] test_file_parts = test_file.split(os.sep, 1) @@ -1385,11 +1383,9 @@ def main(options, args): if options.clobber_old_results: # Just clobber the actual test results directories since the other files # in the results directory are explicitly used for cross-run tracking. - test_dirs = ("LayoutTests", "chrome") - for directory in test_dirs: - path = os.path.join(options.results_directory, directory) - if os.path.exists(path): - shutil.rmtree(path) + path = os.path.join(options.results_directory, 'LayoutTests') + if os.path.exists(path): + shutil.rmtree(path) # Ensure platform is valid and force it to the form 'chromium-<platform>'. options.platform = path_utils.PlatformName(options.platform) diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt index f9b465c..75f5633 100644 --- a/webkit/tools/layout_tests/test_expectations.txt +++ b/webkit/tools/layout_tests/test_expectations.txt @@ -1286,9 +1286,6 @@ BUG10349 LINUX : LayoutTests/fast/forms/select-style.html = FAIL // overlap, but it's very close and quite different from the Windows version BUG10350 LINUX : LayoutTests/fast/replaced/width100percent-radio.html = FAIL -// Linux pixel tests: the select arrow is clipping wrong on one line. -BUG10666 LINUX : chrome/fast/forms/basic-selects.html = FAIL - // These tests are marked as failing on Linux because they depend on QuickTime. // See the bug for more discussion. BUG15797 LINUX : LayoutTests/fast/dom/object-embed-plugin-scripting.html = FAIL @@ -1303,8 +1300,6 @@ BUG10351 MAC : LayoutTests/plugins/inner-html-display-none.html = FAIL BUG10351 MAC DEBUG : LayoutTests/plugins/invoke.html = PASS FAIL BUG10351 MAC : LayoutTests/plugins/mouse-events.html = FAIL BUG10351 MAC DEBUG : LayoutTests/http/tests/plugins/npapi-response-headers.html = PASS FAIL -// Skip because we throw an exception before we get to dumpAsText. -BUG10667 SKIP MAC : chrome/plugins/get-url-with-blank-target.html = FAIL BUG10667 MAC : LayoutTests/plugins/iframe-shims.html = FAIL // BUG10667 SLOW MAC RELEASE : LayoutTests/plugins/iframe-shims.html = FAIL @@ -1377,7 +1372,6 @@ BUG8729 SLOW WIN RELEASE : LayoutTests/http/tests/multipart/invalid-image-data.h // text fields wrong width BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL BUG10363 MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL -BUG10670 MAC : chrome/fast/forms/basic-selects.html = FAIL // we're waiting on upstreaming a change to how textarea padding works. rather // than rebasing, we'll wait for the upstream (which ojan said should happen @@ -2204,9 +2198,6 @@ BUG10441 MAC WIN RELEASE : LayoutTests/transitions/transition-end-event-transfor // merge). BUG10446 LINUX : LayoutTests/editing/execCommand/selectAll.html = FAIL -// Regressions from merge 41559:41588, probably just needs rebaselining. -BUG10675 MAC : chrome/fast/forms/basic-textareas-quirks.html = FAIL - // Newly added test from 41613:41660 -- relies on ScriptCallStack::state() -- dglazkov should fix. BUG9156 MAC LINUX WIN : LayoutTests/fast/js/console-non-string-values.html = FAIL @@ -2299,9 +2290,6 @@ BUG9786 : LayoutTests/http/tests/security/cross-frame-access-document-direct.htm BUG10479 MAC : LayoutTests/svg/hixie/perf/001.xml = FAIL BUG10479 MAC : LayoutTests/svg/hixie/perf/002.xml = FAIL -BUG9798 LINUX DEBUG : chrome/fast/dom/extensions/interval.html = FAIL PASS -BUG9798 MAC DEBUG : chrome/fast/dom/extensions/interval.html = FAIL -BUG9798 WIN : chrome/fast/dom/extensions/interval.html = FAIL PASS BUG9798 LINUX WIN : LayoutTests/editing/pasteboard/subframe-dragndrop-1.html = FAIL BUG9798 SLOW WIN DEBUG : LayoutTests/fast/dom/Window/slow_unload_handler.html = PASS BUG9798 LINUX DEBUG SLOW : LayoutTests/fast/frames/calculate-round.html = CRASH PASS @@ -2890,7 +2878,6 @@ BUG_SENORBLANCO WIN LINUX : LayoutTests/fast/canvas/set-colors.html = TEXT // Failures from WebKit merge 51711:51724 BUG_AJWONG : LayoutTests/fast/js/string-property-deletion.html = TEXT BUG_AJWONG : LayoutTests/svg/carto.net/selectionlist.svg = IMAGE PASS -BUG_AJWONG WIN : chrome/fast/forms/basic-selects.html = IMAGE BUG_AJWONG WIN :LayoutTests/fast/body-propagation/overflow/004-xhtml.xhtml = IMAGE+TEXT PASS BUG29943 WIN : LayoutTests/websocket/tests/send.html = TEXT PASS |