diff options
author | pinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 17:20:53 +0000 |
---|---|---|
committer | pinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-18 17:20:53 +0000 |
commit | 55c72de49c7b87d77ea440ca7bd7609355370e7a (patch) | |
tree | 013e055e9b075ee549a73f787d7068784e43b368 /webkit | |
parent | 8ea0f4dec5e5b2466bd7538af5c3908ebaa7a28c (diff) | |
download | chromium_src-55c72de49c7b87d77ea440ca7bd7609355370e7a.zip chromium_src-55c72de49c7b87d77ea440ca7bd7609355370e7a.tar.gz chromium_src-55c72de49c7b87d77ea440ca7bd7609355370e7a.tar.bz2 |
bucketing mac tests, rebasing.
Review URL: http://codereview.chromium.org/14842
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7219 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
49 files changed, 9496 insertions, 134 deletions
diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/dom/Window/window-open-pending-url-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/dom/Window/window-open-pending-url-expected.txt new file mode 100644 index 0000000..f9bd3ab --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/fast/dom/Window/window-open-pending-url-expected.txt @@ -0,0 +1,10 @@ +location: about:blank +href: about:blank +pathname: blank +host: +hostname: +hash: +port: +protocol: about: +search: + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-expected.txt new file mode 100644 index 0000000..b47269b --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-expected.txt @@ -0,0 +1,12 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL data:text/html,<html><script>onload = function() { parent.postMessage('LOADED', '*'); } </script><body><p id='accessMe'></p><p>Inner iframe.</p></body></html> from frame with URL http://127.0.0.1:8000/security/dataURL/xss-DENIED-to-data-url-sub-frame.html. Domains, protocols and ports must match. + +This tests that the main frame can't access the contents of an iframe that contains a data: URL loaded page + + +PASS: Cross frame access to a data: URL was denied. + + +-------- +Frame: 'aFrame' +-------- +Inner iframe. diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase-expected.txt new file mode 100644 index 0000000..9253013 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase-expected.txt @@ -0,0 +1,12 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL data:text/html,<html><script>onload = function() { parent.postMessage('LOADED', '*'); } </script><body><p id='accessMe'></p><p>Inner iframe.</p></body></html> from frame with URL http://127.0.0.1:8000/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase.html. Domains, protocols and ports must match. + +This tests that the main frame can't access the contents of an iframe that contains a data: URL loaded page using the uppercased variant DATA: + + +PASS: Cross frame access to a DATA: URL was denied. + + +-------- +Frame: 'aFrame' +-------- +Inner iframe. diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/README b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/README new file mode 100644 index 0000000..7fe4163 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/README @@ -0,0 +1,11 @@ +Re-baseline tests only having different error messages: + +xss-JSTargetNode-onclick-addEventListener-expected.txt +xss-JSTargetNode-onclick-shortcut-expected.txt +xss-XMLHttpRequest-addEventListener-expected.txt +xss-XMLHttpRequest-shortcut-expected.txt +xss-window-onclick-addEventListener-expected.txt +xss-window-onclick-shortcut-expected.txt +------------------------------------------------------ +The error message reported by V8 is different from KJS: +CONSOLE MESSAGE: line 0: Uncaught TypeError: Cannot read property 'document' of undefined diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener-expected.txt new file mode 100644 index 0000000..f449e44 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWithButton.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on an EventTarget using addEventListener is the target nodes frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-shortcut-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-shortcut-expected.txt new file mode 100644 index 0000000..3a16e47 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-shortcut-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWithButton.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on an EventTarget with the shortcut (onclick, etc), is the target nodes frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-addEventListener-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-addEventListener-expected.txt new file mode 100644 index 0000000..1fe6f93 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-addEventListener-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWithXMLHttpRequest.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on an XMLHttpRequest using addEventListener, is the requests frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-shortcut-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-shortcut-expected.txt new file mode 100644 index 0000000..325d3b9 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-shortcut-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWithXMLHttpRequest.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on an XMLHttpRequest with the shortcut (onreadystatechange), is the requests frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-addEventListener-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-addEventListener-expected.txt new file mode 100644 index 0000000..02f33f2 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-addEventListener-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWindow.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on the window using addEventListener is the window's frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-shortcut-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-shortcut-expected.txt new file mode 100644 index 0000000..ff90842 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/listener/xss-window-onclick-shortcut-expected.txt @@ -0,0 +1,5 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/cross-frame-iframe.html from frame with URL http://127.0.0.1:8000/security/listener/resources/childWindow.html. Domains, protocols and ports must match. + +This tests that frame used when setting eventListeners on the window with the shortcut (onclick, etc), is the window's frame. (rdar://problem/5426142). This test passes if you don't see an alert dialog with the domain of "localhost" in it and an "Unsafe JavaScript" warning is logged to the console. + + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/xss-eval-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/xss-eval-expected.txt new file mode 100644 index 0000000..bc4157c --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/http/tests/security/xss-eval-expected.txt @@ -0,0 +1,13 @@ +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/xss-eval3.html from frame with URL http://127.0.0.1:8000/security/xss-eval.html. Domains, protocols and ports must match. + +CONSOLE MESSAGE: line 1: Unsafe JavaScript attempt to access frame with URL http://localhost:8000/security/resources/xss-eval3.html from frame with URL http://127.0.0.1:8000/security/xss-eval.html. Domains, protocols and ports must match. + +This page verifies that you can't use eval to subvert cross-domain checks. + +If the test passes, you'll see a pass message below. + +PASS: eval.call(frames[0], 'document') should be EvalError and is. +PASS: childEval.call(frames[0], 'document') should be EvalError and is. +PASS: childEvalCaller('document') should be TypeError and is. +FAIL: childLocalEvalCaller('document') should be EvalError but instead is undefined. + diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/SVGException-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/SVGException-expected.txt new file mode 100644 index 0000000..44dd7cd --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/SVGException-expected.txt @@ -0,0 +1,19 @@ +Tests the properties of the SVGException object. + +On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". + + +PASS e.toString() is "Error: SVG_INVALID_VALUE_ERR: DOM SVG Exception 1" +PASS Object.prototype.toString.call(e) is "[object SVGException]" +FAIL Object.prototype.toString.call(e.__proto__) should be [object SVGExceptionPrototype]. Was [object Object]. +FAIL e.constructor.toString() should be [object SVGExceptionConstructor]. Was function SVGException() { [native code] }. +PASS e.constructor is window.SVGException +PASS e.SVG_WRONG_TYPE_ERR is e.constructor.SVG_WRONG_TYPE_ERR +PASS e.SVG_WRONG_TYPE_ERR is 0 +PASS e.SVG_INVALID_VALUE_ERR is e.constructor.SVG_INVALID_VALUE_ERR +PASS e.SVG_INVALID_VALUE_ERR is 1 +PASS e.SVG_MATRIX_NOT_INVERTABLE is e.constructor.SVG_MATRIX_NOT_INVERTABLE +PASS e.SVG_MATRIX_NOT_INVERTABLE is 2 +PASS successfullyParsed is true + +TEST COMPLETE diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/createelement-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/createelement-expected.txt new file mode 100644 index 0000000..8f9a508 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/createelement-expected.txt @@ -0,0 +1,7 @@ +CONSOLE MESSAGE: line 13: Uncaught TypeError: Cannot call method 'setAttribute' of null +layer at (0,0) size 800x600 + RenderView at (0,0) size 800x600 +layer at (0,0) size 800x600 + RenderSVGRoot {svg} at (0,0) size 100x100 + RenderPath {rect} at (0,0) size 100x100 [fill={[type=SOLID] [color=#008000]}] [data="M0.00,0.00 L100.00,0.00 L100.00,100.00 L0.00,100.00 Z"] + RenderSVGText {text} diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/junk-data-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/junk-data-expected.txt new file mode 100644 index 0000000..0cb51ea --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/junk-data-expected.txt @@ -0,0 +1,22 @@ +layer at (0,0) size 785x778 + RenderView at (0,0) size 785x600 +layer at (0,0) size 785x778 + RenderBlock {html} at (0,0) size 785x778 + RenderBody {body} at (8,16) size 769x754 + RenderBlock {parsererror} at (16,0) size 737x134 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)] + RenderBlock {h3} at (18,20) size 701x22 + RenderText {#text} at (0,0) size 324x22 + text run at (0,0) width 324: "This page contains the following errors:" + RenderBlock {div} at (18,60) size 701x14 + RenderText {#text} at (0,0) size 413x14 + text run at (0,0) width 413: "error on line 6 at column 2: StartTag: invalid element name" + text run at (413,0) width 0: " " + RenderBlock {h3} at (18,92) size 701x22 + RenderText {#text} at (0,0) size 429x22 + text run at (0,0) width 429: "Below is a rendering of the page up to the first error." + RenderBlock (anonymous) at (0,150) size 769x604 + RenderSVGRoot {svg} at (8,166) size 193x124 + RenderSVGText {text} at (0,120) size 193x18 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-14) size 193x18 + chunk 1 text run 1 at (0.00,120.00) startOffset 0 endOffset 29 width 193.00: "You should see an error above" + RenderPath {rect} at (8,166) size 100x100 [fill={[type=SOLID] [color=#000000]}] [data="M0.00,0.00 L100.00,0.00 L100.00,100.00 L0.00,100.00 Z"] diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/missing-xlink-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/missing-xlink-expected.txt new file mode 100644 index 0000000..c059cd9 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/missing-xlink-expected.txt @@ -0,0 +1,24 @@ +layer at (0,0) size 785x778 + RenderView at (0,0) size 785x600 +layer at (0,0) size 785x778 + RenderBlock {html} at (0,0) size 785x778 + RenderBody {body} at (8,16) size 769x754 + RenderBlock {parsererror} at (16,0) size 737x134 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)] + RenderBlock {h3} at (18,20) size 701x22 + RenderText {#text} at (0,0) size 324x22 + text run at (0,0) width 324: "This page contains the following errors:" + RenderBlock {div} at (18,60) size 701x14 + RenderText {#text} at (0,0) size 567x14 + text run at (0,0) width 567: "error on line 6 at column 14: Namespace prefix xlink for href on a is not defined" + text run at (567,0) width 0: " " + RenderBlock {h3} at (18,92) size 701x22 + RenderText {#text} at (0,0) size 429x22 + text run at (0,0) width 429: "Below is a rendering of the page up to the first error." + RenderBlock (anonymous) at (0,150) size 769x604 + RenderSVGRoot {svg} at (8,166) size 193x124 + RenderSVGText {text} at (0,120) size 193x18 contains 1 chunk(s) + RenderSVGInlineText {#text} at (0,-14) size 193x18 + chunk 1 text run 1 at (0.00,120.00) startOffset 0 endOffset 29 width 193.00: "You should see an error above" + RenderPath {rect} at (8,166) size 100x100 [fill={[type=SOLID] [color=#000000]}] [data="M0.00,0.00 L100.00,0.00 L100.00,100.00 L0.00,100.00 Z"] + RenderSVGContainer {a} at (8,166) size 100x100 + RenderPath {rect} at (8,166) size 100x100 [fill={[type=SOLID] [color=#000000]}] [data="M0.00,0.00 L100.00,0.00 L100.00,100.00 L0.00,100.00 Z"] diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/path-bad-data-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/path-bad-data-expected.txt new file mode 100644 index 0000000..17172db --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/custom/path-bad-data-expected.txt @@ -0,0 +1,21 @@ +CONSOLE MESSAGE: line 9: Error: Problem parsing d="M 0 0 L 10 10 10" +layer at (0,0) size 785x933 + RenderView at (0,0) size 785x600 +layer at (0,0) size 785x933 + RenderBlock {html} at (0,0) size 785x933 + RenderBody {body} at (8,16) size 769x909 + RenderBlock {parsererror} at (16,0) size 737x134 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)] + RenderBlock {h3} at (18,20) size 701x22 + RenderText {#text} at (0,0) size 324x22 + text run at (0,0) width 324: "This page contains the following errors:" + RenderBlock {div} at (18,60) size 701x14 + RenderText {#text} at (0,0) size 469x14 + text run at (0,0) width 469: "error on line 10 at column 66: invalid character in attribute value" + text run at (469,0) width 0: " " + RenderBlock {h3} at (18,92) size 701x22 + RenderText {#text} at (0,0) size 429x22 + text run at (0,0) width 429: "Below is a rendering of the page up to the first error." + RenderBlock (anonymous) at (0,150) size 769x759 + RenderSVGRoot {svg} at (7.65,165.65) size 200.35x200.35 + RenderPath {path} at (8,166) size 200x200 [fill={[type=SOLID] [color=#008000]}] [data="M0.00,0.00 L200.00,0.00 L200.00,200.00 L0.00,200.00"] + RenderPath {path} at (7.65,165.65) size 10.71x10.71 [stroke={[type=SOLID] [color=#FF0000]}] [fill={[type=SOLID] [color=#FF0000]}] [data="M0.00,0.00 L10.00,10.00"] diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/hixie/error/012-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/hixie/error/012-expected.txt new file mode 100644 index 0000000..d2ab0f7 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/svg/hixie/error/012-expected.txt @@ -0,0 +1,20 @@ +layer at (0,0) size 785x778 + RenderView at (0,0) size 785x600 +layer at (0,0) size 785x778 + RenderBlock {html} at (0,0) size 785x778 + RenderBody {body} at (8,16) size 769x754 + RenderBlock {parsererror} at (16,0) size 737x134 [bgcolor=#FFDDDD] [border: (2px solid #CC7777)] + RenderBlock {h3} at (18,20) size 701x22 + RenderText {#text} at (0,0) size 324x22 + text run at (0,0) width 324: "This page contains the following errors:" + RenderBlock {div} at (18,60) size 701x14 + RenderText {#text} at (0,0) size 567x14 + text run at (0,0) width 567: "error on line 5 at column 7: Opening and ending tag mismatch: rect line 0 and svg" + text run at (567,0) width 0: " " + RenderBlock {h3} at (18,92) size 701x22 + RenderText {#text} at (0,0) size 429x22 + text run at (0,0) width 429: "Below is a rendering of the page up to the first error." + RenderBlock (anonymous) at (0,150) size 769x604 + RenderSVGRoot {svg} at (18,176) size 200x200 + RenderPath {rect} at (18,176) size 200x200 [fill={[type=SOLID] [color=#FF0000]}] [data="M10.00,10.00 L210.00,10.00 L210.00,210.00 L10.00,210.00 Z"] + RenderPath {rect} at (18,176) size 200x200 [fill={[type=SOLID] [color=#FF0000]}] [data="M10.00,10.00 L210.00,10.00 L210.00,210.00 L10.00,210.00 Z"] diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug3517-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug3517-expected.txt new file mode 100644 index 0000000..b1e5218 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug3517-expected.txt @@ -0,0 +1,8 @@ +CONSOLE MESSAGE: line 25: Uncaught ReferenceError: dump is not defined +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 + RenderTable {TABLE} at (0,0) size 1x1 [border: none] + RenderTableSection {TBODY} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt new file mode 100644 index 0000000..92e05d8 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt @@ -0,0 +1,18 @@ +CONSOLE MESSAGE: line 14: Uncaught TypeError: Cannot set property 'disabled' of undefined +layer at (0,0) size 800x600 + RenderView at (0,0) size 800x600 +layer at (0,0) size 800x76 + RenderBlock {HTML} at (0,0) size 800x76 + RenderBody {BODY} at (8,8) size 784x60 + RenderBlock (anonymous) at (0,0) size 784x18 + RenderText {#text} at (0,0) size 191x18 + text run at (0,0) width 191: "the text should be courier 24pt" + RenderTable {TABLE} at (0,18) size 80x24 + RenderTableSection {TBODY} at (0,0) size 80x24 + RenderTableRow {TR} at (0,2) size 80x20 + RenderTableCell {TD} at (2,2) size 76x20 [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (1,1) size 74x18 + text run at (1,1) width 74: "inside a cell" + RenderBlock {DIV} at (0,42) size 784x18 + RenderText {#text} at (0,0) size 72x18 + text run at (0,0) width 72: "inside a div" diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCells1-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCells1-expected.txt new file mode 100644 index 0000000..b7312c0 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCells1-expected.txt @@ -0,0 +1,62 @@ +CONSOLE MESSAGE: line 7: Uncaught ReferenceError: appendCellAt is not defined +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 784x18 + RenderText {#text} at (0,0) size 214x18 + text run at (0,0) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,18) size 62x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,46) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,64) size 88x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 86x26 + RenderTableRow {TR} at (0,2) size 86x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderTableCell {TD} at (60,2) size 24x22 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X1" + RenderBlock (anonymous) at (0,92) size 784x36 + RenderBR {BR} at (0,0) size 0x18 + RenderText {#text} at (0,18) size 214x18 + text run at (0,18) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,128) size 62x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,156) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,174) size 114x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 112x26 + RenderTableRow {TR} at (0,2) size 112x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderTableCell {TD} at (60,2) size 24x22 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X2" + RenderTableCell {TD} at (86,2) size 24x22 [border: (1px inset #808080)] [r=0 c=3 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X3" diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt new file mode 100644 index 0000000..63a5631 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt @@ -0,0 +1,78 @@ +CONSOLE MESSAGE: line 7: Uncaught ReferenceError: appendCellAt is not defined +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 784x18 + RenderText {#text} at (0,0) size 214x18 + text run at (0,0) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,18) size 62x52 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x50 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableRow {TR} at (0,26) size 60x22 + RenderTableCell {TD} at (2,26) size 27x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c21" + RenderTableCell {TD} at (31,26) size 27x22 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c22" + RenderBlock (anonymous) at (0,70) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,88) size 88x52 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 86x50 + RenderTableRow {TR} at (0,2) size 86x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,14) size 24x22 [border: (1px inset #808080)] [r=0 c=1 rs=2 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X1" + RenderTableRow {TR} at (0,26) size 86x22 + RenderTableCell {TD} at (2,26) size 27x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c21" + RenderTableCell {TD} at (57,26) size 27x22 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c22" + RenderBlock (anonymous) at (0,140) size 784x36 + RenderBR {BR} at (0,0) size 0x18 + RenderText {#text} at (0,18) size 214x18 + text run at (0,18) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,176) size 62x52 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x50 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableRow {TR} at (0,26) size 60x22 + RenderTableCell {TD} at (2,26) size 27x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c21" + RenderTableCell {TD} at (31,26) size 27x22 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c22" + RenderBlock (anonymous) at (0,228) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,246) size 114x52 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 112x50 + RenderTableRow {TR} at (0,2) size 112x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,14) size 24x22 [border: (1px inset #808080)] [r=0 c=1 rs=2 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X2" + RenderTableCell {TD} at (57,14) size 24x22 [border: (1px inset #808080)] [r=0 c=2 rs=2 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X3" + RenderTableRow {TR} at (0,26) size 112x22 + RenderTableCell {TD} at (2,26) size 27x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c21" + RenderTableCell {TD} at (83,26) size 27x22 [border: (1px inset #808080)] [r=1 c=3 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c22" diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt new file mode 100644 index 0000000..79289d7 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt @@ -0,0 +1,39 @@ +CONSOLE MESSAGE: line 10: Uncaught ReferenceError: appendCell is not defined +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 784x18 + RenderText {#text} at (0,0) size 214x18 + text run at (0,0) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,18) size 62x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,46) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,64) size 62x54 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X1" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X2" + RenderTableSection {TBODY} at (1,27) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,118) size 784x18 + RenderBR {BR} at (0,0) size 0x18 diff --git a/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt new file mode 100644 index 0000000..4a6a6f3 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt @@ -0,0 +1,39 @@ +CONSOLE MESSAGE: line 10: Uncaught ReferenceError: appendCell is not defined +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 784x18 + RenderText {#text} at (0,0) size 214x18 + text run at (0,0) width 214: "The 2 tables should look the same" + RenderTable {TABLE} at (0,18) size 62x28 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,46) size 784x18 + RenderBR {BR} at (0,0) size 0x18 + RenderTable {TABLE} at (0,64) size 62x54 [bgcolor=#FFA500] [border: (1px outset #808080)] + RenderTableSection {TBODY} at (1,1) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=2 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X1" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 20x18 + text run at (2,2) width 20: "X2" + RenderTableSection {TBODY} at (1,27) size 60x26 + RenderTableRow {TR} at (0,2) size 60x22 + RenderTableCell {TD} at (2,2) size 27x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c11" + RenderTableCell {TD} at (31,2) size 27x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1] + RenderText {#text} at (2,2) size 23x18 + text run at (2,2) width 23: "c12" + RenderBlock (anonymous) at (0,118) size 784x18 + RenderBR {BR} at (0,0) size 0x18 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 new file mode 100644 index 0000000..691af41 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..8897290 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.png 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 new file mode 100644 index 0000000..dec20e8 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/arial-expected.txt @@ -0,0 +1,865 @@ +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 new file mode 100644 index 0000000..e782eef --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..ddd4e51 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.png 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 new file mode 100644 index 0000000..e458dba --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/comic-sans-ms-expected.txt @@ -0,0 +1,1151 @@ +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 new file mode 100644 index 0000000..b2b7942 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..9f1b41f --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.png 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 new file mode 100644 index 0000000..9e5457c --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/courier-expected.txt @@ -0,0 +1,1151 @@ +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 new file mode 100644 index 0000000..0656ac4 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..5f03ca2 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.png 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 new file mode 100644 index 0000000..1fbc64b --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/default-expected.txt @@ -0,0 +1,1144 @@ +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 new file mode 100644 index 0000000..89fb5dd --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..a7f392d --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.png 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 new file mode 100644 index 0000000..cacd0f9 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/helvetica-expected.txt @@ -0,0 +1,1151 @@ +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 new file mode 100644 index 0000000..ec39265 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.checksum @@ -0,0 +1 @@ +2262da976566e7313869fee7f39e9822
\ 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 differnew file mode 100644 index 0000000..3dc1953 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.png 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 new file mode 100644 index 0000000..bf86bbe --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/impact-expected.txt @@ -0,0 +1,1151 @@ +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 56x1786 + 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,19) size 20x19 + text run at (0,19) width 20: "!!!!" + RenderBR {BR} at (20,35) size 0x0 + RenderText {#text} at (0,38) size 28x19 + text run at (0,38) width 28: "\"\"\"\"" + RenderBR {BR} at (28,54) size 0x0 + RenderText {#text} at (0,57) size 44x19 + text run at (0,57) width 44: "####" + RenderBR {BR} at (44,73) size 0x0 + RenderText {#text} at (0,76) size 40x19 + text run at (0,76) width 40: "$$$$" + RenderBR {BR} at (40,92) size 0x0 + RenderText {#text} at (0,95) size 48x19 + text run at (0,95) width 48: "%%%%" + RenderBR {BR} at (48,111) size 0x0 + RenderText {#text} at (0,114) size 40x19 + text run at (0,114) width 40: "&&&&" + RenderBR {BR} at (40,130) size 0x0 + RenderText {#text} at (0,133) size 16x19 + text run at (0,133) width 16: "''''" + RenderBR {BR} at (16,149) size 0x0 + RenderText {#text} at (0,152) size 24x19 + text run at (0,152) width 24: "((((" + RenderBR {BR} at (24,168) size 0x0 + RenderText {#text} at (0,171) size 24x19 + text run at (0,171) width 24: "))))" + RenderBR {BR} at (24,187) size 0x0 + RenderText {#text} at (0,190) size 20x19 + text run at (0,190) width 20: "****" + RenderBR {BR} at (20,206) size 0x0 + RenderText {#text} at (0,209) size 40x19 + text run at (0,209) width 40: "++++" + RenderBR {BR} at (40,225) size 0x0 + RenderText {#text} at (0,228) size 16x19 + text run at (0,228) width 16: ",,,," + RenderBR {BR} at (16,244) size 0x0 + RenderText {#text} at (0,247) size 24x19 + text run at (0,247) width 24: "----" + RenderBR {BR} at (24,263) size 0x0 + RenderText {#text} at (0,266) size 16x19 + text run at (0,266) width 16: "...." + RenderBR {BR} at (16,282) size 0x0 + RenderText {#text} at (0,285) size 28x19 + text run at (0,285) width 28: "////" + RenderBR {BR} at (28,301) size 0x0 + RenderText {#text} at (0,304) size 40x19 + text run at (0,304) width 40: "0000" + RenderBR {BR} at (40,320) size 0x0 + RenderText {#text} at (0,323) size 28x19 + text run at (0,323) width 28: "1111" + RenderBR {BR} at (28,339) size 0x0 + RenderText {#text} at (0,342) size 36x19 + text run at (0,342) width 36: "2222" + RenderBR {BR} at (36,358) size 0x0 + RenderText {#text} at (0,361) size 36x19 + text run at (0,361) width 36: "3333" + RenderBR {BR} at (36,377) size 0x0 + RenderText {#text} at (0,380) size 36x19 + text run at (0,380) width 36: "4444" + RenderBR {BR} at (36,396) size 0x0 + RenderText {#text} at (0,399) size 40x19 + text run at (0,399) width 40: "5555" + RenderBR {BR} at (40,415) size 0x0 + RenderText {#text} at (0,418) size 40x19 + text run at (0,418) width 40: "6666" + RenderBR {BR} at (40,434) size 0x0 + RenderText {#text} at (0,437) size 28x19 + text run at (0,437) width 28: "7777" + RenderBR {BR} at (28,453) size 0x0 + RenderText {#text} at (0,456) size 40x19 + text run at (0,456) width 40: "8888" + RenderBR {BR} at (40,472) size 0x0 + RenderText {#text} at (0,475) size 40x19 + text run at (0,475) width 40: "9999" + RenderBR {BR} at (40,491) size 0x0 + RenderText {#text} at (0,494) size 16x19 + text run at (0,494) width 16: "::::" + RenderBR {BR} at (16,510) size 0x0 + RenderText {#text} at (0,513) size 16x19 + text run at (0,513) width 16: ";;;;" + RenderBR {BR} at (16,529) size 0x0 + RenderText {#text} at (0,532) size 40x19 + text run at (0,532) width 40: "<<<<" + RenderBR {BR} at (40,548) size 0x0 + RenderText {#text} at (0,551) size 40x19 + text run at (0,551) width 40: "====" + RenderBR {BR} at (40,567) size 0x0 + RenderText {#text} at (0,570) size 40x19 + text run at (0,570) width 40: ">>>>" + RenderBR {BR} at (40,586) size 0x0 + RenderText {#text} at (0,589) size 36x19 + text run at (0,589) width 36: "????" + RenderBR {BR} at (36,605) size 0x0 + RenderText {#text} at (0,608) size 52x19 + text run at (0,608) width 52: "@@@@" + RenderBR {BR} at (52,624) size 0x0 + RenderText {#text} at (0,627) size 36x19 + text run at (0,627) width 36: "AAAA" + RenderBR {BR} at (36,643) size 0x0 + RenderText {#text} at (0,646) size 40x19 + text run at (0,646) width 40: "BBBB" + RenderBR {BR} at (40,662) size 0x0 + RenderText {#text} at (0,665) size 40x19 + text run at (0,665) width 40: "CCCC" + RenderBR {BR} at (40,681) size 0x0 + RenderText {#text} at (0,684) size 40x19 + text run at (0,684) width 40: "DDDD" + RenderBR {BR} at (40,700) size 0x0 + RenderText {#text} at (0,703) size 32x19 + text run at (0,703) width 32: "EEEE" + RenderBR {BR} at (32,719) size 0x0 + RenderText {#text} at (0,722) size 28x19 + text run at (0,722) width 28: "FFFF" + RenderBR {BR} at (28,738) size 0x0 + RenderText {#text} at (0,741) size 40x19 + text run at (0,741) width 40: "GGGG" + RenderBR {BR} at (40,757) size 0x0 + RenderText {#text} at (0,760) size 40x19 + text run at (0,760) width 40: "HHHH" + RenderBR {BR} at (40,776) size 0x0 + RenderText {#text} at (0,779) size 24x19 + text run at (0,779) width 24: "IIII" + RenderBR {BR} at (24,795) size 0x0 + RenderText {#text} at (0,798) size 24x19 + text run at (0,798) width 24: "JJJJ" + RenderBR {BR} at (24,814) size 0x0 + RenderText {#text} at (0,817) size 40x19 + text run at (0,817) width 40: "KKKK" + RenderBR {BR} at (40,833) size 0x0 + RenderText {#text} at (0,836) size 28x19 + text run at (0,836) width 28: "LLLL" + RenderBR {BR} at (28,852) size 0x0 + RenderText {#text} at (0,855) size 48x19 + text run at (0,855) width 48: "MMMM" + RenderBR {BR} at (48,871) size 0x0 + RenderText {#text} at (0,874) size 40x19 + text run at (0,874) width 40: "NNNN" + RenderBR {BR} at (40,890) size 0x0 + RenderText {#text} at (0,893) size 40x19 + text run at (0,893) width 40: "OOOO" + RenderBR {BR} at (40,909) size 0x0 + RenderText {#text} at (0,912) size 36x19 + text run at (0,912) width 36: "PPPP" + RenderBR {BR} at (36,928) size 0x0 + RenderText {#text} at (0,931) size 40x19 + text run at (0,931) width 40: "QQQQ" + RenderBR {BR} at (40,947) size 0x0 + RenderText {#text} at (0,950) size 40x19 + text run at (0,950) width 40: "RRRR" + RenderBR {BR} at (40,966) size 0x0 + RenderText {#text} at (0,969) size 36x19 + text run at (0,969) width 36: "SSSS" + RenderBR {BR} at (36,985) size 0x0 + RenderText {#text} at (0,988) size 32x19 + text run at (0,988) width 32: "TTTT" + RenderBR {BR} at (32,1004) size 0x0 + RenderText {#text} at (0,1007) size 40x19 + text run at (0,1007) width 40: "UUUU" + RenderBR {BR} at (40,1023) size 0x0 + RenderText {#text} at (0,1026) size 36x19 + text run at (0,1026) width 36: "VVVV" + RenderBR {BR} at (36,1042) size 0x0 + RenderText {#text} at (0,1045) size 56x19 + text run at (0,1045) width 56: "WWWW" + RenderBR {BR} at (56,1061) size 0x0 + RenderText {#text} at (0,1064) size 36x19 + text run at (0,1064) width 36: "XXXX" + RenderBR {BR} at (36,1080) size 0x0 + RenderText {#text} at (0,1083) size 36x19 + text run at (0,1083) width 36: "YYYY" + RenderBR {BR} at (36,1099) size 0x0 + RenderText {#text} at (0,1102) size 28x19 + text run at (0,1102) width 28: "ZZZZ" + RenderBR {BR} at (28,1118) size 0x0 + RenderText {#text} at (0,1121) size 24x19 + text run at (0,1121) width 24: "[[[[" + RenderBR {BR} at (24,1137) size 0x0 + RenderText {#text} at (0,1140) size 28x19 + text run at (0,1140) width 28: "\\\\\\\\" + RenderBR {BR} at (28,1156) size 0x0 + RenderText {#text} at (0,1159) size 24x19 + text run at (0,1159) width 24: "]]]]" + RenderBR {BR} at (24,1175) size 0x0 + RenderText {#text} at (0,1178) size 36x19 + text run at (0,1178) width 36: "^^^^" + RenderBR {BR} at (36,1194) size 0x0 + RenderText {#text} at (0,1197) size 40x19 + text run at (0,1197) width 40: "____" + RenderBR {BR} at (40,1213) size 0x0 + RenderText {#text} at (0,1216) size 24x19 + text run at (0,1216) width 24: "````" + RenderBR {BR} at (24,1232) size 0x0 + RenderText {#text} at (0,1235) size 36x19 + text run at (0,1235) width 36: "aaaa" + RenderBR {BR} at (36,1251) size 0x0 + RenderText {#text} at (0,1254) size 36x19 + text run at (0,1254) width 36: "bbbb" + RenderBR {BR} at (36,1270) size 0x0 + RenderText {#text} at (0,1273) size 36x19 + text run at (0,1273) width 36: "cccc" + RenderBR {BR} at (36,1289) size 0x0 + RenderText {#text} at (0,1292) size 36x19 + text run at (0,1292) width 36: "dddd" + RenderBR {BR} at (36,1308) size 0x0 + RenderText {#text} at (0,1311) size 36x19 + text run at (0,1311) width 36: "eeee" + RenderBR {BR} at (36,1327) size 0x0 + RenderText {#text} at (0,1330) size 24x19 + text run at (0,1330) width 24: "ffff" + RenderBR {BR} at (24,1346) size 0x0 + RenderText {#text} at (0,1349) size 36x19 + text run at (0,1349) width 36: "gggg" + RenderBR {BR} at (36,1365) size 0x0 + RenderText {#text} at (0,1368) size 36x19 + text run at (0,1368) width 36: "hhhh" + RenderBR {BR} at (36,1384) size 0x0 + RenderText {#text} at (0,1387) size 20x19 + text run at (0,1387) width 20: "iiii" + RenderBR {BR} at (20,1403) size 0x0 + RenderText {#text} at (0,1406) size 20x19 + text run at (0,1406) width 20: "jjjj" + RenderBR {BR} at (20,1422) size 0x0 + RenderText {#text} at (0,1425) size 36x19 + text run at (0,1425) width 36: "kkkk" + RenderBR {BR} at (36,1441) size 0x0 + RenderText {#text} at (0,1444) size 20x19 + text run at (0,1444) width 20: "llll" + RenderBR {BR} at (20,1460) size 0x0 + RenderText {#text} at (0,1463) size 52x19 + text run at (0,1463) width 52: "mmmm" + RenderBR {BR} at (52,1479) size 0x0 + RenderText {#text} at (0,1482) size 36x19 + text run at (0,1482) width 36: "nnnn" + RenderBR {BR} at (36,1498) size 0x0 + RenderText {#text} at (0,1501) size 36x19 + text run at (0,1501) width 36: "oooo" + RenderBR {BR} at (36,1517) size 0x0 + RenderText {#text} at (0,1520) size 36x19 + text run at (0,1520) width 36: "pppp" + RenderBR {BR} at (36,1536) size 0x0 + RenderText {#text} at (0,1539) size 36x19 + text run at (0,1539) width 36: "qqqq" + RenderBR {BR} at (36,1555) size 0x0 + RenderText {#text} at (0,1558) size 28x19 + text run at (0,1558) width 28: "rrrr" + RenderBR {BR} at (28,1574) size 0x0 + RenderText {#text} at (0,1577) size 36x19 + text run at (0,1577) width 36: "ssss" + RenderBR {BR} at (36,1593) size 0x0 + RenderText {#text} at (0,1596) size 24x19 + text run at (0,1596) width 24: "tttt" + RenderBR {BR} at (24,1612) size 0x0 + RenderText {#text} at (0,1615) size 36x19 + text run at (0,1615) width 36: "uuuu" + RenderBR {BR} at (36,1631) size 0x0 + RenderText {#text} at (0,1634) size 32x19 + text run at (0,1634) width 32: "vvvv" + RenderBR {BR} at (32,1650) size 0x0 + RenderText {#text} at (0,1653) size 48x19 + text run at (0,1653) width 48: "wwww" + RenderBR {BR} at (48,1669) size 0x0 + RenderText {#text} at (0,1672) size 32x19 + text run at (0,1672) width 32: "xxxx" + RenderBR {BR} at (32,1688) size 0x0 + RenderText {#text} at (0,1691) size 32x19 + text run at (0,1691) width 32: "yyyy" + RenderBR {BR} at (32,1707) size 0x0 + RenderText {#text} at (0,1710) size 28x19 + text run at (0,1710) width 28: "zzzz" + RenderBR {BR} at (28,1726) size 0x0 + RenderText {#text} at (0,1729) size 28x19 + text run at (0,1729) width 28: "{{{{" + RenderBR {BR} at (28,1745) size 0x0 + RenderText {#text} at (0,1748) size 20x19 + text run at (0,1748) width 20: "||||" + RenderBR {BR} at (20,1764) size 0x0 + RenderText {#text} at (0,1767) size 28x19 + text run at (0,1767) width 28: "}}}}" + RenderBR {BR} at (28,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 56x1786 + RenderText {#text} at (0,0) size 0x0 + RenderInline {B} at (0,0) size 56x1786 + RenderInline {I} at (0,0) size 56x1786 + 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,19) size 20x19 + text run at (0,19) width 20: "!!!!" + RenderBR {BR} at (20,35) size 0x0 + RenderText {#text} at (0,38) size 28x19 + text run at (0,38) width 28: "\"\"\"\"" + RenderBR {BR} at (28,54) size 0x0 + RenderText {#text} at (0,57) size 44x19 + text run at (0,57) width 44: "####" + RenderBR {BR} at (44,73) size 0x0 + RenderText {#text} at (0,76) size 40x19 + text run at (0,76) width 40: "$$$$" + RenderBR {BR} at (40,92) size 0x0 + RenderText {#text} at (0,95) size 48x19 + text run at (0,95) width 48: "%%%%" + RenderBR {BR} at (48,111) size 0x0 + RenderText {#text} at (0,114) size 40x19 + text run at (0,114) width 40: "&&&&" + RenderBR {BR} at (40,130) size 0x0 + RenderText {#text} at (0,133) size 16x19 + text run at (0,133) width 16: "''''" + RenderBR {BR} at (16,149) size 0x0 + RenderText {#text} at (0,152) size 24x19 + text run at (0,152) width 24: "((((" + RenderBR {BR} at (24,168) size 0x0 + RenderText {#text} at (0,171) size 24x19 + text run at (0,171) width 24: "))))" + RenderBR {BR} at (24,187) size 0x0 + RenderText {#text} at (0,190) size 20x19 + text run at (0,190) width 20: "****" + RenderBR {BR} at (20,206) size 0x0 + RenderText {#text} at (0,209) size 40x19 + text run at (0,209) width 40: "++++" + RenderBR {BR} at (40,225) size 0x0 + RenderText {#text} at (0,228) size 16x19 + text run at (0,228) width 16: ",,,," + RenderBR {BR} at (16,244) size 0x0 + RenderText {#text} at (0,247) size 24x19 + text run at (0,247) width 24: "----" + RenderBR {BR} at (24,263) size 0x0 + RenderText {#text} at (0,266) size 16x19 + text run at (0,266) width 16: "...." + RenderBR {BR} at (16,282) size 0x0 + RenderText {#text} at (0,285) size 28x19 + text run at (0,285) width 28: "////" + RenderBR {BR} at (28,301) size 0x0 + RenderText {#text} at (0,304) size 40x19 + text run at (0,304) width 40: "0000" + RenderBR {BR} at (40,320) size 0x0 + RenderText {#text} at (0,323) size 28x19 + text run at (0,323) width 28: "1111" + RenderBR {BR} at (28,339) size 0x0 + RenderText {#text} at (0,342) size 36x19 + text run at (0,342) width 36: "2222" + RenderBR {BR} at (36,358) size 0x0 + RenderText {#text} at (0,361) size 36x19 + text run at (0,361) width 36: "3333" + RenderBR {BR} at (36,377) size 0x0 + RenderText {#text} at (0,380) size 36x19 + text run at (0,380) width 36: "4444" + RenderBR {BR} at (36,396) size 0x0 + RenderText {#text} at (0,399) size 40x19 + text run at (0,399) width 40: "5555" + RenderBR {BR} at (40,415) size 0x0 + RenderText {#text} at (0,418) size 40x19 + text run at (0,418) width 40: "6666" + RenderBR {BR} at (40,434) size 0x0 + RenderText {#text} at (0,437) size 28x19 + text run at (0,437) width 28: "7777" + RenderBR {BR} at (28,453) size 0x0 + RenderText {#text} at (0,456) size 40x19 + text run at (0,456) width 40: "8888" + RenderBR {BR} at (40,472) size 0x0 + RenderText {#text} at (0,475) size 40x19 + text run at (0,475) width 40: "9999" + RenderBR {BR} at (40,491) size 0x0 + RenderText {#text} at (0,494) size 16x19 + text run at (0,494) width 16: "::::" + RenderBR {BR} at (16,510) size 0x0 + RenderText {#text} at (0,513) size 16x19 + text run at (0,513) width 16: ";;;;" + RenderBR {BR} at (16,529) size 0x0 + RenderText {#text} at (0,532) size 40x19 + text run at (0,532) width 40: "<<<<" + RenderBR {BR} at (40,548) size 0x0 + RenderText {#text} at (0,551) size 40x19 + text run at (0,551) width 40: "====" + RenderBR {BR} at (40,567) size 0x0 + RenderText {#text} at (0,570) size 40x19 + text run at (0,570) width 40: ">>>>" + RenderBR {BR} at (40,586) size 0x0 + RenderText {#text} at (0,589) size 36x19 + text run at (0,589) width 36: "????" + RenderBR {BR} at (36,605) size 0x0 + RenderText {#text} at (0,608) size 52x19 + text run at (0,608) width 52: "@@@@" + RenderBR {BR} at (52,624) size 0x0 + RenderText {#text} at (0,627) size 36x19 + text run at (0,627) width 36: "AAAA" + RenderBR {BR} at (36,643) size 0x0 + RenderText {#text} at (0,646) size 40x19 + text run at (0,646) width 40: "BBBB" + RenderBR {BR} at (40,662) size 0x0 + RenderText {#text} at (0,665) size 40x19 + text run at (0,665) width 40: "CCCC" + RenderBR {BR} at (40,681) size 0x0 + RenderText {#text} at (0,684) size 40x19 + text run at (0,684) width 40: "DDDD" + RenderBR {BR} at (40,700) size 0x0 + RenderText {#text} at (0,703) size 32x19 + text run at (0,703) width 32: "EEEE" + RenderBR {BR} at (32,719) size 0x0 + RenderText {#text} at (0,722) size 28x19 + text run at (0,722) width 28: "FFFF" + RenderBR {BR} at (28,738) size 0x0 + RenderText {#text} at (0,741) size 40x19 + text run at (0,741) width 40: "GGGG" + RenderBR {BR} at (40,757) size 0x0 + RenderText {#text} at (0,760) size 40x19 + text run at (0,760) width 40: "HHHH" + RenderBR {BR} at (40,776) size 0x0 + RenderText {#text} at (0,779) size 24x19 + text run at (0,779) width 24: "IIII" + RenderBR {BR} at (24,795) size 0x0 + RenderText {#text} at (0,798) size 24x19 + text run at (0,798) width 24: "JJJJ" + RenderBR {BR} at (24,814) size 0x0 + RenderText {#text} at (0,817) size 40x19 + text run at (0,817) width 40: "KKKK" + RenderBR {BR} at (40,833) size 0x0 + RenderText {#text} at (0,836) size 28x19 + text run at (0,836) width 28: "LLLL" + RenderBR {BR} at (28,852) size 0x0 + RenderText {#text} at (0,855) size 48x19 + text run at (0,855) width 48: "MMMM" + RenderBR {BR} at (48,871) size 0x0 + RenderText {#text} at (0,874) size 40x19 + text run at (0,874) width 40: "NNNN" + RenderBR {BR} at (40,890) size 0x0 + RenderText {#text} at (0,893) size 40x19 + text run at (0,893) width 40: "OOOO" + RenderBR {BR} at (40,909) size 0x0 + RenderText {#text} at (0,912) size 36x19 + text run at (0,912) width 36: "PPPP" + RenderBR {BR} at (36,928) size 0x0 + RenderText {#text} at (0,931) size 40x19 + text run at (0,931) width 40: "QQQQ" + RenderBR {BR} at (40,947) size 0x0 + RenderText {#text} at (0,950) size 40x19 + text run at (0,950) width 40: "RRRR" + RenderBR {BR} at (40,966) size 0x0 + RenderText {#text} at (0,969) size 36x19 + text run at (0,969) width 36: "SSSS" + RenderBR {BR} at (36,985) size 0x0 + RenderText {#text} at (0,988) size 32x19 + text run at (0,988) width 32: "TTTT" + RenderBR {BR} at (32,1004) size 0x0 + RenderText {#text} at (0,1007) size 40x19 + text run at (0,1007) width 40: "UUUU" + RenderBR {BR} at (40,1023) size 0x0 + RenderText {#text} at (0,1026) size 36x19 + text run at (0,1026) width 36: "VVVV" + RenderBR {BR} at (36,1042) size 0x0 + RenderText {#text} at (0,1045) size 56x19 + text run at (0,1045) width 56: "WWWW" + RenderBR {BR} at (56,1061) size 0x0 + RenderText {#text} at (0,1064) size 36x19 + text run at (0,1064) width 36: "XXXX" + RenderBR {BR} at (36,1080) size 0x0 + RenderText {#text} at (0,1083) size 36x19 + text run at (0,1083) width 36: "YYYY" + RenderBR {BR} at (36,1099) size 0x0 + RenderText {#text} at (0,1102) size 28x19 + text run at (0,1102) width 28: "ZZZZ" + RenderBR {BR} at (28,1118) size 0x0 + RenderText {#text} at (0,1121) size 24x19 + text run at (0,1121) width 24: "[[[[" + RenderBR {BR} at (24,1137) size 0x0 + RenderText {#text} at (0,1140) size 28x19 + text run at (0,1140) width 28: "\\\\\\\\" + RenderBR {BR} at (28,1156) size 0x0 + RenderText {#text} at (0,1159) size 24x19 + text run at (0,1159) width 24: "]]]]" + RenderBR {BR} at (24,1175) size 0x0 + RenderText {#text} at (0,1178) size 36x19 + text run at (0,1178) width 36: "^^^^" + RenderBR {BR} at (36,1194) size 0x0 + RenderText {#text} at (0,1197) size 40x19 + text run at (0,1197) width 40: "____" + RenderBR {BR} at (40,1213) size 0x0 + RenderText {#text} at (0,1216) size 24x19 + text run at (0,1216) width 24: "````" + RenderBR {BR} at (24,1232) size 0x0 + RenderText {#text} at (0,1235) size 36x19 + text run at (0,1235) width 36: "aaaa" + RenderBR {BR} at (36,1251) size 0x0 + RenderText {#text} at (0,1254) size 36x19 + text run at (0,1254) width 36: "bbbb" + RenderBR {BR} at (36,1270) size 0x0 + RenderText {#text} at (0,1273) size 36x19 + text run at (0,1273) width 36: "cccc" + RenderBR {BR} at (36,1289) size 0x0 + RenderText {#text} at (0,1292) size 36x19 + text run at (0,1292) width 36: "dddd" + RenderBR {BR} at (36,1308) size 0x0 + RenderText {#text} at (0,1311) size 36x19 + text run at (0,1311) width 36: "eeee" + RenderBR {BR} at (36,1327) size 0x0 + RenderText {#text} at (0,1330) size 24x19 + text run at (0,1330) width 24: "ffff" + RenderBR {BR} at (24,1346) size 0x0 + RenderText {#text} at (0,1349) size 36x19 + text run at (0,1349) width 36: "gggg" + RenderBR {BR} at (36,1365) size 0x0 + RenderText {#text} at (0,1368) size 36x19 + text run at (0,1368) width 36: "hhhh" + RenderBR {BR} at (36,1384) size 0x0 + RenderText {#text} at (0,1387) size 20x19 + text run at (0,1387) width 20: "iiii" + RenderBR {BR} at (20,1403) size 0x0 + RenderText {#text} at (0,1406) size 20x19 + text run at (0,1406) width 20: "jjjj" + RenderBR {BR} at (20,1422) size 0x0 + RenderText {#text} at (0,1425) size 36x19 + text run at (0,1425) width 36: "kkkk" + RenderBR {BR} at (36,1441) size 0x0 + RenderText {#text} at (0,1444) size 20x19 + text run at (0,1444) width 20: "llll" + RenderBR {BR} at (20,1460) size 0x0 + RenderText {#text} at (0,1463) size 52x19 + text run at (0,1463) width 52: "mmmm" + RenderBR {BR} at (52,1479) size 0x0 + RenderText {#text} at (0,1482) size 36x19 + text run at (0,1482) width 36: "nnnn" + RenderBR {BR} at (36,1498) size 0x0 + RenderText {#text} at (0,1501) size 36x19 + text run at (0,1501) width 36: "oooo" + RenderBR {BR} at (36,1517) size 0x0 + RenderText {#text} at (0,1520) size 36x19 + text run at (0,1520) width 36: "pppp" + RenderBR {BR} at (36,1536) size 0x0 + RenderText {#text} at (0,1539) size 36x19 + text run at (0,1539) width 36: "qqqq" + RenderBR {BR} at (36,1555) size 0x0 + RenderText {#text} at (0,1558) size 28x19 + text run at (0,1558) width 28: "rrrr" + RenderBR {BR} at (28,1574) size 0x0 + RenderText {#text} at (0,1577) size 36x19 + text run at (0,1577) width 36: "ssss" + RenderBR {BR} at (36,1593) size 0x0 + RenderText {#text} at (0,1596) size 24x19 + text run at (0,1596) width 24: "tttt" + RenderBR {BR} at (24,1612) size 0x0 + RenderText {#text} at (0,1615) size 36x19 + text run at (0,1615) width 36: "uuuu" + RenderBR {BR} at (36,1631) size 0x0 + RenderText {#text} at (0,1634) size 32x19 + text run at (0,1634) width 32: "vvvv" + RenderBR {BR} at (32,1650) size 0x0 + RenderText {#text} at (0,1653) size 48x19 + text run at (0,1653) width 48: "wwww" + RenderBR {BR} at (48,1669) size 0x0 + RenderText {#text} at (0,1672) size 32x19 + text run at (0,1672) width 32: "xxxx" + RenderBR {BR} at (32,1688) size 0x0 + RenderText {#text} at (0,1691) size 32x19 + text run at (0,1691) width 32: "yyyy" + RenderBR {BR} at (32,1707) size 0x0 + RenderText {#text} at (0,1710) size 28x19 + text run at (0,1710) width 28: "zzzz" + RenderBR {BR} at (28,1726) size 0x0 + RenderText {#text} at (0,1729) size 28x19 + text run at (0,1729) width 28: "{{{{" + RenderBR {BR} at (28,1745) size 0x0 + RenderText {#text} at (0,1748) size 20x19 + text run at (0,1748) width 20: "||||" + RenderBR {BR} at (20,1764) size 0x0 + RenderText {#text} at (0,1767) size 28x19 + text run at (0,1767) width 28: "}}}}" + RenderBR {BR} at (28,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 new file mode 100644 index 0000000..ce49455 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..58c9176 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.png 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 new file mode 100644 index 0000000..7e35bfa --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/lucida-grande-expected.txt @@ -0,0 +1,1151 @@ +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 new file mode 100644 index 0000000..0656ac4 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.checksum @@ -0,0 +1 @@ +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 differnew file mode 100644 index 0000000..5f03ca2 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.png 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 new file mode 100644 index 0000000..ef0d423 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/chrome/fonts/times-expected.txt @@ -0,0 +1,1151 @@ +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 new file mode 100644 index 0000000..d8e9654 --- /dev/null +++ b/webkit/data/layout_tests/platform/chromium-mac/pending/fast/repaint/bugzilla-6473-expected.txt @@ -0,0 +1,36 @@ +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/tools/layout_tests/test_lists/tests_fixable.txt b/webkit/tools/layout_tests/test_lists/tests_fixable.txt index 72153ee..fc9d09c 100644 --- a/webkit/tools/layout_tests/test_lists/tests_fixable.txt +++ b/webkit/tools/layout_tests/test_lists/tests_fixable.txt @@ -956,6 +956,8 @@ LINUX : LayoutTests/fast/forms/select-style.html = FAIL // Linux pixeltest failure: The text suggests that the radios should not // overlap, but it's very close and quite different from the Windows version LINUX : LayoutTests/fast/replaced/width100percent-radio.html = FAIL +// Linux pixel tests: the select arrow is clipping wrong on one line. +LINUX : chrome/fast/forms/basic-selects.html = FAIL // Internationalization / complex characters / etc LINUX : LayoutTests/fast/lists/w3-list-styles.html = FAIL @@ -1293,6 +1295,9 @@ LayoutTests/fast/workers/use-machine-stack.html = TIMEOUT // MERGE 38760:38800: Expectations changed upstream WIN : LayoutTests/svg/hixie/data-types/001.xml = FAIL +// Windows is missing the green box. +WIN : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL + // ----------------------------------------------------------------- // MAC PORT TESTS // ----------------------------------------------------------------- @@ -1308,7 +1313,8 @@ SKIP MAC : LayoutTests/fast/regex/ = TIMEOUT // pass on Mac once we fix the bugs. // -// ***** BUCKETS +// We've bucketed tests into groupings for why they're failing. Please try +// to add new failures in the appropriate bucket. // text fields wrong width MAC : LayoutTests/editing/deleting/5168598.html = FAIL @@ -1380,6 +1386,44 @@ MAC : LayoutTests/fast/replaced/width100percent-textfield.html = FAIL MAC : LayoutTests/fast/table/colspanMinWidth.html = FAIL MAC : LayoutTests/fast/table/spanOverlapRepaint.html = FAIL MAC : LayoutTests/fast/text/textIteratorNilRenderer.html = FAIL +MAC : LayoutTests/svg/hixie/mixed/003.xml = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug1188.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug12384.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug18359.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug194024.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug24200.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug2479-3.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug2479-4.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug28928.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug2962.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug30559.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug30692.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug39209.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug4382.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug4429.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug4527.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug46368-1.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug46368-2.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug51037.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug55545.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug56201.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug59354.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug7342.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug96334.html = FAIL +MAC : LayoutTests/tables/mozilla/bugs/bug99948.html = FAIL +MAC : LayoutTests/tables/mozilla/dom/tableDom.html = FAIL +MAC : LayoutTests/tables/mozilla/other/move_row.html = FAIL +MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug92647-1.html = FAIL +MAC : chrome/fast/forms/basic-buttons.html = FAIL +MAC : chrome/fast/forms/basic-inputs.html = FAIL +MAC : chrome/fast/forms/basic-selects.html = FAIL +MAC : chrome/fast/forms/textarea-metrics.html = FAIL +MAC : LayoutTests/fast/forms/input-readonly-autoscroll.html = FAIL +MAC : LayoutTests/fast/forms/input-type-text-min-width.html = FAIL +MAC : LayoutTests/fast/forms/placeholder-set-attribute.html = FAIL +MAC : LayoutTests/fast/replaced/replaced-breaking.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 @@ -1429,6 +1473,12 @@ MAC : LayoutTests/http/tests/navigation/timerredirect-basic.html = FAIL CRASH MAC : LayoutTests/http/tests/navigation/timerredirect-frames.html = FAIL MAC : LayoutTests/http/tests/navigation/timerredirect-goback.html = FAIL MAC : LayoutTests/http/tests/navigation/timerredirect-subframeload.html = FAIL +MAC : LayoutTests/http/tests/navigation/post-goback2.html = FAIL +MAC : LayoutTests/http/tests/navigation/postredirect-goback2.html = FAIL +MAC : LayoutTests/http/tests/navigation/redirect302-goback.html = FAIL +MAC : LayoutTests/http/tests/navigation/redirect302-subframeload.html = FAIL +MAC : LayoutTests/http/tests/navigation/relativeanchor-basic.html = FAIL +MAC : LayoutTests/http/tests/navigation/relativeanchor-frames.html = FAIL // text input garbage MAC : LayoutTests/editing/inserting/typing-tab-designmode.html = FAIL @@ -1489,6 +1539,16 @@ MAC : LayoutTests/fast/css/font-weight-1.html = FAIL MAC : LayoutTests/fast/encoding/utf-16-big-endian.html = FAIL MAC : LayoutTests/fast/encoding/utf-16-little-endian.html = FAIL MAC : LayoutTests/http/tests/misc/isindex-formdata.html = FAIL +MAC : LayoutTests/svg/custom/preserve-aspect-ratio-syntax.svg = FAIL +MAC : LayoutTests/svg/custom/viewbox-syntax.svg = FAIL +MAC : LayoutTests/tables/mozilla/collapsing_borders/bug41262-3.html = FAIL +MAC : LayoutTests/tables/mozilla/marvin/x_td_nowrap.xml = FAIL +MAC : LayoutTests/tables/mozilla/marvin/x_th_nowrap.xml = FAIL +MAC : LayoutTests/editing/deleting/5408255.html = FAIL +MAC : LayoutTests/editing/pasteboard/5006779.html = FAIL +// These started failing around 2008/12/12 +MAC DEBUG : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL +MAC DEBUG : LayoutTests/svg/hixie/perf/007.xml = FAIL // not loading local files MAC : LayoutTests/fast/loader/local-CSS-from-local.html = FAIL @@ -1505,168 +1565,66 @@ MAC : LayoutTests/fast/dom/SelectorAPI/resig-SelectorsAPI-test.xhtml = FAIL // the url comes back wrong, it should have a question mark for args on it. MAC : LayoutTests/http/tests/navigation/onload-navigation-iframe-timeout.html = FAIL +MAC : LayoutTests/http/tests/navigation/onload-navigation-iframe.html = FAIL // contain extra output at the top, no clue why. MAC : LayoutTests/fast/forms/001.html = FAIL MAC : LayoutTests/fast/forms/menulist-narrow-width.html = FAIL +// JS profiler not enabled? +MAC : LayoutTests/fast/profiler/document-dot-write.html = FAIL +MAC : LayoutTests/fast/profiler/stop-then-function-call.html = FAIL + // whitespace differences (??) MAC : LayoutTests/fast/dom/tabindex-clamp.html = FAIL -// ***** END BUCKETS - -MAC : LayoutTests/fast/dom/Window/new-window-opener.html = CRASH -MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html = PASS CRASH -MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url.html = PASS CRASH -MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-set-opener.html = PASS CRASH -MAC : LayoutTests/http/tests/security/cross-frame-access-call.html = TIMEOUT -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-window-open.html = PASS CRASH -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-javascript-url-window-open.html = CRASH PASS -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-2-level.html = PASS CRASH -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-window-open.html = CRASH +// Error from CGImageSourceUpdateData but everything else is correct. +MAC : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL // come back to clean this up. Windows was incorrectly baselined and so we // should remove its baseline and convert this to all platforms. MAC : LayoutTests/fast/dynamic/insert-before-table-part-in-continuation.html = FAIL -// Windows is missing the green box. Mac gets error from CGImageSourceUpdateData but -// everything else is correct. -WIN MAC : LayoutTests/http/tests/multipart/invalid-image-data.html = FAIL - - -MAC : LayoutTests/svg/custom/SVGException.html = FAIL -MAC : LayoutTests/svg/custom/createelement.svg = FAIL -MAC : LayoutTests/svg/custom/junk-data.svg = FAIL -MAC : LayoutTests/svg/custom/missing-xlink.svg = FAIL -MAC : LayoutTests/svg/custom/path-bad-data.svg = FAIL -MAC : LayoutTests/svg/custom/preserve-aspect-ratio-syntax.svg = FAIL -MAC : LayoutTests/svg/custom/viewbox-syntax.svg = FAIL -MAC : LayoutTests/svg/hixie/error/012.xml = FAIL -MAC : LayoutTests/svg/hixie/mixed/003.xml = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug1188.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug12384.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug18359.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug194024.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug24200.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug2479-3.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug2479-4.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug28928.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug2962.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug30559.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug30692.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug39209.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug4382.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug4429.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug4527.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug46368-1.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug46368-2.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug51037.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug53690-1.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug55545.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug56201.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug59354.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug7342.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug9024.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug96334.html = FAIL -MAC : LayoutTests/tables/mozilla/bugs/bug99948.html = FAIL -MAC : LayoutTests/tables/mozilla/collapsing_borders/bug41262-3.html = FAIL -MAC : LayoutTests/tables/mozilla/dom/tableDom.html = FAIL -MAC : LayoutTests/tables/mozilla/marvin/x_td_nowrap.xml = FAIL -MAC : LayoutTests/tables/mozilla/marvin/x_th_nowrap.xml = FAIL -MAC : LayoutTests/tables/mozilla/other/move_row.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug3517.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug92647-1.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/bugs/bug92868_1.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/dom/appendCells1.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/dom/appendCellsRebuild1.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyExpand1.html = FAIL -MAC : LayoutTests/tables/mozilla_expected_failures/dom/insertTbodyRebuild1.html = FAIL -MAC : chrome/fast/forms/basic-buttons.html = FAIL -MAC : chrome/fast/forms/basic-inputs.html = FAIL -// Linux pixel tests: the select arrow is clipping wrong on one line. -LINUX MAC : chrome/fast/forms/basic-selects.html = FAIL -MAC : chrome/fast/forms/textarea-metrics.html = FAIL -MAC : chrome/fonts/arial.html = FAIL -MAC : chrome/fonts/comic-sans-ms.html = FAIL -MAC : chrome/fonts/courier.html = FAIL -MAC : chrome/fonts/default.html = FAIL -MAC : chrome/fonts/helvetica.html = FAIL -MAC : chrome/fonts/impact.html = FAIL -MAC : chrome/fonts/lucida-grande.html = FAIL -MAC : chrome/fonts/times.html = FAIL -MAC : pending/fast/repaint/bugzilla-6473.html = FAIL -MAC : LayoutTests/fast/profiler/document-dot-write.html = FAIL -MAC : LayoutTests/fast/profiler/stop-then-function-call.html = FAIL -MAC : LayoutTests/http/tests/navigation/onload-navigation-iframe.html = FAIL -MAC : LayoutTests/editing/deleting/5408255.html = FAIL -MAC : LayoutTests/editing/pasteboard/5006779.html = FAIL -MAC : LayoutTests/fast/dom/Window/window-open-pending-url.html = FAIL -MAC : LayoutTests/fast/forms/input-readonly-autoscroll.html = FAIL -MAC : LayoutTests/fast/forms/input-type-text-min-width.html = FAIL -MAC : LayoutTests/fast/forms/placeholder-set-attribute.html = FAIL -MAC : LayoutTests/http/tests/navigation/post-goback2.html = FAIL -MAC : LayoutTests/http/tests/navigation/postredirect-goback2.html = FAIL -MAC : LayoutTests/http/tests/navigation/redirect302-goback.html = FAIL -MAC : LayoutTests/http/tests/navigation/redirect302-subframeload.html = FAIL -MAC : LayoutTests/http/tests/navigation/relativeanchor-basic.html = FAIL -MAC : LayoutTests/http/tests/navigation/relativeanchor-frames.html = FAIL -MAC : LayoutTests/http/tests/security/cross-frame-access-history-put.html = FAIL -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase.html = FAIL -MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-JSTargetNode-onclick-shortcut.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-addEventListener.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-XMLHttpRequest-shortcut.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-window-onclick-addEventListener.html = FAIL -MAC : LayoutTests/http/tests/security/listener/xss-window-onclick-shortcut.html = FAIL -MAC : LayoutTests/http/tests/security/xss-eval.html = FAIL - -// These crash -MAC : LayoutTests/fast/events/frame-tab-focus.html = CRASH FAIL -MAC : LayoutTests/fast/forms/focus2.html = CRASH FAIL - -// Items failing on the Mac as of 2008/12/12 -MAC DEBUG : LayoutTests/svg/W3C-SVG-1.1/animate-elem-30-t.svg = FAIL -MAC DEBUG : LayoutTests/svg/hixie/perf/007.xml = FAIL - -// Items crashing (sometimes) on the Mac as of 2008/12/12 +// Crashing... -// window.open +// window.open crashes MAC : LayoutTests/http/tests/navigation/target-frame-from-window.html = CRASH TIMEOUT -// window.open MAC : LayoutTests/http/tests/security/frameNavigation/not-opener.html = CRASH -// window.open MAC : LayoutTests/http/tests/security/javascriptURL/xss-ALLOWED-to-javascript-url-window-open.html = PASS CRASH -// window.open MAC : LayoutTests/http/tests/xmlhttprequest/close-window.html = CRASH -// window.open and plugin MAC : LayoutTests/plugins/open-and-close-window-with-plugin.html = CRASH FAIL - -// 2008/12/15 things crashing/timing out on the mac - -// no html tags, bad html (unmatched tags) -MAC : LayoutTests/fast/canvas/unclosed-canvas-1.html = CRASH -// window.open MAC : LayoutTests/fast/dom/Window/setting-properties-on-closed-window.html = CRASH -// eventSender -- window.open MAC RELEASE : LayoutTests/fast/events/open-window-from-another-frame.html = CRASH PASS -// Script -- window.open MAC RELEASE : LayoutTests/fast/history/history_reload.html = CRASH -// Script -- window.open MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-in-foreign-domain-window-open.html = CRASH TIMEOUT -// Script -- window.open MAC : LayoutTests/http/tests/security/frameNavigation/opener.html = CRASH -// Script -- window.open MAC RELEASE : LayoutTests/http/tests/security/javascriptURL/xss-DENIED-from-javascript-url-in-foreign-domain-window-open.html = CRASH PASS -// Script -- window.open MAC : LayoutTests/http/tests/security/javascriptURL/xss-DENIED-to-javascript-url-in-foreign-domain-window-open.html = PASS CRASH -// Script+SVG -- window.open MAC : LayoutTests/svg/carto.net/scrollbar.svg = CRASH + +MAC : LayoutTests/fast/dom/Window/new-window-opener.html = CRASH +MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write.html = PASS CRASH +MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url.html = PASS CRASH +MAC : LayoutTests/http/tests/security/aboutBlank/xss-DENIED-set-opener.html = PASS CRASH +MAC : LayoutTests/http/tests/security/cross-frame-access-call.html = TIMEOUT +MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-data-url-in-foreign-domain-window-open.html = PASS CRASH +MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-from-javascript-url-window-open.html = CRASH PASS +MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-2-level.html = PASS CRASH +MAC : LayoutTests/http/tests/security/dataURL/xss-DENIED-to-data-url-window-open.html = CRASH +MAC : LayoutTests/fast/events/frame-tab-focus.html = CRASH FAIL +MAC : LayoutTests/fast/forms/focus2.html = CRASH FAIL + +// no html tags, bad html (unmatched tags) +MAC : LayoutTests/fast/canvas/unclosed-canvas-1.html = CRASH // Script doesn't seem to run full tests before crashing MAC DEBUG : LayoutTests/svg/dynamic-updates/SVGForeignObjectElement-svgdom-width-prop.html = CRASH // Script -- onload hooks MAC : LayoutTests/fast/dom/Document/early-document-access.html = CRASH +// ----------------------------------------------------------------- +// END MAC PORT TESTS +// ----------------------------------------------------------------- + // WebKit Merge 38800:38850 regressions LayoutTests/fast/dom/HTMLDocument/document-open-return-value.html = FAIL LayoutTests/fast/events/dispatchEvent-crash.html = FAIL @@ -1816,12 +1774,12 @@ MAC DEBUG : LayoutTests/fast/events/standalone-image-drag-to-editable.html = FAI SKIP : LayoutTests/svg/webarchive/svg-cursor-subresources.svg = FAIL // Merge 39309:39335 Regressions -LayoutTests/fast/box-sizing/percentage-height.html = FAIL +LINUX WIN : LayoutTests/fast/box-sizing/percentage-height.html = FAIL LINUX WIN : LayoutTests/fast/forms/001.html = FAIL LINUX WIN : LayoutTests/fast/forms/button-default-title.html = FAIL -LayoutTests/fast/forms/control-clip.html = FAIL +LINUX WIN : LayoutTests/fast/forms/control-clip.html = FAIL LINUX WIN : LayoutTests/fast/forms/input-first-letter.html = FAIL -LayoutTests/fast/forms/select-baseline.html = FAIL +LINUX WIN : LayoutTests/fast/forms/select-baseline.html = FAIL // Merge 39309:39335 New Test LayoutTests/fast/dom/Window/window-custom-prototype.html = FAIL |