diff options
author | pam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 20:23:53 +0000 |
---|---|---|
committer | pam@chromium.org <pam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-27 20:23:53 +0000 |
commit | 8692307f79762a6bebf059d4bcf92c4e4ead4541 (patch) | |
tree | f8427f8bea5168eec2fd4c332f9e0613485215a8 | |
parent | 96ce2236c77dad045d6003848c4a15f067a992ff (diff) | |
download | chromium_src-8692307f79762a6bebf059d4bcf92c4e4ead4541.zip chromium_src-8692307f79762a6bebf059d4bcf92c4e4ead4541.tar.gz chromium_src-8692307f79762a6bebf059d4bcf92c4e4ead4541.tar.bz2 |
Remove tests that have been upstreamed. Update test_expectations list
accordingly.
BUG=4391
TEST=covered by layout tests
Review URL: http://codereview.chromium.org/55025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12696 0039d316-1c4b-4281-b951-d872f2087c98
109 files changed, 1 insertions, 11608 deletions
diff --git a/webkit/data/layout_tests/chrome/editing/ctrlc-crash-expected.txt b/webkit/data/layout_tests/chrome/editing/ctrlc-crash-expected.txt deleted file mode 100644 index c6936cb..0000000 --- a/webkit/data/layout_tests/chrome/editing/ctrlc-crash-expected.txt +++ /dev/null @@ -1,7 +0,0 @@ -Mouse Over - -This test checks any regressions for fix applied in bug 1112795. To test it manually: - Hover mouse over "Mouse Over" link - Quickly jump to the yellow box that pops up and select "Select" link - Move mouse away so that pop up disappears - Press Ctrl-C - this should not cause any crash diff --git a/webkit/data/layout_tests/chrome/editing/ctrlc-crash.html b/webkit/data/layout_tests/chrome/editing/ctrlc-crash.html deleted file mode 100644 index 32cc1d2..0000000 --- a/webkit/data/layout_tests/chrome/editing/ctrlc-crash.html +++ /dev/null @@ -1,358 +0,0 @@ -<html> - <head> - <script src="../../LayoutTests/editing/editing.js" language="JavaScript" type="text/JavaScript" ></script> - <style type="text/css"> - div.popup { - color: black !important; - background: yellow !important; - padding: 0.5em !important; - position: absolute !important; - z-index: 20000 !important; - display: none; - } - </style> - <script type="text/javascript"> - function getAbsolutePosition(element) { - var r = { x: element.offsetLeft, y: element.offsetTop }; - if (element.offsetParent) { - var tmp = getAbsolutePosition(element.offsetParent); - r.x += tmp.x; - r.y += tmp.y; - } - return r; - } - - function runTest1() { - if (!window.layoutTestController) - return; - layoutTestController.waitUntilDone(); - layoutTestController.dumpAsText(); - - e = document.getElementById("mouse_target"); - r = getAbsolutePosition(e); - x = r.x + e.offsetLeft + e.offsetWidth / 2; - y = r.y + e.offsetTop + e.offsetHeight / 2; - eventSender.mouseMoveTo(x, y); - window.setTimeout("runTest2()", 400); - } - - function runTest2() { - e = document.getElementById("select_target"); - r = getAbsolutePosition(e); - - setSelectionCommand(e, 0, e, 1); - eventSender.mouseMoveTo(0, 0); - window.setTimeout("runTest3()", 200); - } - - function runTest3() { - copyCommand(); - layoutTestController.notifyDone(); - } - - function MPP_bind(fn, self, var_args) { - var boundargs = fn.boundArgs_ || []; - boundargs = boundargs.concat(Array.prototype.slice.call(arguments, 2)); - - if (typeof fn.boundSelf_ != 'undefined') { - self = fn.boundSelf_; - } - - if (typeof fn.foundFn_ != 'undefined') { - fn = fn.boundFn_; - } - - var newfn = function() { - var args = boundargs.concat(Array.prototype.slice.call(arguments)); - return fn.apply(self, args); - } - - newfn.boundArgs_ = boundargs; - newfn.boundSelf_ = self; - newfn.boundFn_ = fn; - - return newfn; - }; - - function PersonPopup() { - this.pointerPosX = 0; - this.pointerPosY = 0; - - this.pointerOnTargetElement = false; - - this.targetPosX = 0; - this.targetPosY = 0; - this.targetWidth = 0; - this.targetHeight = 0; - this.targetElement = 0; - - this.delayed = false; - this.visible = false; - this.pointerOutsidePopup = false; - - this.showTimerID = -1; - this.hideTimerID = -1; - - window.addEventListener('load', - MPP_bind(this.handleOnLoad_, this), null); - - }; - - PersonPopup.prototype.getPointerX_ = function(e) { - var x, scrollLeft; - - if (e.pageX) { - x = e.pageX; - } else if (e.clientX) { - x = e.clientX + document.body.scrollLeft; - } else { - x = 0; - } - return x; - }; - - PersonPopup.prototype.getPointerY_ = function(e) { - var y, scrollTop; - - if (e.pageY) { - y = e.pageY; - } else if (e.clientY) { - y = e.clientY + document.body.scrollTop; - } else { - y = 0; - } - return y; - }; - - PersonPopup.prototype.pointerCloseEnough_ = function(x, y) { - var POINTER_TOLERANCE = 5; - if (this.pointerOutsidePopup) { - if ((x >= this.targetPosX) && - (x <= this.targetPosX + this.targetWidth) && - (y >= this.targetPosY) && - (y <= this.targetPosY + this.targetHeight)) { - this.pointerOutsidePopup = false; - return true; - } - } else { - if ((x >= this.targetPosX - POINTER_TOLERANCE) && - (x <= this.targetPosX + this.targetWidth + - POINTER_TOLERANCE) && - (y >= this.targetPosY - POINTER_TOLERANCE) && - (y <= this.targetPosY + this.targetHeight + - POINTER_TOLERANCE)) { - this.pointerOutsidePopup = false; - return true; - } - } - - return false; - }; - - PersonPopup.prototype.handleMouseMove_ = function(e) { - if ((this.delayed) || (this.visible)) { - e = e || window.event; - - var x = this.getPointerX_(e); - var y = this.getPointerY_(e); - - if (this.pointerCloseEnough_(x, y)) { - if (this.hideTimerID) { - window.clearTimeout(this.hideTimerID); - this.hideTimerID = -1; - } - } else { - if (this.hideTimerID == -1) { - this.hideTimerID = window.setTimeout(MPP_bind(this.hide_, this), - 200); - } - } - } - }; - - PersonPopup.prototype.resizeElement_ = function(el, x, y, w, h) { - if (x != false) { - el.style.left = x + 'px'; - } - if (y != false) { - el.style.top = y + 'px'; - } - if (w != false) { - el.style.width = w + 'px'; - } - if (h != false) { - el.style.height = h + 'px'; - } - }; - - PersonPopup.prototype.show_ = function() { - this.showTimerID = -1; - - if (this.hideTimerID != -1) { - this.delayed = false; - return; - } - if (!this.pointerOnTargetElement) { - this.delayed = false; - return; - } - this.resizeElement_(this.popupDetailedElement, - this.targetPosX, this.targetPosY, - this.targetWidth, false); - this.popupDetailedElement.style.display = 'block'; - this.popupDetailedElement.innerHTML = "<a href='http://dnede.com' id='select_target'>Select</a>"; - this.popupDetailedElement.style.visibility = 'visible'; - this.visible = true; - this.delayed = false; - }; - - PersonPopup.prototype.hide_ = function() { - this.hideTimerID = -1; - this.popupDetailedElement.style.display = 'none'; - this.visible = false; - this.delayed = false; - }; - - PersonPopup.prototype.handleAnchorMouseMove_ = function(e) { - e = e || window.event; - - var targetElement = (e.target) ? e.target : e.srcElement; - - this.pointerOnTargetElement = true; - - if (targetElement == this.targetElement) { - this.x = this.getPointerX_(e); - this.y = this.getPointerY_(e); - - } else { - this.handleAnchorMouseOver_(e); - } - }; - - PersonPopup.prototype.handleAnchorMouseOver_ = function(e) { - e = e || window.event; - var targetElement = (e.target) ? e.target : e.srcElement; - - if (this.visible && - (targetElement == this.targetElement) && - (this.hideTimerID == -1)) { - return; - } - - this.x = this.getPointerX_(e); - this.y = this.getPointerY_(e); - - if (this.visible && - (targetElement != this.targetElement) && - (this.pointerCloseEnough_(this.x, this.y))) { - return; - } - - if (this.delayed && (this.targetElement == targetElement)) { - return; - } - - this.targetElement = targetElement; - var screenWidth = self.innerWidth; - var screenHeight = self.innerHeight; - var scrollTop = document.documentElement.scrollTop; - var scrollLeft = document.documentElement.scrollLeft; - this.targetWidth = 12.7 * 26; - this.targetHeight = 12.7 * 13; - this.targetPosX = Math.floor(this.x + 15); - this.targetPosY = Math.floor(this.y + 20); - - if (this.showTimerID != -1) { - window.clearTimeout(this.showTimerID); - } - - if (this.visible) { - this.popupDetailedElement.style.display = 'none'; - this.showTimerID = - window.setTimeout(MPP_bind(this.show_, this), 200); - } else { - this.showTimerID = - window.setTimeout(MPP_bind(this.show_, this), 350); - } - - this.delayed = true; - this.pointerOutsidePopup = true; - }; - - PersonPopup.prototype.handleMouseOut_ = function(e) { - if ((this.delayed) || (this.visible)) { - - this.pointerOnTargetElement = false; - - e = e || window.event; - - if (e) { - var from = null; - - if (e.relatedTarget) { - from = e.relatedTarget; - } else if (e.toElement) { - from = e.toElement; - } - - var targetElement = (e.target) ? e.target : e.srcElement; - - try { - if ((from == null) || (from.tagName == 'HTML') || - (from.tagName.substring(0, 3) == 'xul')) { - this.hideTimerID = - window.setTimeout(MPP_bind(this.hide_, this), - 200); - } - } catch(e) { - - } - } - } - }; - - PersonPopup.prototype.handleOnLoad_ = function(e) { - e = e || window.event; - this.popupDetailedElement = document.createElement('div'); - this.popupDetailedElement. - setAttribute('id','popup_detailed'); - this.popupDetailedElement.className = 'popup'; - this.popupDetailedElement.style.display = 'none'; - this.popupDetailedElement.style.position = 'absolute'; - this.popupDetailedElement.innerHTML = ' '; - document.body.appendChild(this.popupDetailedElement); - - document.body.onmousemove = MPP_bind(this.handleMouseMove_, this); - document.body.onmouseout = MPP_bind(this.handleMouseOut_, this); - this.enablePopupsForChildElements(document); - - runTest1(); - }; - - PersonPopup.prototype.enablePopupsForChildElements = function(el) { - var els = el.getElementsByTagName('*'); - - for (var i = 0, item; item = els[i]; i++) { - if (item.className.indexOf('showPersonPopup') != -1) { - item.onmouseover = MPP_bind(this.handleAnchorMouseOver_, this); - item.onmousemove = MPP_bind(this.handleAnchorMouseMove_, this); - } - } - }; - - var personPopup = new PersonPopup(); - </script> - </head> - <body> - <p class="byline"> - <a class="showPersonPopup" id="mouse_target" href="dummy">Mouse Over</a> - </p> - <div id="log_div"> - This test checks any regressions for fix applied in bug 1112795. To test it manually: - <li/> Hover mouse over "Mouse Over" link - <li/> Quickly jump to the yellow box that pops up and select "Select" link - <li/> Move mouse away so that pop up disappears - <li/> Press Ctrl-C - this should not cause any crash - </div> - </body> -</html> diff --git a/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table-expected.txt b/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table-expected.txt deleted file mode 100644 index 7e150aa..0000000 --- a/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table-expected.txt +++ /dev/null @@ -1,12 +0,0 @@ -EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 7 of BODY > HTML > #document -EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification -EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of BODY > HTML > #document to 1 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE -EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification -EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of BODY > HTML > #document to 1 of BODY > HTML > #document toDOMRange:range from 8 of #text > TD > TR > TBODY > TABLE > BODY > HTML > #document to 8 of #text > TD > TR > TBODY > TABLE > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE -EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification -EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > TD > TR > TBODY > TABLE > BODY > HTML > #document to 8 of #text > TD > TR > TBODY > TABLE > BODY > HTML > #document toDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE -EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification -EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 0 of TD > TR > TBODY > TABLE > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE -EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification -cell one cell two - diff --git a/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table.html b/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table.html deleted file mode 100644 index eff7fc8..0000000 --- a/webkit/data/layout_tests/chrome/editing/selection/click-before-and-after-table.html +++ /dev/null @@ -1,77 +0,0 @@ -<script> -if (window.layoutTestController) - layoutTestController.dumpEditingCallbacks(); -</script> -<style> -td { - border: 1px solid #aaa; -} -</style> - -<body onload="runTest()" style="border: 1px solid red;" contenteditable="true"><table id="table" style="margin: 25px; border:10px solid #ccc; padding: 10px;"><tr><td>cell one</td><td>cell two</td></tr></table> -<ul id="console"></ul> -<script> -function log(message) { - var console = document.getElementById("console"); - var li = document.createElement("li"); - var text = document.createTextNode(message); - - console.appendChild(li); - li.appendChild(text); -} -function runTest() { - if (!window.layoutTestController) - log("This test uses the eventSender to do mouse clicks. To run it manually, click after the table, the caret should appear there (and not inside the table). Then click inside the table. The caret should appear inside it."); - else { - window.layoutTestController.dumpAsText(); - var s, x, y, e, top, bottom, left, right; - table = document.getElementById("table"); - - top = table.offsetTop; - left = table.offsetLeft; - bottom = top + table.offsetHeight; - right = left + table.offsetWidth; - - x = right + 5; - y = (top + bottom) / 2; - eventSender.mouseMoveTo(x, y); - eventSender.mouseDown(); - eventSender.mouseUp(); - s = window.getSelection(); - if (!(s.anchorNode == document.body && s.anchorOffset == 1)) - log("Failure: Clicking after the table didn't put the caret after it."); - - x = right - 5; - y = (top + bottom) / 2; - eventSender.leapForward(1000); - eventSender.mouseMoveTo(x, y); - eventSender.mouseDown(); - eventSender.mouseUp(); - s = window.getSelection(); - if (s.anchorNode == document.body) - log("Failure: Clicking inside the table put the caret before or after it."); - - x = left - 5; - y = (top + bottom) / 2; - eventSender.leapForward(1000); - eventSender.mouseMoveTo(x, y); - eventSender.mouseDown(); - eventSender.mouseUp(); - s = window.getSelection(); - if (s.anchorNode != table || s.anchorOffset != 0) - if (!(s.anchorNode == document.body && s.anchorOffset == 0)) - log("Failure: Clicking before the table should be the caret before it."); - - x = left + 5; - y = (top + bottom) / 2; - eventSender.leapForward(1000); - eventSender.mouseMoveTo(x, y); - eventSender.mouseDown(); - eventSender.mouseUp(); - s = window.getSelection(); - if (s.anchorNode == document.body) - log("Failure: Clicking inside the table put the caret before or after it."); - } -} -</script> -</body> diff --git a/webkit/data/layout_tests/chrome/fast/dom/TestApplet.class b/webkit/data/layout_tests/chrome/fast/dom/TestApplet.class Binary files differdeleted file mode 100644 index f757f1f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/TestApplet.class +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc-expected.txt deleted file mode 100644 index cbbddec..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc-expected.txt +++ /dev/null @@ -1,12 +0,0 @@ -This tests that customized properties on window.location and window.navigator won't get lost after a GC. -TEST running. -screen.myProp did not survive GC. -history.myProp survived GC. -locationbar.myProp did not survive GC. -menubar.myProp did not survive GC. -personalbar.myProp did not survive GC. -scrollbars.myProp did not survive GC. -statusbar.myProp did not survive GC. -toolbar.myProp did not survive GC. -location.myProp survived GC. -navigator.myProp survived GC. diff --git a/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc.html b/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc.html deleted file mode 100644 index 5dc2d1f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/Window/customized-property-survives-gc.html +++ /dev/null @@ -1,50 +0,0 @@ -<html> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function CollectGarbage() { - if (window.gc) { - // Chrome code - window.gc(); - } else { - // Safari hack - for (var i = 0; i < 50000; i++) - new Object(); - } -} - - -function check(name) { - if (!window[name]) return; - - window[name].myProp = 10; - CollectGarbage(); - var r = document.getElementById("result"); - if (window[name].myProp) { - r.innerHTML += name + ".myProp survived GC.<br>"; - } else { - r.innerHTML += name + ".myProp did not survive GC.<br>"; - } -} - -function runTest() { - check("screen"); - check("history"); - check("locationbar"); - check("menubar"); - check("personalbar"); - check("scrollbars"); - check("statusbar"); - check("toolbar"); - check("location"); - check("navigator"); -} -</script> - -<body onload="runTest()"> -This tests that customized properties on window.location and window.navigator -won't get lost after a GC. -<div id="result">TEST running.<br></div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/Window/resources/window-properties.js b/webkit/data/layout_tests/chrome/fast/dom/Window/resources/window-properties.js deleted file mode 100644 index 0801dde..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/Window/resources/window-properties.js +++ /dev/null @@ -1,232 +0,0 @@ -var properties = [ - "screen", - "history", - "locationbar", - "menubar", - "personalbar", - "scrollbars", - "statusbar", - "toolbar", - "frameElement", - "offscreenBuffering", - "outerHeight", - "outerWidth", - "innerHeight", - "innerWidth", - "screenX", - "screenY", - "screenLeft", - "screenTop", - "scrollX", - "scrollY", - "pageXOffset", - "pageYOffset", - "closed", - "length", - "name", - "status", - "defaultStatus", - "defaultstatus", - "self", - "window", - "frames", - "opener", - "parent", - "top", - "document", - "devicePixelRatio", - "console", - "StyleSheet", - "CSSStyleSheet", - "CSSValue", - "CSSPrimitiveValue", - "CSSValueList", - "CSSRule", - "CSSCharsetRule", - "CSSFontFaceRule", - "CSSImportRule", - "CSSMediaRule", - "CSSPageRule", - "CSSStyleRule", - "CSSStyleDeclaration", - "MediaList", - "Counter", - "CSSRuleList", - "Rect", - "StyleSheetList", - "DOMException", - "DOMImplementation", - "DocumentFragment", - "Document", - "Node", - "NodeList", - "NamedNodeMap", - "CharacterData", - "Attr", - "Element", - "Text", - "Comment", - "CDATASection", - "DocumentType", - "Notation", - "Entity", - "EntityReference", - "ProcessingInstruction", - "HTMLDocument", - "HTMLElement", - "HTMLAnchorElement", - "HTMLAppletElement", - "HTMLAreaElement", - "HTMLBRElement", - "HTMLBaseElement", - "HTMLBaseFontElement", - "HTMLBlockquoteElement", - "HTMLBodyElement", - "HTMLButtonElement", - "HTMLCanvasElement", - "HTMLDListElement", - "HTMLDirectoryElement", - "HTMLDivElement", - "HTMLEmbedElement", - "HTMLFieldSetElement", - "HTMLFontElement", - "HTMLFormElement", - "HTMLFrameElement", - "HTMLFrameSetElement", - "HTMLHRElement", - "HTMLHeadElement", - "HTMLHeadingElement", - "HTMLHtmlElement", - "HTMLIFrameElement", - "HTMLImageElement", - "HTMLInputElement", - "HTMLIsIndexElement", - "HTMLLIElement", - "HTMLLabelElement", - "HTMLLegendElement", - "HTMLLinkElement", - "HTMLMapElement", - "HTMLMarqueeElement", - "HTMLMenuElement", - "HTMLMetaElement", - "HTMLModElement", - "HTMLOListElement", - "HTMLObjectElement", - "HTMLOptGroupElement", - "HTMLOptionElement", - "HTMLParagraphElement", - "HTMLParamElement", - "HTMLPreElement", - "HTMLQuoteElement", - "HTMLScriptElement", - "HTMLSelectElement", - "HTMLStyleElement", - "HTMLTableCaptionElement", - "HTMLTableCellElement", - "HTMLTableColElement", - "HTMLTableElement", - "HTMLTableRowElement", - "HTMLTableSectionElement", - "HTMLTextAreaElement", - "HTMLTitleElement", - "HTMLUListElement", - "Event", - "KeyboardEvent", - "MouseEvent", - "MutationEvent", - "OverflowEvent", - "ProgressEvent", - "TextEvent", - "UIEvent", - "WheelEvent", - "EventException", - "NodeFilter", - "Range", - "RangeException", - "XMLDocument", - "DOMParser", - "XMLSerializer", - "XMLHttpRequestException", - "XMLHttpRequest", - "XSLTProcessor", - "MessageEvent", - "XPathEvaluator", - "XPathResult", - "XPathException", - "SVGAngle", - "SVGColor", - "SVGException", - "SVGGradientElement", - "SVGLength", - "SVGMarkerElement", - "SVGPaint", - "SVGPathSeg", - "SVGPreserveAspectRatio", - "SVGRenderingIntent", - "SVGTextContentElement", - "SVGTextPathElement", - "SVGTransform", - "SVGUnitTypes", - "navigator", - "clientInformation", - "location", - "onabort", - "onblur", - "onchange", - "onclick", - "ondblclick", - "ondragdrop", - "onerror", - "onfocus", - "onkeydown", - "onkeypress", - "onkeyup", - "onload", - "onmousedown", - "onmousemove", - "onmouseout", - "onmouseover", - "onmouseup", - "onmousewheel", - "onmove", - "onreset", - "onresize", - "onscroll", - "onsearch", - "onselect", - "onsubmit", - "onunload", - "onbeforeunload", - "getSelection", - "focus", - "blur", - "close", - "print", - "stop", - "alert", - "confirm", - "prompt", - "find", - "getComputedStyle", - "getMatchedCSSRules", - "open", - "showModalDialog", - "scrollBy", - "scrollTo", - "scroll", - "moveBy", - "moveTo", - "resizeBy", - "resizeTo", - "clearTimeout", - "clearInterval", - "setTimeout", - "setInterval", - "atob", - "btoa", - "captureEvents", - "releaseEvents", - "toString" -]; - -properties.sort(); diff --git a/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence-2.html b/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence-2.html deleted file mode 100644 index 8430a14..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence-2.html +++ /dev/null @@ -1,52 +0,0 @@ -<html> -<script type="text/javascript" src="resources/window-properties.js"></script> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); -} -var my_input; -var HTMLInputElement_func; - -var win = window.window; -var doc = window.document; - -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function check(name) { - try { - var out = doc.getElementById("MYRESULT"); - var orig_v = win[name]; - my_input.setAttribute("id", name); - var new_v = win[name]; - var r = (orig_v === new_v) ? 'PASS' : 'FAIL'; - out.innerHTML = out.innerHTML + "window." + name + " : " + r + "<br>"; - } catch (e) { - win.alert(name + ' ' + e); - } -} - -function runTest() { - my_input = window.MYINPUT; // this is the original HTMLInputElement - HTMLInputElement_func = window.HTMLInputElement; - - for (var i = 0; i < properties.length; i++) { - check(properties[i]); - } - - if (window.layoutTestController) - layoutTestController.notifyDone(); -} -</script> - -<body onload="runTest()"> -<form> -<input id="MYINPUT" value="mmm" name="qs" type="text"/> -</form> -<div id="MYRESULT"></div> - -</body> -</html> - diff --git a/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.html b/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.html deleted file mode 100644 index 67ef335..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/Window/window-lookup-precedence.html +++ /dev/null @@ -1,47 +0,0 @@ -<html> -<script type="text/javascript" src="resources/window-properties.js"></script> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); -} - -var win = window.window; -var doc = window.document; - -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function check(name) { - var subframe = win.frames[0]; - subframe.name = name; - var out = doc.getElementById("console"); - var v = win[name]; - if (typeof v == 'number') { - v = 'Number'; // cannonicalize numbers. - } else if (/window-lookup-precedence.html/.test(v)) { - v = 'Location'; // cannonicalize current location. - } - out.innerHTML = out.innerHTML + "window."+name + " IS " + v + "<br>"; - -} - -function runTest() { - for (var i = 0; i < properties.length; i++) { - check(properties[i]); - } - - if (window.layoutTestController) - layoutTestController.notifyDone(); -} -</script> - -<body onload="runTest()"> -<iframe src="about:blank"></iframe> - -<div id="console"></div> - -</body> -</html> - diff --git a/webkit/data/layout_tests/chrome/fast/dom/document_write_params-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/document_write_params-expected.txt deleted file mode 100644 index 4f31a76..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/document_write_params-expected.txt +++ /dev/null @@ -1,4 +0,0 @@ -Test purpose: This tests if Chrome can display multiple parameters given in document.write. See bug#885464 -Expected output: AB - -AB diff --git a/webkit/data/layout_tests/chrome/fast/dom/document_write_params.html b/webkit/data/layout_tests/chrome/fast/dom/document_write_params.html deleted file mode 100644 index c280d8b..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/document_write_params.html +++ /dev/null @@ -1,15 +0,0 @@ -<html> -<body> -<p> <b>Test purpose:</b> This tests if Chrome can display multiple parameters given in document.write. See bug#885464 -<br> -<b> Expected output: AB </b></p> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); -var param_one="A"; -var param_two="B"; -document.write(param_one,param_two); -</script> -</body> -</html>
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement-expected.txt deleted file mode 100644 index e780cc8..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -Purpose: To test if the add() method adds an option to a dropdown list. Bug# 806258. - -TEST PASSED diff --git a/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement.html b/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement.html deleted file mode 100644 index 7203cb5..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/dom-add-optionelement.html +++ /dev/null @@ -1,27 +0,0 @@ -<html> -<body > -Purpose: To test if the add() method adds an option to a dropdown list. Bug# 806258. -<br> -<form name="my_form"> - <select name="my_select"> - <option value="a">a</option> - </select> -</form> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -document.my_form.my_select.add(new Option("b", "b"),null); -if (document.my_form.my_select.options[1].value == 'b') -{ - document.write("TEST PASSED"); -} -else{ - document.write("TEST FAILED"); -} -</script> - -</body> -</html> - diff --git a/webkit/data/layout_tests/chrome/fast/dom/dom-constructors-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/dom-constructors-expected.txt deleted file mode 100644 index 6e36d09..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/dom-constructors-expected.txt +++ /dev/null @@ -1,141 +0,0 @@ -This test checks that all but a handful of dom constructors throw exceptions, and the rest return reasonable objects - -Attr: exception -CharacterData: exception -CDATASection: exception -Comment: exception -Document: exception -DocumentFragment: exception -DocumentType: exception -Element: exception -Entity: exception -EntityReference: exception -EventTargetNode: no constructor -HTMLDocument: exception -Node: exception -Notation: exception -ProcessingInstruction: exception -Text: exception -HTMLAnchorElement: exception -HTMLAppletElement: exception -HTMLAreaElement: exception -HTMLBaseElement: exception -HTMLBaseFontElement: exception -HTMLBlockquoteElement: exception -HTMLBodyElement: exception -HTMLBRElement: exception -HTMLButtonElement: exception -HTMLCanvasElement: exception -HTMLDirectoryElement: exception -HTMLDivElement: exception -HTMLDListElement: exception -HTMLEmbedElement: exception -HTMLFieldSetElement: exception -HTMLFontElement: exception -HTMLFormElement: exception -HTMLFrameElement: exception -HTMLFrameSetElement: exception -HTMLHeadingElement: exception -HTMLHeadElement: exception -HTMLHRElement: exception -HTMLHtmlElement: exception -HTMLIFrameElement: exception -HTMLImageElement: exception -HTMLInputElement: exception -HTMLIsIndexElement: exception -HTMLLabelElement: exception -HTMLLegendElement: exception -HTMLLIElement: exception -HTMLLinkElement: exception -HTMLMapElement: exception -HTMLMarqueeElement: exception -HTMLMenuElement: exception -HTMLMetaElement: exception -HTMLModElement: exception -HTMLObjectElement: exception -HTMLOListElement: exception -HTMLOptGroupElement: exception -HTMLOptionElement: exception -HTMLParagraphElement: exception -HTMLParamElement: exception -HTMLPreElement: exception -HTMLQuoteElement: exception -HTMLScriptElement: exception -HTMLSelectElement: exception -HTMLStyleElement: exception -HTMLTableCaptionElement: exception -HTMLTableColElement: exception -HTMLTableElement: exception -HTMLTableSectionElement: exception -HTMLTableCellElement: exception -HTMLTableRowElement: exception -HTMLTextAreaElement: exception -HTMLTitleElement: exception -HTMLUListElement: exception -HTMLElement: exception -BarInfo: no constructor -CanvasGradient: no constructor -CanvasPattern: no constructor -CanvasRenderingContext2D: exception -Clipboard: exception -Console: no constructor -Counter: exception -CSSCharsetRule: exception -CSSFontFaceRule: exception -CSSImportRule: exception -CSSMediaRule: exception -CSSPageRule: exception -CSSPrimitiveValue: exception -CSSRule: exception -CSSRuleList: exception -CSSStyleDeclaration: exception -CSSStyleRule: exception -CSSStyleSheet: exception -CSSValue: exception -CSSValueList: exception -DOMImplementation: exception -DOMParser: [object DOMParser] -DOMSelection: no constructor -DOMWindow: no constructor -Event: exception -History: no constructor -UndetectableHTMLCollection: no constructor -HTMLCollection: exception -HTMLOptionsCollection: no constructor -InspectorController: no constructor -KeyboardEvent: exception -Location: no constructor -MediaList: exception -MimeType: exception -MimeTypeArray: exception -MouseEvent: exception -MutationEvent: exception -NamedNodeMap: exception -Navigator: no constructor -NodeFilter: exception -NodeIterator: no constructor -NodeList: exception -OverflowEvent: exception -Plugin: exception -PluginArray: exception -Range: exception -Rect: exception -RGBColor: no constructor -Screen: no constructor -StyleSheet: exception -StyleSheetList: exception -TextEvent: exception -TreeWalker: no constructor -UIEvent: exception -WheelEvent: exception -XMLHttpRequest: [object XMLHttpRequest] -XMLSerializer: [object XMLSerializer] -XPathEvaluator: [object XPathEvaluator] -XPathExpression: no constructor -XPathNSResolver: no constructor -XPathResult: exception -XSLTProcessor: [object XSLTProcessor] -EventTarget: no constructor -EventListener: no constructor -NPObject: no constructor -Console: no constructor diff --git a/webkit/data/layout_tests/chrome/fast/dom/dom-constructors.html b/webkit/data/layout_tests/chrome/fast/dom/dom-constructors.html deleted file mode 100644 index 752fe4f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/dom-constructors.html +++ /dev/null @@ -1,69 +0,0 @@ -<html> - <head></head> - <body> - -<p>This test checks that all but a handful of dom constructors throw -exceptions, and the rest return reasonable objects</p> - - <script> -if (window.layoutTestController) layoutTestController.dumpAsText(); - -var nodes = [ - 'Attr', 'CharacterData', 'CDATASection', 'Comment', 'Document', - 'DocumentFragment', 'DocumentType', 'Element', 'Entity', - 'EntityReference', 'EventTargetNode', 'HTMLDocument', 'Node', - 'Notation', 'ProcessingInstruction', 'Text', 'HTMLAnchorElement', - 'HTMLAppletElement', 'HTMLAreaElement', 'HTMLBaseElement', - 'HTMLBaseFontElement', 'HTMLBlockquoteElement', 'HTMLBodyElement', - 'HTMLBRElement', 'HTMLButtonElement', 'HTMLCanvasElement', - 'HTMLDirectoryElement', 'HTMLDivElement', 'HTMLDListElement', - 'HTMLEmbedElement', 'HTMLFieldSetElement', 'HTMLFontElement', - 'HTMLFormElement', 'HTMLFrameElement', 'HTMLFrameSetElement', - 'HTMLHeadingElement', 'HTMLHeadElement', 'HTMLHRElement', - 'HTMLHtmlElement', 'HTMLIFrameElement', 'HTMLImageElement', - 'HTMLInputElement', 'HTMLIsIndexElement', 'HTMLLabelElement', - 'HTMLLegendElement', 'HTMLLIElement', 'HTMLLinkElement', - 'HTMLMapElement', 'HTMLMarqueeElement', 'HTMLMenuElement', - 'HTMLMetaElement', 'HTMLModElement', 'HTMLObjectElement', - 'HTMLOListElement', 'HTMLOptGroupElement', 'HTMLOptionElement', - 'HTMLParagraphElement', 'HTMLParamElement', 'HTMLPreElement', - 'HTMLQuoteElement', 'HTMLScriptElement', 'HTMLSelectElement', - 'HTMLStyleElement', 'HTMLTableCaptionElement', - 'HTMLTableColElement', 'HTMLTableElement', - 'HTMLTableSectionElement', 'HTMLTableCellElement', - 'HTMLTableRowElement', 'HTMLTextAreaElement', 'HTMLTitleElement', - 'HTMLUListElement', 'HTMLElement', 'BarInfo', 'CanvasGradient', - 'CanvasPattern', 'CanvasRenderingContext2D', 'Clipboard', 'Console', - 'Counter', 'CSSCharsetRule', 'CSSFontFaceRule', 'CSSImportRule', - 'CSSMediaRule', 'CSSPageRule', 'CSSPrimitiveValue', 'CSSRule', - 'CSSRuleList', 'CSSStyleDeclaration', 'CSSStyleRule', - 'CSSStyleSheet', 'CSSValue', 'CSSValueList', 'DOMImplementation', - 'DOMParser', 'DOMSelection', 'DOMWindow', 'Event', 'History', - 'UndetectableHTMLCollection', 'HTMLCollection', - 'HTMLOptionsCollection', 'InspectorController', 'KeyboardEvent', - 'Location', 'MediaList', 'MimeType', 'MimeTypeArray', 'MouseEvent', - 'MutationEvent', 'NamedNodeMap', 'Navigator', 'NodeFilter', - 'NodeIterator', 'NodeList', 'OverflowEvent', 'Plugin', - 'PluginArray', 'Range', 'Rect', 'RGBColor', 'Screen', 'StyleSheet', - 'StyleSheetList', 'TextEvent', 'TreeWalker', 'UIEvent', - 'WheelEvent', 'XMLHttpRequest', 'XMLSerializer', - 'XPathEvaluator', 'XPathExpression', 'XPathNSResolver', - 'XPathResult', 'XSLTProcessor', 'EventTarget', 'EventListener', - 'NPObject', 'Console' -]; - -function TryAllocate(node) { - var Cons = this[node]; - if (!Cons) return 'no constructor'; - try { return new Cons(); } - catch (e) { return 'exception'; } -} - -for (var i = 0; i < nodes.length; i++) { - var node = nodes[i]; - document.write(node + ': ' + TryAllocate(node) + '</br>'); -} - - </script> - </body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/function_arguments-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/function_arguments-expected.txt deleted file mode 100644 index 55f6cf9..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/function_arguments-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -Test purpose: This tests if [Function.]arguments works in Chrome. See bug# 805211 for more details. - -RESULT: Test PASSED diff --git a/webkit/data/layout_tests/chrome/fast/dom/function_arguments.html b/webkit/data/layout_tests/chrome/fast/dom/function_arguments.html deleted file mode 100644 index 9405762..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/function_arguments.html +++ /dev/null @@ -1,27 +0,0 @@ -<html> - -<body> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function foo(name, value) { - var argc = foo.arguments.length; - if (argc == "5") - { - document.write("<b> RESULT: </b> Test PASSED"); - } - else{ - document.write("<b> RESULT: </b> Test FAILED"); - } - } -</script> -<p> <b>Test purpose:</b> This tests if [Function.]arguments works in Chrome. See bug# 805211 for more details. </p> - <div id="abc"></div> - <script> - - foo("From", "%E5%8C%97%E4%BA%AC", 360, '/', "kooxoo.com"); - </script> - </body> - -</HTML> diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability-expected.txt deleted file mode 100644 index 0ebe520..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability-expected.txt +++ /dev/null @@ -1,12 +0,0 @@ -This test verified that only document.all is undetectable. Other HTMLCollections should be detectable. - -Passed: document.all is undetectable. -Passed: document.images is detectable. -Passed: document.applets is detectable. -Passed: document.links is detectable. -Passed: document.forms is detectable. -Passed: document.anchors is detectable. -Passed: document.embeds is detectable. -Passed: document.plugins is detectable. -Passed: document.scripts is detectable. - diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability.html b/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability.html deleted file mode 100644 index 821ad291..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmlcollection-detectability.html +++ /dev/null @@ -1,43 +0,0 @@ -<html> -<body> - -<p> -This test verified that only document.all is undetectable. Other -HTMLCollections should be detectable. -</p> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); -} - -function shouldBeUndetectable(name) { - if (document[name]) { - document.write("Failed: document." + name + " is detectable.<br>"); - } else { - document.write("Passed: document." + name + " is undetectable.<br>"); - } -}; - -function shouldBeDetectable(name) { - if (document[name]) { - document.write("Passed: document." + name + " is detectable.<br>"); - } else { - document.write("Failed: document." + name + " is detectable.<br>"); - } -}; - -var undetectable = ["all"]; -var detectable = ["images", "applets", "links", "forms", "anchors", - "embeds", "plugins", "scripts"]; - -for (var i = 0; i < undetectable.length; i++) { - shouldBeUndetectable(undetectable[i]); -} - -for (var i = 0; i < detectable.length; i++) { - shouldBeDetectable(detectable[i]); -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter-expected.txt deleted file mode 100644 index 0ab99cb..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter-expected.txt +++ /dev/null @@ -1,4 +0,0 @@ -This test verifies that elements can be fetched by index from HTMLFormElements. - -HTMLInputElement -Passed. diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter.html b/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter.html deleted file mode 100644 index f2d4568..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmlformelement-indexed-getter.html +++ /dev/null @@ -1,27 +0,0 @@ -<html> -<body> - -<p> -This test verifies that elements can be fetched by index from HTMLFormElements. -</p> - -<form id='f'> - <input type="radio" name="a" value="a">HTMLInputElement</input> -</form> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); -} - -var f = document.getElementById('f'); - -if (f[0]) { - document.write("Passed."); -} else { - document.write("Failed."); -} -</script> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document-expected.txt deleted file mode 100644 index 57b6590..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -This tests that an old Safari extension, HTMLIFrameElement.document. If HTMLIFrameElement.document exists, it should be an alias of HTMLIFrameElement.contentDocument. - -If the test pass, it should display PASSED after the the iframe box - - -This test: PASSED diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html b/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html deleted file mode 100644 index 9fe999a..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmliframeelement-document.html +++ /dev/null @@ -1,27 +0,0 @@ -<HTML> - -<script> - if (window.layoutTestController) - layoutTestController.dumpAsText(); -</script> - - <BODY> - <p>This tests that an old Safari extension, HTMLIFrameElement.document. -If HTMLIFrameElement.document exists, it should be an alias of HTMLIFrameElement.contentDocument. </p> - - <p>If the test pass, it should display PASSED after the the iframe box</p> - <iframe id='iframe_'></iframe> - <div id='console'>Text should be replaced on success</div> - - </BODY> - -<script> - var iframe = document.getElementById('iframe_'); - var console = document.getElementById('console'); - var txt = 'This test: PASSED'; - if (iframe.document && iframe.document !== iframe.contentWindow.document) - txt = 'This test: FAILED!!!'; - console.innerHTML = txt; -</script> - -</HTML> diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection-expected.txt deleted file mode 100644 index 1820a19..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -Purpose: To add few select options dynamically and pass the test if the length is correct. Bug#803364. - -TEST PASSED diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html b/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html deleted file mode 100644 index ec05be8..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection.html +++ /dev/null @@ -1,27 +0,0 @@ -<HTML> -<BODY> -Purpose: To add few select options dynamically and pass the test if the length is correct. Bug#803364. -<form name="QuickForm"> -<select name="mknm" > -<option value="">======= -</option> -</select> -</FORM> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -document.QuickForm.mknm.options[ 1 ] = new Option( "A"); -document.QuickForm.mknm.options[ 2 ] = new Option( "B"); -if (QuickForm.mknm.options.length =='3') { - document.write("TEST PASSED"); -} -else -{ - document.write("TEST FAILED"); -} -</script> - -</BODY> -</HTML> diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function-expected.txt deleted file mode 100644 index 660b40f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function-expected.txt +++ /dev/null @@ -1 +0,0 @@ - PASS diff --git a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html b/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html deleted file mode 100644 index 4e0209f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/htmloptionscollection_call_as_function.html +++ /dev/null @@ -1,32 +0,0 @@ -<html> -<body> - -<select id='s'> - <option id='o0'>o0</option> - <option id='o1'>o1</option> -</select> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); -} - -var select = document.getElementById('s'); -var options = select.options; - -try { - var o0 = options(0); - var o1 = options(1); - if (document.getElementById('o0') == o0 && - document.getElementById('o1') == o1) { - document.write('PASS'); - } else { - document.write('FAIL'); - } -} catch(e) { - document.write('FAIL: threw exception ' + e); -} -</script> - -</body> -</html>
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls-expected.txt deleted file mode 100644 index 19f1c37..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -Requires Java plugin been installed. -This tests that calling functions on Java Applet works. -TEST PASSED! diff --git a/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls.html b/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls.html deleted file mode 100644 index c169218..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/java-applet-calls.html +++ /dev/null @@ -1,27 +0,0 @@ -<HTML> -<HEAD> -<TITLE>Call Java from JS</TITLE> -<script type="text/javascript"> -if (window.layoutTestController) - layoutTestController.dumpAsText(); -function runTest() { - try { - document.testapplet.setString("abcdefg"); - if (document.testapplet.getString() == "abcdefg") - document.getElementById("result").innerHTML = "TEST PASSED!"; - } catch (e) { - } -} -</script> - -</HEAD> -<BODY onload="runTest()"> -Requires Java plugin been installed.<br> -This tests that calling functions on Java Applet works.<br> -<div id="result">FAIL</div> -<APPLET CODEBASE="." CODE="TestApplet.class" WIDTH=1 HEIGHT=1 NAME="testapplet"> -</APPLET> -</BODY> -</HTML> - - diff --git a/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash.html b/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash.html deleted file mode 100644 index 7a368c7..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/navigator-cookieEnabled-no-crash.html +++ /dev/null @@ -1,23 +0,0 @@ -<html> -<script> -if (window.layoutTestController) { - window.layoutTestController.dumpAsText(); - window.layoutTestController.waitUntilDone(); -} - -function run_test() { - var nav = window.navigator; - document.getElementsByTagName("form")[0].submit(); - nav.cookieEnabled; - window.layoutTestController.notifyDone(); -} -</script> -<body onload="run_test()"> -<form action="about:blank" method="GET"></form> -This test navigator.cookieEnabled does not crash the browser after -the frame navigates away from the original page. <br> - -You should not see this page if the test passes.<br> -<div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check-expected.txt deleted file mode 100644 index 9704461..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check-expected.txt +++ /dev/null @@ -1 +0,0 @@ -The test passes if Chrome does not crash. See issue 1117082. diff --git a/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check.html b/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check.html deleted file mode 100644 index 84f2392..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/no-init-context-in-access-check.html +++ /dev/null @@ -1,29 +0,0 @@ -<html> -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); -} - -var target; -function check_blank() { - var x = target.location.private; - if (window.layoutTestController) - layoutTestController.notifyDone(); -} - -function reload_blank() { - target = window.frames[0]; - target.location = "about:blank"; - window.setTimeout("check_blank()", 100); -} - -window.setTimeout("reload_blank()", 100); - -</script> -<body> -The test passes if Chrome does not crash. See issue 1117082. -<br> -<iframe src="about:blank"></iframe> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name-expected.txt deleted file mode 100644 index 342f128..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name-expected.txt +++ /dev/null @@ -1 +0,0 @@ -PASS: Items can be retrieved by name on node lists. diff --git a/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name.html b/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name.html deleted file mode 100644 index edd1b0f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/nodelist-item-with-name.html +++ /dev/null @@ -1,21 +0,0 @@ -<html> -<body> -<div id='div1'></div> -<div id='div2'></div> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -var NodeList = document.getElementsByTagName('div'); -var div1 = NodeList.div1; -var div2 = NodeList.div2; -if (div1 && div2) { - document.write('PASS: Items can be retrieved by name on node lists.'); -} else { - document.write('FAIL: Items cannot be retrieved by name on node lists.'); -} -</script> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/object_collection-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/object_collection-expected.txt deleted file mode 100644 index 429eeea..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/object_collection-expected.txt +++ /dev/null @@ -1,7 +0,0 @@ -Test purpose: Multiple radio buttons/checkboxes with the same name should map to 'object:collection' when accessed thru document.form.name. Bug#805063 - -Radio button: Male Female -Checkbox: 1 -Checkbox: 1 2 -Result: -Test Passed diff --git a/webkit/data/layout_tests/chrome/fast/dom/object_collection.html b/webkit/data/layout_tests/chrome/fast/dom/object_collection.html deleted file mode 100644 index 245cb7c..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/object_collection.html +++ /dev/null @@ -1,52 +0,0 @@ -<html> -<head> - -<script> - if (window.layoutTestController) - layoutTestController.dumpAsText(); - - function check() { - var node = document.getElementById("result"); - - if ((typeof document.f.cb0 == 'undefined') && - (document.f.cb1.nodeName == 'INPUT') && - (document.f.cb2.length == 2) && - (document.f.rb2.length == 2)) { - node.innerHTML = "Test Passed"; - } else { - node.innerHTML = "Test Failed"; - } -} -</script> -</head> - -<body onload="check()"> -<p> - <b>Test purpose: </b> - Multiple radio buttons/checkboxes with the same name should map to - 'object:collection' when accessed thru document.form.name. Bug#805063 -</p> -<form name="f"> - <ul> - <li>Radio button: - <input type="radio" name="rb2"/>Male - <input type="radio" name="rb2"/>Female - </li> - - <li>Checkbox: - <input type="checkbox" name="cb1"/>1 - </li> - - <li>Checkbox: - <input type="checkbox" name="cb2"/>1 - <input type="checkbox" name="cb2"/>2 - </li> - </ul> -</form> - -<B>Result:</B><div id="result"></div> - -</body> - -</HTML> - diff --git a/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice-expected.txt deleted file mode 100644 index a1dae55..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice-expected.txt +++ /dev/null @@ -1,5 +0,0 @@ -Makes sure an inline "load" event does not fire twice. This may occur if -an inline event listener is not removed prior to being re-added in the case of -multiple body nodes in the document. - -This test has succeeded. diff --git a/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html b/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html deleted file mode 100644 index 691d83c..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/onload-fires-twice.html +++ /dev/null @@ -1,22 +0,0 @@ -<html>
-<head>
- <!-- any unknown element in HEAD will trigger creation of a BODY node -->
- <anytag>
- <script type="text/javascript">
- if (window.layoutTestController)
- layoutTestController.dumpAsText()
-
- var count = 2;
- function testDoubleLoad() {
- if (!--count)
- document.getElementById("status").innerHTML = "failed";
- }
- </script>
-</head>
-<body onload="testDoubleLoad()">
- <p>Makes sure an inline "load" event does not fire twice. This may occur if<br>
- an inline event listener is not removed prior to being re-added in the case of<br>
- multiple body nodes in the document.</p>
- <p>This test has <span id="status">succeeded</span>.
-</body>
-</html>
diff --git a/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision-expected.txt deleted file mode 100644 index be896907..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision-expected.txt +++ /dev/null @@ -1 +0,0 @@ -PASS: onload function gets called. diff --git a/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision.html b/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision.html deleted file mode 100644 index 4da7e35..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/onload-name-collision.html +++ /dev/null @@ -1,14 +0,0 @@ -<html> -<body onload="onload()"> -<div id='result'>FAIL: this text should be replaced on success.<div> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); -// See http://b/issue?id=944690 -function onload() { - var result = document.getElementById('result'); - result.innerHTML='PASS: onload function gets called.'; -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/resources/1.gif b/webkit/data/layout_tests/chrome/fast/dom/resources/1.gif Binary files differdeleted file mode 100644 index 92b3f5b..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/resources/1.gif +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fast/dom/resources/wrapper-context-inner.html b/webkit/data/layout_tests/chrome/fast/dom/resources/wrapper-context-inner.html deleted file mode 100644 index 7c9a315..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/resources/wrapper-context-inner.html +++ /dev/null @@ -1,24 +0,0 @@ -<html> -<body onload="notifyLoaded()"> -<script> -function notifyLoaded() { - top.innerHasLoaded(); -} - -// After the top frame has accessed the document of this frame, we -// test that the document wrapper was created in this context and -// not in the top context. -function runTest() { - var paragraph = document.createElement('p'); - if (HTMLElement.prototype.isPrototypeOf(paragraph)) { - top.writeOutput("PASS"); - } else { - top.writeOutput("FAIL"); - } - if (window.layoutTestController) { - layoutTestController.notifyDone(); - } -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/script_lineno-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/script_lineno-expected.txt deleted file mode 100644 index 8585fdd..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/script_lineno-expected.txt +++ /dev/null @@ -1 +0,0 @@ -CONSOLE MESSAGE: line 7: Uncaught fabaceae diff --git a/webkit/data/layout_tests/chrome/fast/dom/script_lineno.html b/webkit/data/layout_tests/chrome/fast/dom/script_lineno.html deleted file mode 100644 index f327e6e..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/script_lineno.html +++ /dev/null @@ -1,14 +0,0 @@ -<html> -<body> -<script> -if (window.layoutTestController) layoutTestController.dumpAsText(); - -function foo() { - throw 'fabaceae'; -} -</script> -<script> - foo(); -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash-expected.txt deleted file mode 100644 index c85c1ef..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -CONSOLE MESSAGE: line 13: Uncaught Error: HIERARCHY_REQUEST_ERR: DOM Exception 3 -Test that setting invalid values to dom properties does not crash the browser. -go! diff --git a/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash.html b/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash.html deleted file mode 100644 index 689c8bf..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/set-document-body-no-crash.html +++ /dev/null @@ -1,22 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"> -<html> -<head> -<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> -<title>Wee!</title> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -window.onload = function() { - // We are not a Node ! - var nodelist = document.getElementsByName('sillypants'); - document.body = nodelist; -} -</script> -</head> -<body> -Test that setting invalid values to dom properties does not crash the browser. -<br> -<a href="#" onclick="void(); return false;">go!</a> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash-expected.txt deleted file mode 100644 index 69320b7..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash-expected.txt +++ /dev/null @@ -1,3 +0,0 @@ -CONSOLE MESSAGE: line 15: Uncaught Error: NOT_FOUND_ERR: DOM Exception 8 -Test that setting invalid values to dom properties does not crash the browser. -go! diff --git a/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash.html b/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash.html deleted file mode 100644 index aae4636..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/set-table-head-no-crash.html +++ /dev/null @@ -1,24 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN"> -<html> -<head> -<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> -<title>Wee!</title> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -window.onload = function() { - // We are not a Node ! - var nodelist = document.getElementsByName('sillypants'); - var table = document.createElement('table'); - // Pow! cast a NodeList into a HTMLTableSectionElement - table.tHead = nodelist; -} -</script> -</head> -<body> -Test that setting invalid values to dom properties does not crash the browser. -<br> -<a href="#" onclick="void(); return false;">go!</a> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/typecheck-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/typecheck-expected.txt deleted file mode 100644 index ed4faf8..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/typecheck-expected.txt +++ /dev/null @@ -1,18 +0,0 @@ -This test checks the behavior of dom operations when called on non-dom or incompatible receivers with non-dom or incompatible arguments. - -DOMImplementation: [object DOMImplementation] -Node::appendChild(DOMImplementation): Error: NOT_FOUND_ERR: DOM Exception 8 -Node::appendChild(String): Error: NOT_FOUND_ERR: DOM Exception 8 -Node::appendChild(undefined): Error: NOT_FOUND_ERR: DOM Exception 8 -Node::isSameNode(DOMImplementation) = false -Node::isSameNode(String) = false -Node::isSameNode(undefined) = false -Node::lookupPrefix(DOMImplementation) = null -Node::lookupPrefix(undefined) = null -Node::cloneNode(DOMImplementation) = [object HTMLDivElement] -Select::add(DOMImplementation, DOMImplementation) = undefined -Select::add(DOMImplementation, Option) = undefined -Select::add(Option, DOMImplementation) = undefined -Select::add(undefined, undefined) = undefined -Select::add(undefined, Option) = undefined -Select::add(Option, undefined) = undefined diff --git a/webkit/data/layout_tests/chrome/fast/dom/typecheck.html b/webkit/data/layout_tests/chrome/fast/dom/typecheck.html deleted file mode 100644 index 595b6f8..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/typecheck.html +++ /dev/null @@ -1,99 +0,0 @@ -<html> - <head></head> - <body> - -<p> -This test checks the behavior of dom operations when called on non-dom -or incompatible receivers with non-dom or incompatible arguments. -</p> - - <script> -if (window.layoutTestController) layoutTestController.dumpAsText(); - -function addResult(str) { - var option = document.createElement("option"); - option.innerHTML = str; - document.getElementById("results").appendChild(option); -} - -function trySuspect(name, fun) { - try { - result = fun(); - document.write(name + " = " + result + "<br />"); - } catch (e) { - document.write(name + ": " + e + "<br />"); - } -} - -var aDOMImplementation = document.implementation; -var aSelect = document.createElement("select"); -var anOption = document.createElement("option"); - -document.write("DOMImplementation: " + aDOMImplementation + "<br />"); -var aNode = document.createElement("div"); -var aSecondNode = document.createElement("div"); -aNode.appendChild(aSecondNode); - -trySuspect("Node::appendChild(DOMImplementation)", function () { - return aNode.appendChild(aDOMImplementation); -}); - -trySuspect("Node::appendChild(String)", function () { - return aNode.appendChild("knort"); -}); - -trySuspect("Node::appendChild(undefined)", function () { - return aNode.appendChild(void 0); -}); - -trySuspect("Node::isSameNode(DOMImplementation)", function () { - return aNode.isSameNode(aDOMImplementation); -}); - -trySuspect("Node::isSameNode(String)", function () { - return aNode.isSameNode("foo"); -}); - -trySuspect("Node::isSameNode(undefined)", function () { - return aNode.isSameNode(void 0); -}); - -trySuspect("Node::lookupPrefix(DOMImplementation)", function () { - return aNode.lookupPrefix(aDOMImplementation); -}); - -trySuspect("Node::lookupPrefix(undefined)", function () { - return aNode.lookupPrefix(void 0); -}); - -trySuspect("Node::cloneNode(DOMImplementation)", function () { - return aNode.cloneNode(aDOMImplementation); -}); - -trySuspect("Select::add(DOMImplementation, DOMImplementation)", function () { - return aSelect.add(aDOMImplementation, aDOMImplementation); -}); - -trySuspect("Select::add(DOMImplementation, Option)", function () { - return aSelect.add(aDOMImplementation, anOption); -}); - -trySuspect("Select::add(Option, DOMImplementation)", function () { - return aSelect.add(anOption, aDOMImplementation); -}); - -trySuspect("Select::add(undefined, undefined)", function () { - return aSelect.add(void 0, void 0); -}); - -trySuspect("Select::add(undefined, Option)", function () { - return aSelect.add(void 0, anOption); -}); - -trySuspect("Select::add(Option, undefined)", function () { - return aSelect.add(anOption, void 0); -}); - - </script> - </body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash-expected.txt deleted file mode 100644 index 8b13789..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash-expected.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash.html b/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash.html deleted file mode 100644 index 619cf37..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-collection-length-no-crash.html +++ /dev/null @@ -1,22 +0,0 @@ -<HTML> -<script> -if (window.layoutTestController) { - window.layoutTestController.dumpAsText(); - window.layoutTestController.waitUntilDone(); -} - -function run_test() { - var f = window.frames; - document.getElementsByTagName("form")[0].submit(); - f.length; - window.layoutTestController.notifyDone(); -} - -</script> -<BODY onload="run_test()"> -<form action="about:blank" method="GET"></form> -This test windows.frames.length does not crash the browser after -the frame navigates away from the current page.<br> -You should not see this message if the test passes.<br> -</BODY> -</HTML> diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential-expected.txt deleted file mode 100644 index 7ef22e9..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential-expected.txt +++ /dev/null @@ -1 +0,0 @@ -PASS diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential.html b/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential.html deleted file mode 100644 index 76d6f8d..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-frames-self-referential.html +++ /dev/null @@ -1,14 +0,0 @@ -<html> -<body> -<script> -if (window.layoutTestController) - window.layoutTestController.dumpAsText(); - -</script> -<div id='console'></div> -<script> -var console = document.getElementById('console'); -console.innerHTML = window.frames == window ? 'PASS' : 'FAIL'; -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict-expected.txt deleted file mode 100644 index 7ef22e9..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict-expected.txt +++ /dev/null @@ -1 +0,0 @@ -PASS diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict.html b/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict.html deleted file mode 100644 index 2b9d154..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-image-name-conflict.html +++ /dev/null @@ -1,22 +0,0 @@ -<html> -<head> -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -function runTest() { - try { - new Image(); - document.getElementById("result").innerHTML = 'PASS'; - } catch (e) { - // failed - } -} -</script> -</head> - -<body onload="runTest()"> -<img id="Image" src="resources/1.gif" /> -<div id="result">FAIL</div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence-expected.txt deleted file mode 100644 index 7ef22e9..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence-expected.txt +++ /dev/null @@ -1 +0,0 @@ -PASS diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence.html b/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence.html deleted file mode 100644 index 200ec01..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-location-precedence.html +++ /dev/null @@ -1,19 +0,0 @@ -<html> -<script> -if (window.layoutTestController) - window.layoutTestController.dumpAsText(); - -function test() { - var console = document.getElementById("result"); - console.innerHTML = - (window.location instanceof HTMLInputElement) ? "FAIL" : "PASS"; -} -</script> - -<body onload="test()"> -<form> -<input id="location" value="mmm" name="qs" type="text"/> -</form> -<div id="result"></div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null-expected.txt deleted file mode 100644 index 4f365b0..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null-expected.txt +++ /dev/null @@ -1,7 +0,0 @@ -ALERT: 1 -ALERT: 2 -ALERT: 3 -ALERT: 4 -ALERT: 5 -ALERT: 6 -ALERT: done diff --git a/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null.html b/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null.html deleted file mode 100644 index 5fe9914..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/window-postmessage-null.html +++ /dev/null @@ -1,36 +0,0 @@ -<html> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); -} - -function onmessage(evt) { - alert(evt.data); - - if (evt.data == 'done' && window.layoutTestController) - layoutTestController.notifyDone(); -} - -function run_test() { - window.addEventListener('message', onmessage); - try { - window.postMessage('1', 1, '*') - window.postMessage('2', "", '*') - window.postMessage('3', window, '*') - window.postMessage('4', { x: 1 }, '*') - window.postMessage('5', null, '*') - window.postMessage('6', void 0, '*') - window.postMessage('done', '*') - } catch(e) { - alert(e); - if (window.layoutTestController) - layoutTestController.notifyDone(); - } -} - -</script> -<body onload='run_test()'> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/wrapper-context-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/wrapper-context-expected.txt deleted file mode 100644 index 7723cae..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/wrapper-context-expected.txt +++ /dev/null @@ -1,6 +0,0 @@ -Tests that node wrappers are created in the context to which they belong. You should see PASS below. -Running... - -PASS - - diff --git a/webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html b/webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html deleted file mode 100644 index 31b39ad..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/wrapper-context.html +++ /dev/null @@ -1,31 +0,0 @@ -<html> -<body> -Tests that node wrappers are created in the context to which they belong. -You should see PASS below. -<br> -<div id="output"></div> -<iframe id="inner" src="resources/wrapper-context-inner.html"></iframe> -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); - layoutTestController.waitUntilDone(); -} - -function writeOutput(s) { - var paragraph = document.createElement("p"); - paragraph.innerHTML = s; - document.getElementById("output").appendChild(paragraph); -} - -// Used to create the document wrapper. -var innerDocument; - -// Once the inner frame has loaded, run the test. -function innerHasLoaded() { - writeOutput("Running..."); - innerDocument = inner.document; - inner.runTest(); -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.checksum b/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.checksum deleted file mode 100644 index e328ad9..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -044635e495a5b2849d28928a1acd113a
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.png b/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.png Binary files differdeleted file mode 100644 index d31a09f..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.txt b/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.txt deleted file mode 100644 index 32dd12c..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc-expected.txt +++ /dev/null @@ -1,17 +0,0 @@ -layer at (0,0) size 800x600 - RenderView at (0,0) size 800x600 -layer at (0,0) size 800x600 - RenderBlock {HTML} at (0,0) size 800x600 - RenderBody {BODY} at (8,8) size 784x584 - RenderText {#text} at (0,0) size 20x18 - text run at (0,0) width 20: "bar" - RenderBR {BR} at (20,14) size 0x0 - RenderText {#text} at (0,18) size 20x18 - text run at (0,18) width 20: "bar" - RenderBR {BR} at (20,32) size 0x0 - RenderText {#text} at (0,36) size 20x18 - text run at (0,36) width 20: "bar" - RenderBR {BR} at (20,50) size 0x0 - RenderText {#text} at (0,54) size 20x18 - text run at (0,54) width 20: "bar" - RenderBR {BR} at (20,68) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc.html b/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc.html deleted file mode 100644 index eee66da..0000000 --- a/webkit/data/layout_tests/chrome/fast/dom/xmlhttprequest-gc.html +++ /dev/null @@ -1,27 +0,0 @@ -<html> - -<script> -function state_change() { - document.write(this.foo+'<br>'); -} -function run_test() { - var xhr = new XMLHttpRequest(); - xhr.foo = 'bar'; - xhr.onreadystatechange = state_change; - xhr.open("GET", "xmlhttprequest-gc.html", true); - xhr.send(null); - - xhr = null; - if (window.GCController) { - window.GCController.collect(); - } else { - // allocate 4000 objects to trigger GC - for (var i = 0; i < 4000; i++) - new Object(); - } -} - -</script> -<body onload='run_test()'> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering-expected.txt b/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering-expected.txt deleted file mode 100644 index 7a94cda..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering-expected.txt +++ /dev/null @@ -1,7 +0,0 @@ -[Click target] -Right click in the red box: the event sequence should match (mousedown, mouseup, contextmenu) - -Dispatched event mousedown (button=2) -Dispatched event mouseup (button=2) -Dispatched event contextmenu (button=2) - diff --git a/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering.html b/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering.html deleted file mode 100644 index 932ad89..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/contextmenu-event-ordering.html +++ /dev/null @@ -1,71 +0,0 @@ -<html> - <head> - <title>Context menu event ordering</title> - <style> - #clickTarget { - width: 100%; - height: 50px; - background: red; - text-align: center; - } - </style> - <script> - - function startTest() { - var target = document.getElementById("clickTarget"); - - traceMouseEvent(target, "click"); - traceMouseEvent(target, "mousedown"); - traceMouseEvent(target, "mouseup"); - traceMouseEvent(target, "contextmenu"); - - if (window.layoutTestController) { - window.layoutTestController.dumpAsText(); - - // Right click inside clickTarget - window.eventSender.mouseMoveTo(20,20); - window.eventSender.mouseDown(2 /*right button*/); - window.eventSender.mouseUp(2 /*right button*/); - } - } - - function traceMouseEvent(target, eventName) { - - var callback = function(e) { - log ("Dispatched event " + e.type + " (button=" + e.button + ")"); - - if (eventName == "contextmenu") { - // Prevent the context menu from being displayed. - e.returnValue = false; - if (e.stopPropagation) { - e.stopPropagation(); - } - } - }; - - if (target.addEventListener) { - target.addEventListener(eventName, callback, false); - } else if (target.attachEvent) /*Internet Explorer*/ { - target.attachEvent("on" + eventName, callback); - } else { - log ("!!! Failed registering " + eventName); - } - } - - function log(msg) { - var log = document.getElementById("log"); - log.appendChild(document.createTextNode(msg)); - log.appendChild(document.createElement("br")); - } - </script> - </head> - - <body onload="startTest()"> - <div id=clickTarget> - [Click target] - </div> - - <p>Right click in the red box: the event sequence should match (mousedown, mouseup, contextmenu)</p> - <pre id=log></pre> - </body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash-expected.txt b/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash-expected.txt deleted file mode 100644 index 92ee21b..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash-expected.txt +++ /dev/null @@ -1 +0,0 @@ -This tests that setting an event handler to a document element created by document.implementation.createDocument does not crash the renderer. diff --git a/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash.html b/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash.html deleted file mode 100644 index 3d542b7..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/document-no-frame-events-no-crash.html +++ /dev/null @@ -1,17 +0,0 @@ -<html> -<body> -This tests that setting an event handler to a document element created by -document.implementation.createDocument does not crash the renderer. - -<script> -if (window.layoutTestController) { - window.layoutTestController.dumpAsText(); -} - -if (document.implementation && document.implementation.createDocument) { - var doc = document.implementation.createDocument('', '', null); - doc.onload = function() { }; -} -</script> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/events/nested-window-event-expected.txt b/webkit/data/layout_tests/chrome/fast/events/nested-window-event-expected.txt deleted file mode 100644 index 9ff69c9d..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/nested-window-event-expected.txt +++ /dev/null @@ -1,2 +0,0 @@ -This tests window.event was kept the same when nested event handling was called. You should see 'PASS' if the test passes. -PASS diff --git a/webkit/data/layout_tests/chrome/fast/events/nested-window-event.html b/webkit/data/layout_tests/chrome/fast/events/nested-window-event.html deleted file mode 100644 index 1ceded8..0000000 --- a/webkit/data/layout_tests/chrome/fast/events/nested-window-event.html +++ /dev/null @@ -1,25 +0,0 @@ -<html> - -<script> -if (window.layoutTestController) { - layoutTestController.dumpAsText(); -} - -function run_test() { - var old_evt = window.event; - var xhr = new XMLHttpRequest(); - xhr.onreadystatechange = function() {} - xhr.open("GET", "test.html"); - xhr.send(); - // window.event should exist, and same as old_evt. - document.getElementById('console').innerHTML = - old_evt == window.event ? 'PASS' : 'FAIL'; -} -</script> -<body onload="run_test()"> -This tests window.event was kept the same when nested event -handling was called. You should see 'PASS' if the test passes. -<br> -<div id='console'></div> -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler-expected.txt b/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler-expected.txt deleted file mode 100644 index 7456b9a..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler-expected.txt +++ /dev/null @@ -1,4 +0,0 @@ -This tests that a locally scoped variable in an event handler of a form takes precedence over items of form. - - -This test: PASSED! diff --git a/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler.html b/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler.html deleted file mode 100644 index 77d3da6..0000000 --- a/webkit/data/layout_tests/chrome/fast/forms/var-name-conflict-in-form-event-handler.html +++ /dev/null @@ -1,28 +0,0 @@ -<html> -<body> -<p>This tests that a locally scoped variable in an event handler of a form -takes precedence over items of form. - -<form> -<select onChange="var value = this.value;this.options[0].selected=true; if(value=='C') document.getElementById('sourceViewDiv').innerHTML='This test: PASSED!'"> -<option value="A">A</option> -<option value="B">B</option> -<option value="C">C</option> -</select> - -<div id='sourceViewDiv'>This test: FAILED</div> - -<script> -if (window.layoutTestController) - layoutTestController.dumpAsText(); - -var x=document.getElementsByTagName('select')[0]; -x.options[2].selected=true; -var evt = document.createEvent("HTMLEvents"); -evt.initEvent("change", true, true); -x.dispatchEvent(evt); -</script> -</form> - -</body> -</html> diff --git a/webkit/data/layout_tests/chrome/fonts/arial-expected.checksum b/webkit/data/layout_tests/chrome/fonts/arial-expected.checksum deleted file mode 100644 index e0d29b3..0000000 --- a/webkit/data/layout_tests/chrome/fonts/arial-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -fd2158c6f85f98a5ca2be58e44cfb6dc
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/arial-expected.png b/webkit/data/layout_tests/chrome/fonts/arial-expected.png Binary files differdeleted file mode 100644 index b8ae5a1..0000000 --- a/webkit/data/layout_tests/chrome/fonts/arial-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/arial-expected.txt b/webkit/data/layout_tests/chrome/fonts/arial-expected.txt deleted file mode 100644 index 2071d91..0000000 --- a/webkit/data/layout_tests/chrome/fonts/arial-expected.txt +++ /dev/null @@ -1,865 +0,0 @@ -layer at (0,0) size 785x5602 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x5602 - RenderBlock {HTML} at (0,0) size 785x5602 - RenderBody {BODY} at (8,8) size 769x5578 - RenderBlock (anonymous) at (0,0) size 769x1786 - RenderInline {FONT} at (0,0) size 64x1785 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,19) size 20x18 - text run at (0,19) width 20: "!!!!" - RenderBR {BR} at (20,34) size 0x0 - RenderText {#text} at (0,38) size 24x18 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,53) size 0x0 - RenderText {#text} at (0,57) size 36x18 - text run at (0,57) width 36: "####" - RenderBR {BR} at (36,72) size 0x0 - RenderText {#text} at (0,76) size 36x18 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,91) size 0x0 - RenderText {#text} at (0,95) size 56x18 - text run at (0,95) width 56: "%%%%" - RenderBR {BR} at (56,110) size 0x0 - RenderText {#text} at (0,114) size 44x18 - text run at (0,114) width 44: "&&&&" - RenderBR {BR} at (44,129) size 0x0 - RenderText {#text} at (0,133) size 12x18 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,148) size 0x0 - RenderText {#text} at (0,152) size 20x18 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,167) size 0x0 - RenderText {#text} at (0,171) size 20x18 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,186) size 0x0 - RenderText {#text} at (0,190) size 24x18 - text run at (0,190) width 24: "****" - RenderBR {BR} at (24,205) size 0x0 - RenderText {#text} at (0,209) size 36x18 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,224) size 0x0 - RenderText {#text} at (0,228) size 16x18 - text run at (0,228) width 16: ",,,," - RenderBR {BR} at (16,243) size 0x0 - RenderText {#text} at (0,247) size 20x18 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,262) size 0x0 - RenderText {#text} at (0,266) size 16x18 - text run at (0,266) width 16: "...." - RenderBR {BR} at (16,281) size 0x0 - RenderText {#text} at (0,285) size 16x18 - text run at (0,285) width 16: "////" - RenderBR {BR} at (16,300) size 0x0 - RenderText {#text} at (0,304) size 36x18 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,319) size 0x0 - RenderText {#text} at (0,323) size 36x18 - text run at (0,323) width 36: "1111" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "2222" - RenderBR {BR} at (36,357) size 0x0 - RenderText {#text} at (0,361) size 36x18 - text run at (0,361) width 36: "3333" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x18 - text run at (0,380) width 36: "4444" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,399) size 36x18 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,414) size 0x0 - RenderText {#text} at (0,418) size 36x18 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,433) size 0x0 - RenderText {#text} at (0,437) size 36x18 - text run at (0,437) width 36: "7777" - RenderBR {BR} at (36,452) size 0x0 - RenderText {#text} at (0,456) size 36x18 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,471) size 0x0 - RenderText {#text} at (0,475) size 36x18 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,490) size 0x0 - RenderText {#text} at (0,494) size 16x18 - text run at (0,494) width 16: "::::" - RenderBR {BR} at (16,509) size 0x0 - RenderText {#text} at (0,513) size 16x18 - text run at (0,513) width 16: ";;;;" - RenderBR {BR} at (16,528) size 0x0 - RenderText {#text} at (0,532) size 36x18 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,547) size 0x0 - RenderText {#text} at (0,551) size 36x18 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,566) size 0x0 - RenderText {#text} at (0,570) size 36x18 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,585) size 0x0 - RenderText {#text} at (0,589) size 36x18 - text run at (0,589) width 36: "????" - RenderBR {BR} at (36,604) size 0x0 - RenderText {#text} at (0,608) size 64x18 - text run at (0,608) width 64: "@@@@" - RenderBR {BR} at (64,623) size 0x0 - RenderText {#text} at (0,627) size 44x18 - text run at (0,627) width 44: "AAAA" - RenderBR {BR} at (44,642) size 0x0 - RenderText {#text} at (0,646) size 44x18 - text run at (0,646) width 44: "BBBB" - RenderBR {BR} at (44,661) size 0x0 - RenderText {#text} at (0,665) size 48x18 - text run at (0,665) width 48: "CCCC" - RenderBR {BR} at (48,680) size 0x0 - RenderText {#text} at (0,684) size 48x18 - text run at (0,684) width 48: "DDDD" - RenderBR {BR} at (48,699) size 0x0 - RenderText {#text} at (0,703) size 44x18 - text run at (0,703) width 44: "EEEE" - RenderBR {BR} at (44,718) size 0x0 - RenderText {#text} at (0,722) size 40x18 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,741) size 48x18 - text run at (0,741) width 48: "GGGG" - RenderBR {BR} at (48,756) size 0x0 - RenderText {#text} at (0,760) size 44x18 - text run at (0,760) width 44: "HHHH" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,779) size 12x18 - text run at (0,779) width 12: "IIII" - RenderBR {BR} at (12,794) size 0x0 - RenderText {#text} at (0,798) size 32x18 - text run at (0,798) width 32: "JJJJ" - RenderBR {BR} at (32,813) size 0x0 - RenderText {#text} at (0,817) size 44x18 - text run at (0,817) width 44: "KKKK" - RenderBR {BR} at (44,832) size 0x0 - RenderText {#text} at (0,836) size 36x18 - text run at (0,836) width 36: "LLLL" - RenderBR {BR} at (36,851) size 0x0 - RenderText {#text} at (0,855) size 52x18 - text run at (0,855) width 52: "MMMM" - RenderBR {BR} at (52,870) size 0x0 - RenderText {#text} at (0,874) size 44x18 - text run at (0,874) width 44: "NNNN" - RenderBR {BR} at (44,889) size 0x0 - RenderText {#text} at (0,893) size 48x18 - text run at (0,893) width 48: "OOOO" - RenderBR {BR} at (48,908) size 0x0 - RenderText {#text} at (0,912) size 44x18 - text run at (0,912) width 44: "PPPP" - RenderBR {BR} at (44,927) size 0x0 - RenderText {#text} at (0,931) size 48x18 - text run at (0,931) width 48: "QQQQ" - RenderBR {BR} at (48,946) size 0x0 - RenderText {#text} at (0,950) size 44x18 - text run at (0,950) width 44: "RRRR" - RenderBR {BR} at (44,965) size 0x0 - RenderText {#text} at (0,969) size 44x18 - text run at (0,969) width 44: "SSSS" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,988) size 36x18 - text run at (0,988) width 36: "TTTT" - RenderBR {BR} at (36,1003) size 0x0 - RenderText {#text} at (0,1007) size 44x18 - text run at (0,1007) width 44: "UUUU" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "VVVV" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1045) size 60x18 - text run at (0,1045) width 60: "WWWW" - RenderBR {BR} at (60,1060) size 0x0 - RenderText {#text} at (0,1064) size 44x18 - text run at (0,1064) width 44: "XXXX" - RenderBR {BR} at (44,1079) size 0x0 - RenderText {#text} at (0,1083) size 36x18 - text run at (0,1083) width 36: "YYYY" - RenderBR {BR} at (36,1098) size 0x0 - RenderText {#text} at (0,1102) size 36x18 - text run at (0,1102) width 36: "ZZZZ" - RenderBR {BR} at (36,1117) size 0x0 - RenderText {#text} at (0,1121) size 16x18 - text run at (0,1121) width 16: "[[[[" - RenderBR {BR} at (16,1136) size 0x0 - RenderText {#text} at (0,1140) size 16x18 - text run at (0,1140) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1155) size 0x0 - RenderText {#text} at (0,1159) size 16x18 - text run at (0,1159) width 16: "]]]]" - RenderBR {BR} at (16,1174) size 0x0 - RenderText {#text} at (0,1178) size 28x18 - text run at (0,1178) width 28: "^^^^" - RenderBR {BR} at (28,1193) size 0x0 - RenderText {#text} at (0,1197) size 36x18 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1212) size 0x0 - RenderText {#text} at (0,1216) size 20x18 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1231) size 0x0 - RenderText {#text} at (0,1235) size 36x18 - text run at (0,1235) width 36: "aaaa" - RenderBR {BR} at (36,1250) size 0x0 - RenderText {#text} at (0,1254) size 36x18 - text run at (0,1254) width 36: "bbbb" - RenderBR {BR} at (36,1269) size 0x0 - RenderText {#text} at (0,1273) size 32x18 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1288) size 0x0 - RenderText {#text} at (0,1292) size 36x18 - text run at (0,1292) width 36: "dddd" - RenderBR {BR} at (36,1307) size 0x0 - RenderText {#text} at (0,1311) size 36x18 - text run at (0,1311) width 36: "eeee" - RenderBR {BR} at (36,1326) size 0x0 - RenderText {#text} at (0,1330) size 16x18 - text run at (0,1330) width 16: "ffff" - RenderBR {BR} at (16,1345) size 0x0 - RenderText {#text} at (0,1349) size 36x18 - text run at (0,1349) width 36: "gggg" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 32x18 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1383) size 0x0 - RenderText {#text} at (0,1387) size 16x18 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1402) size 0x0 - RenderText {#text} at (0,1406) size 12x18 - text run at (0,1406) width 12: "jjjj" - RenderBR {BR} at (12,1421) size 0x0 - RenderText {#text} at (0,1425) size 32x18 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1440) size 0x0 - RenderText {#text} at (0,1444) size 12x18 - text run at (0,1444) width 12: "llll" - RenderBR {BR} at (12,1459) size 0x0 - RenderText {#text} at (0,1463) size 52x18 - text run at (0,1463) width 52: "mmmm" - RenderBR {BR} at (52,1478) size 0x0 - RenderText {#text} at (0,1482) size 32x18 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1497) size 0x0 - RenderText {#text} at (0,1501) size 36x18 - text run at (0,1501) width 36: "oooo" - RenderBR {BR} at (36,1516) size 0x0 - RenderText {#text} at (0,1520) size 36x18 - text run at (0,1520) width 36: "pppp" - RenderBR {BR} at (36,1535) size 0x0 - RenderText {#text} at (0,1539) size 36x18 - text run at (0,1539) width 36: "qqqq" - RenderBR {BR} at (36,1554) size 0x0 - RenderText {#text} at (0,1558) size 20x18 - text run at (0,1558) width 20: "rrrr" - RenderBR {BR} at (20,1573) size 0x0 - RenderText {#text} at (0,1577) size 32x18 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1592) size 0x0 - RenderText {#text} at (0,1596) size 16x18 - text run at (0,1596) width 16: "tttt" - RenderBR {BR} at (16,1611) size 0x0 - RenderText {#text} at (0,1615) size 32x18 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1630) size 0x0 - RenderText {#text} at (0,1634) size 28x18 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1649) size 0x0 - RenderText {#text} at (0,1653) size 44x18 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1668) size 0x0 - RenderText {#text} at (0,1672) size 28x18 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1687) size 0x0 - RenderText {#text} at (0,1691) size 28x18 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1706) size 0x0 - RenderText {#text} at (0,1710) size 28x18 - text run at (0,1710) width 28: "zzzz" - RenderBR {BR} at (28,1725) size 0x0 - RenderText {#text} at (0,1729) size 20x18 - text run at (0,1729) width 20: "{{{{" - RenderBR {BR} at (20,1744) size 0x0 - RenderText {#text} at (0,1748) size 12x18 - text run at (0,1748) width 12: "||||" - RenderBR {BR} at (12,1763) size 0x0 - RenderText {#text} at (0,1767) size 20x18 - text run at (0,1767) width 20: "}}}}" - RenderBR {BR} at (20,1782) size 0x0 - RenderBlock (anonymous) at (0,1802) size 769x1880 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,75) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,335) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,355) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,375) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,435) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,455) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,475) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,495) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,515) size 0x0 - RenderText {#text} at (0,520) size 24x19 - text run at (0,520) width 24: "::::" - RenderBR {BR} at (24,535) size 0x0 - RenderText {#text} at (0,540) size 24x19 - text run at (0,540) width 24: ";;;;" - RenderBR {BR} at (24,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 40x19 - text run at (0,620) width 40: "????" - RenderBR {BR} at (40,635) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 48x19 - text run at (0,680) width 48: "BBBB" - RenderBR {BR} at (48,695) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,835) size 0x0 - RenderText {#text} at (0,840) size 36x19 - text run at (0,840) width 36: "JJJJ" - RenderBR {BR} at (36,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1315) size 0x0 - RenderText {#text} at (0,1320) size 40x19 - text run at (0,1320) width 40: "bbbb" - RenderBR {BR} at (40,1335) size 0x0 - RenderText {#text} at (0,1340) size 36x19 - text run at (0,1340) width 36: "cccc" - RenderBR {BR} at (36,1355) size 0x0 - RenderText {#text} at (0,1360) size 40x19 - text run at (0,1360) width 40: "dddd" - RenderBR {BR} at (40,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 40x19 - text run at (0,1420) width 40: "gggg" - RenderBR {BR} at (40,1435) size 0x0 - RenderText {#text} at (0,1440) size 40x19 - text run at (0,1440) width 40: "hhhh" - RenderBR {BR} at (40,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1555) size 0x0 - RenderText {#text} at (0,1560) size 40x19 - text run at (0,1560) width 40: "nnnn" - RenderBR {BR} at (40,1575) size 0x0 - RenderText {#text} at (0,1580) size 40x19 - text run at (0,1580) width 40: "oooo" - RenderBR {BR} at (40,1595) size 0x0 - RenderText {#text} at (0,1600) size 40x19 - text run at (0,1600) width 40: "pppp" - RenderBR {BR} at (40,1615) size 0x0 - RenderText {#text} at (0,1620) size 40x19 - text run at (0,1620) width 40: "qqqq" - RenderBR {BR} at (40,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 36x19 - text run at (0,1660) width 36: "ssss" - RenderBR {BR} at (36,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 40x19 - text run at (0,1700) width 40: "uuuu" - RenderBR {BR} at (40,1715) size 0x0 - RenderText {#text} at (0,1720) size 36x19 - text run at (0,1720) width 36: "vvvv" - RenderBR {BR} at (36,1735) size 0x0 - RenderText {#text} at (0,1740) size 52x19 - text run at (0,1740) width 52: "wwww" - RenderBR {BR} at (52,1755) size 0x0 - RenderText {#text} at (0,1760) size 36x19 - text run at (0,1760) width 36: "xxxx" - RenderBR {BR} at (36,1775) size 0x0 - RenderText {#text} at (0,1780) size 36x19 - text run at (0,1780) width 36: "yyyy" - RenderBR {BR} at (36,1795) size 0x0 - RenderText {#text} at (0,1800) size 36x19 - text run at (0,1800) width 36: "zzzz" - RenderBR {BR} at (36,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,3698) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,3698) size 769x1880 - RenderInline {FONT} at (0,0) size 64x1878 - RenderText {#text} at (0,0) size 0x0 - RenderInline {I} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,16) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,36) size 0x0 - RenderText {#text} at (0,40) size 24x19 - text run at (0,40) width 24: "\"\"\"\"" - RenderBR {BR} at (24,56) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,76) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,96) size 0x0 - RenderText {#text} at (0,100) size 56x19 - text run at (0,100) width 56: "%%%%" - RenderBR {BR} at (56,116) size 0x0 - RenderText {#text} at (0,120) size 44x19 - text run at (0,120) width 44: "&&&&" - RenderBR {BR} at (44,136) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,156) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,196) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,216) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,236) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,256) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,276) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,296) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,316) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,336) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,396) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,416) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,436) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,456) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,476) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,496) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,516) size 0x0 - RenderText {#text} at (0,520) size 16x19 - text run at (0,520) width 16: "::::" - RenderBR {BR} at (16,536) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,556) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,576) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,596) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,616) size 0x0 - RenderText {#text} at (0,620) size 36x19 - text run at (0,620) width 36: "????" - RenderBR {BR} at (36,636) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,656) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,676) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,696) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,736) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,756) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,776) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,796) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,816) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,836) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,856) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,876) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,896) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,916) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,936) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,956) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,976) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,996) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1016) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1036) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1056) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1076) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1096) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1116) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1136) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1156) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1176) size 0x0 - RenderText {#text} at (0,1180) size 16x19 - text run at (0,1180) width 16: "[[[[" - RenderBR {BR} at (16,1196) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1216) size 0x0 - RenderText {#text} at (0,1220) size 16x19 - text run at (0,1220) width 16: "]]]]" - RenderBR {BR} at (16,1236) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1256) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1276) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1296) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1316) size 0x0 - RenderText {#text} at (0,1320) size 36x19 - text run at (0,1320) width 36: "bbbb" - RenderBR {BR} at (36,1336) size 0x0 - RenderText {#text} at (0,1340) size 32x19 - text run at (0,1340) width 32: "cccc" - RenderBR {BR} at (32,1356) size 0x0 - RenderText {#text} at (0,1360) size 36x19 - text run at (0,1360) width 36: "dddd" - RenderBR {BR} at (36,1376) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1396) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1416) size 0x0 - RenderText {#text} at (0,1420) size 36x19 - text run at (0,1420) width 36: "gggg" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1456) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1476) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1496) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1516) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1536) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1556) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1576) size 0x0 - RenderText {#text} at (0,1580) size 36x19 - text run at (0,1580) width 36: "oooo" - RenderBR {BR} at (36,1596) size 0x0 - RenderText {#text} at (0,1600) size 36x19 - text run at (0,1600) width 36: "pppp" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 36x19 - text run at (0,1620) width 36: "qqqq" - RenderBR {BR} at (36,1636) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1656) size 0x0 - RenderText {#text} at (0,1660) size 32x19 - text run at (0,1660) width 32: "ssss" - RenderBR {BR} at (32,1676) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1696) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1716) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1736) size 0x0 - RenderText {#text} at (0,1740) size 36x19 - text run at (0,1740) width 36: "wwww" - RenderBR {BR} at (36,1756) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1776) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1796) size 0x0 - RenderText {#text} at (0,1800) size 28x19 - text run at (0,1800) width 28: "zzzz" - RenderBR {BR} at (28,1816) size 0x0 - RenderText {#text} at (0,1820) size 20x19 - text run at (0,1820) width 20: "{{{{" - RenderBR {BR} at (20,1836) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1856) size 0x0 - RenderText {#text} at (0,1860) size 20x19 - text run at (0,1860) width 20: "}}}}" - RenderBR {BR} at (20,1876) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/arial.html b/webkit/data/layout_tests/chrome/fonts/arial.html deleted file mode 100644 index 8473f68..0000000 --- a/webkit/data/layout_tests/chrome/fonts/arial.html +++ /dev/null @@ -1,56 +0,0 @@ -<font face=Arial> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.checksum b/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.checksum deleted file mode 100644 index 64f73cc..0000000 --- a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -d5bbc0e951ab0c78f937b9f505c8a77f
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.png b/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.png Binary files differdeleted file mode 100644 index 18a398b..0000000 --- a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.txt b/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.txt deleted file mode 100644 index 78848ed..0000000 --- a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x8720 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x8720 - RenderBlock {HTML} at (0,0) size 785x8720 - RenderBody {BODY} at (8,8) size 769x8696 - RenderBlock (anonymous) at (0,0) size 769x2162 - RenderInline {FONT} at (0,0) size 68x2162 - RenderText {#text} at (0,0) size 20x23 - text run at (0,0) width 20: " " - RenderBR {BR} at (20,18) size 0x0 - RenderText {#text} at (0,23) size 16x23 - text run at (0,23) width 16: "!!!!" - RenderBR {BR} at (16,41) size 0x0 - RenderText {#text} at (0,46) size 32x23 - text run at (0,46) width 32: "\"\"\"\"" - RenderBR {BR} at (32,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 36x23 - text run at (0,230) width 36: "****" - RenderBR {BR} at (36,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 36x23 - text run at (0,345) width 36: "////" - RenderBR {BR} at (36,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 28x23 - text run at (0,690) width 28: ">>>>" - RenderBR {BR} at (28,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 60x23 - text run at (0,1035) width 60: "MMMM" - RenderBR {BR} at (60,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 44x23 - text run at (0,1150) width 44: "RRRR" - RenderBR {BR} at (44,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 44x23 - text run at (0,1311) width 44: "YYYY" - RenderBR {BR} at (44,1329) size 0x0 - RenderText {#text} at (0,1334) size 48x23 - text run at (0,1334) width 48: "ZZZZ" - RenderBR {BR} at (48,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 32x23 - text run at (0,1380) width 32: "\\\\\\\\" - RenderBR {BR} at (32,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 32x23 - text run at (0,1426) width 32: "^^^^" - RenderBR {BR} at (32,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 40x23 - text run at (0,1518) width 40: "bbbb" - RenderBR {BR} at (40,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 32x23 - text run at (0,1587) width 32: "eeee" - RenderBR {BR} at (32,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 32x23 - text run at (0,1656) width 32: "hhhh" - RenderBR {BR} at (32,1674) size 0x0 - RenderText {#text} at (0,1679) size 20x23 - text run at (0,1679) width 20: "iiii" - RenderBR {BR} at (20,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 20x23 - text run at (0,1748) width 20: "llll" - RenderBR {BR} at (20,1766) size 0x0 - RenderText {#text} at (0,1771) size 44x23 - text run at (0,1771) width 44: "mmmm" - RenderBR {BR} at (44,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 28x23 - text run at (0,1909) width 28: "ssss" - RenderBR {BR} at (28,1927) size 0x0 - RenderText {#text} at (0,1932) size 28x23 - text run at (0,1932) width 28: "tttt" - RenderBR {BR} at (28,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 - 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 40x23 - text run at (0,1518) width 40: "bbbb" - RenderBR {BR} at (40,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 36x23 - text run at (0,1633) width 36: "gggg" - RenderBR {BR} at (36,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 32x23 - text run at (0,46) width 32: "\"\"\"\"" - RenderBR {BR} at (32,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 36x23 - text run at (0,230) width 36: "****" - RenderBR {BR} at (36,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 36x23 - text run at (0,345) width 36: "////" - RenderBR {BR} at (36,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 28x23 - text run at (0,690) width 28: ">>>>" - RenderBR {BR} at (28,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 60x23 - text run at (0,1035) width 60: "MMMM" - RenderBR {BR} at (60,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 44x23 - text run at (0,1150) width 44: "RRRR" - RenderBR {BR} at (44,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 44x23 - text run at (0,1311) width 44: "YYYY" - RenderBR {BR} at (44,1329) size 0x0 - RenderText {#text} at (0,1334) size 48x23 - text run at (0,1334) width 48: "ZZZZ" - RenderBR {BR} at (48,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 32x23 - text run at (0,1380) width 32: "\\\\\\\\" - RenderBR {BR} at (32,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 32x23 - text run at (0,1426) width 32: "^^^^" - RenderBR {BR} at (32,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 40x23 - text run at (0,1518) width 40: "bbbb" - RenderBR {BR} at (40,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 32x23 - text run at (0,1587) width 32: "eeee" - RenderBR {BR} at (32,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 32x23 - text run at (0,1656) width 32: "hhhh" - RenderBR {BR} at (32,1674) size 0x0 - RenderText {#text} at (0,1679) size 20x23 - text run at (0,1679) width 20: "iiii" - RenderBR {BR} at (20,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 20x23 - text run at (0,1748) width 20: "llll" - RenderBR {BR} at (20,1766) size 0x0 - RenderText {#text} at (0,1771) size 44x23 - text run at (0,1771) width 44: "mmmm" - RenderBR {BR} at (44,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 28x23 - text run at (0,1909) width 28: "ssss" - RenderBR {BR} at (28,1927) size 0x0 - RenderText {#text} at (0,1932) size 28x23 - text run at (0,1932) width 28: "tttt" - RenderBR {BR} at (28,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 (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 40x23 - text run at (0,1518) width 40: "bbbb" - RenderBR {BR} at (40,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 36x23 - text run at (0,1633) width 36: "gggg" - RenderBR {BR} at (36,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/chrome/fonts/comic-sans-ms.html b/webkit/data/layout_tests/chrome/fonts/comic-sans-ms.html deleted file mode 100644 index ae9cca2..0000000 --- a/webkit/data/layout_tests/chrome/fonts/comic-sans-ms.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face="Comic Sans MS"> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/courier-expected.checksum b/webkit/data/layout_tests/chrome/fonts/courier-expected.checksum deleted file mode 100644 index 88d7819..0000000 --- a/webkit/data/layout_tests/chrome/fonts/courier-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -eb7ddb63fb1eccc6a2bc9fafb9519d2f
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/courier-expected.png b/webkit/data/layout_tests/chrome/fonts/courier-expected.png Binary files differdeleted file mode 100644 index e8a005b..0000000 --- a/webkit/data/layout_tests/chrome/fonts/courier-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/courier-expected.txt b/webkit/data/layout_tests/chrome/fonts/courier-expected.txt deleted file mode 100644 index 65c01c8..0000000 --- a/webkit/data/layout_tests/chrome/fonts/courier-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7028 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7028 - RenderBlock {HTML} at (0,0) size 785x7028 - RenderBody {BODY} at (8,8) size 769x7004 - 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 769x3494 - 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,13) size 0x0 - RenderText {#text} at (0,18) size 40x18 - text run at (0,18) width 40: "!!!!" - RenderBR {BR} at (40,31) size 0x0 - RenderText {#text} at (0,36) size 40x18 - text run at (0,36) width 40: "\"\"\"\"" - RenderBR {BR} at (40,49) size 0x0 - RenderText {#text} at (0,54) size 40x18 - text run at (0,54) width 40: "####" - RenderBR {BR} at (40,67) size 0x0 - RenderText {#text} at (0,72) size 40x18 - text run at (0,72) width 40: "$$$$" - RenderBR {BR} at (40,85) size 0x0 - RenderText {#text} at (0,90) size 40x18 - text run at (0,90) width 40: "%%%%" - RenderBR {BR} at (40,103) size 0x0 - RenderText {#text} at (0,108) size 40x18 - text run at (0,108) width 40: "&&&&" - RenderBR {BR} at (40,121) size 0x0 - RenderText {#text} at (0,126) size 40x18 - text run at (0,126) width 40: "''''" - RenderBR {BR} at (40,139) size 0x0 - RenderText {#text} at (0,144) size 40x18 - text run at (0,144) width 40: "((((" - RenderBR {BR} at (40,157) size 0x0 - RenderText {#text} at (0,162) size 40x18 - text run at (0,162) width 40: "))))" - RenderBR {BR} at (40,175) size 0x0 - RenderText {#text} at (0,180) size 40x18 - text run at (0,180) width 40: "****" - RenderBR {BR} at (40,193) size 0x0 - RenderText {#text} at (0,198) size 40x18 - text run at (0,198) width 40: "++++" - RenderBR {BR} at (40,211) size 0x0 - RenderText {#text} at (0,216) size 40x18 - text run at (0,216) width 40: ",,,," - RenderBR {BR} at (40,229) size 0x0 - RenderText {#text} at (0,234) size 40x18 - text run at (0,234) width 40: "----" - RenderBR {BR} at (40,247) size 0x0 - RenderText {#text} at (0,252) size 40x18 - text run at (0,252) width 40: "...." - RenderBR {BR} at (40,265) size 0x0 - RenderText {#text} at (0,270) size 40x18 - text run at (0,270) width 40: "////" - RenderBR {BR} at (40,283) size 0x0 - RenderText {#text} at (0,288) size 40x18 - text run at (0,288) width 40: "0000" - RenderBR {BR} at (40,301) size 0x0 - RenderText {#text} at (0,306) size 40x18 - text run at (0,306) width 40: "1111" - RenderBR {BR} at (40,319) size 0x0 - RenderText {#text} at (0,324) size 40x18 - text run at (0,324) width 40: "2222" - RenderBR {BR} at (40,337) size 0x0 - RenderText {#text} at (0,342) size 40x18 - text run at (0,342) width 40: "3333" - RenderBR {BR} at (40,355) size 0x0 - RenderText {#text} at (0,360) size 40x18 - text run at (0,360) width 40: "4444" - RenderBR {BR} at (40,373) size 0x0 - RenderText {#text} at (0,378) size 40x18 - text run at (0,378) width 40: "5555" - RenderBR {BR} at (40,391) size 0x0 - RenderText {#text} at (0,396) size 40x18 - text run at (0,396) width 40: "6666" - RenderBR {BR} at (40,409) size 0x0 - RenderText {#text} at (0,414) size 40x18 - text run at (0,414) width 40: "7777" - RenderBR {BR} at (40,427) size 0x0 - RenderText {#text} at (0,432) size 40x18 - text run at (0,432) width 40: "8888" - RenderBR {BR} at (40,445) size 0x0 - RenderText {#text} at (0,450) size 40x18 - text run at (0,450) width 40: "9999" - RenderBR {BR} at (40,463) size 0x0 - RenderText {#text} at (0,468) size 40x18 - text run at (0,468) width 40: "::::" - RenderBR {BR} at (40,481) size 0x0 - RenderText {#text} at (0,486) size 40x18 - text run at (0,486) width 40: ";;;;" - RenderBR {BR} at (40,499) size 0x0 - RenderText {#text} at (0,504) size 40x18 - text run at (0,504) width 40: "<<<<" - RenderBR {BR} at (40,517) size 0x0 - RenderText {#text} at (0,522) size 40x18 - text run at (0,522) width 40: "====" - RenderBR {BR} at (40,535) size 0x0 - RenderText {#text} at (0,540) size 40x18 - text run at (0,540) width 40: ">>>>" - RenderBR {BR} at (40,553) size 0x0 - RenderText {#text} at (0,558) size 40x18 - text run at (0,558) width 40: "????" - RenderBR {BR} at (40,571) size 0x0 - RenderText {#text} at (0,576) size 40x18 - text run at (0,576) width 40: "@@@@" - RenderBR {BR} at (40,589) size 0x0 - RenderText {#text} at (0,594) size 40x18 - text run at (0,594) width 40: "AAAA" - RenderBR {BR} at (40,607) size 0x0 - RenderText {#text} at (0,612) size 40x18 - text run at (0,612) width 40: "BBBB" - RenderBR {BR} at (40,625) size 0x0 - RenderText {#text} at (0,630) size 40x18 - text run at (0,630) width 40: "CCCC" - RenderBR {BR} at (40,643) size 0x0 - RenderText {#text} at (0,648) size 40x18 - text run at (0,648) width 40: "DDDD" - RenderBR {BR} at (40,661) size 0x0 - RenderText {#text} at (0,666) size 40x18 - text run at (0,666) width 40: "EEEE" - RenderBR {BR} at (40,679) size 0x0 - RenderText {#text} at (0,684) size 40x18 - text run at (0,684) width 40: "FFFF" - RenderBR {BR} at (40,697) size 0x0 - RenderText {#text} at (0,702) size 40x18 - text run at (0,702) width 40: "GGGG" - RenderBR {BR} at (40,715) size 0x0 - RenderText {#text} at (0,720) size 40x18 - text run at (0,720) width 40: "HHHH" - RenderBR {BR} at (40,733) size 0x0 - RenderText {#text} at (0,738) size 40x18 - text run at (0,738) width 40: "IIII" - RenderBR {BR} at (40,751) size 0x0 - RenderText {#text} at (0,756) size 40x18 - text run at (0,756) width 40: "JJJJ" - RenderBR {BR} at (40,769) size 0x0 - RenderText {#text} at (0,774) size 40x18 - text run at (0,774) width 40: "KKKK" - RenderBR {BR} at (40,787) size 0x0 - RenderText {#text} at (0,792) size 40x18 - text run at (0,792) width 40: "LLLL" - RenderBR {BR} at (40,805) size 0x0 - RenderText {#text} at (0,810) size 40x18 - text run at (0,810) width 40: "MMMM" - RenderBR {BR} at (40,823) size 0x0 - RenderText {#text} at (0,828) size 40x18 - text run at (0,828) width 40: "NNNN" - RenderBR {BR} at (40,841) size 0x0 - RenderText {#text} at (0,846) size 40x18 - text run at (0,846) width 40: "OOOO" - RenderBR {BR} at (40,859) size 0x0 - RenderText {#text} at (0,864) size 40x18 - text run at (0,864) width 40: "PPPP" - RenderBR {BR} at (40,877) size 0x0 - RenderText {#text} at (0,882) size 40x18 - text run at (0,882) width 40: "QQQQ" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 40x18 - text run at (0,900) width 40: "RRRR" - RenderBR {BR} at (40,913) size 0x0 - RenderText {#text} at (0,918) size 40x18 - text run at (0,918) width 40: "SSSS" - RenderBR {BR} at (40,931) size 0x0 - RenderText {#text} at (0,936) size 40x18 - text run at (0,936) width 40: "TTTT" - RenderBR {BR} at (40,949) size 0x0 - RenderText {#text} at (0,954) size 40x18 - text run at (0,954) width 40: "UUUU" - RenderBR {BR} at (40,967) size 0x0 - RenderText {#text} at (0,972) size 40x18 - text run at (0,972) width 40: "VVVV" - RenderBR {BR} at (40,985) size 0x0 - RenderText {#text} at (0,990) size 40x18 - text run at (0,990) width 40: "WWWW" - RenderBR {BR} at (40,1003) size 0x0 - RenderText {#text} at (0,1008) size 40x18 - text run at (0,1008) width 40: "XXXX" - RenderBR {BR} at (40,1021) size 0x0 - RenderText {#text} at (0,1026) size 40x18 - text run at (0,1026) width 40: "YYYY" - RenderBR {BR} at (40,1039) size 0x0 - RenderText {#text} at (0,1044) size 40x18 - text run at (0,1044) width 40: "ZZZZ" - RenderBR {BR} at (40,1057) size 0x0 - RenderText {#text} at (0,1062) size 40x18 - text run at (0,1062) width 40: "[[[[" - RenderBR {BR} at (40,1075) size 0x0 - RenderText {#text} at (0,1080) size 40x18 - text run at (0,1080) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1093) size 0x0 - RenderText {#text} at (0,1098) size 40x18 - text run at (0,1098) width 40: "]]]]" - RenderBR {BR} at (40,1111) size 0x0 - RenderText {#text} at (0,1116) size 40x18 - text run at (0,1116) width 40: "^^^^" - RenderBR {BR} at (40,1129) size 0x0 - RenderText {#text} at (0,1134) size 40x18 - text run at (0,1134) width 40: "____" - RenderBR {BR} at (40,1147) size 0x0 - RenderText {#text} at (0,1152) size 40x18 - text run at (0,1152) width 40: "````" - RenderBR {BR} at (40,1165) size 0x0 - RenderText {#text} at (0,1170) size 40x18 - text run at (0,1170) width 40: "aaaa" - RenderBR {BR} at (40,1183) size 0x0 - RenderText {#text} at (0,1188) size 40x18 - text run at (0,1188) width 40: "bbbb" - RenderBR {BR} at (40,1201) size 0x0 - RenderText {#text} at (0,1206) size 40x18 - text run at (0,1206) width 40: "cccc" - RenderBR {BR} at (40,1219) size 0x0 - RenderText {#text} at (0,1224) size 40x18 - text run at (0,1224) width 40: "dddd" - RenderBR {BR} at (40,1237) size 0x0 - RenderText {#text} at (0,1242) size 40x18 - text run at (0,1242) width 40: "eeee" - RenderBR {BR} at (40,1255) size 0x0 - RenderText {#text} at (0,1260) size 40x18 - text run at (0,1260) width 40: "ffff" - RenderBR {BR} at (40,1273) size 0x0 - RenderText {#text} at (0,1278) size 40x18 - text run at (0,1278) width 40: "gggg" - RenderBR {BR} at (40,1291) size 0x0 - RenderText {#text} at (0,1296) size 40x18 - text run at (0,1296) width 40: "hhhh" - RenderBR {BR} at (40,1309) size 0x0 - RenderText {#text} at (0,1314) size 40x18 - text run at (0,1314) width 40: "iiii" - RenderBR {BR} at (40,1327) size 0x0 - RenderText {#text} at (0,1332) size 40x18 - text run at (0,1332) width 40: "jjjj" - RenderBR {BR} at (40,1345) size 0x0 - RenderText {#text} at (0,1350) size 40x18 - text run at (0,1350) width 40: "kkkk" - RenderBR {BR} at (40,1363) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "llll" - RenderBR {BR} at (40,1381) size 0x0 - RenderText {#text} at (0,1386) size 40x18 - text run at (0,1386) width 40: "mmmm" - RenderBR {BR} at (40,1399) size 0x0 - RenderText {#text} at (0,1404) size 40x18 - text run at (0,1404) width 40: "nnnn" - RenderBR {BR} at (40,1417) size 0x0 - RenderText {#text} at (0,1422) size 40x18 - text run at (0,1422) width 40: "oooo" - RenderBR {BR} at (40,1435) size 0x0 - RenderText {#text} at (0,1440) size 40x18 - text run at (0,1440) width 40: "pppp" - RenderBR {BR} at (40,1453) size 0x0 - RenderText {#text} at (0,1458) size 40x18 - text run at (0,1458) width 40: "qqqq" - RenderBR {BR} at (40,1471) size 0x0 - RenderText {#text} at (0,1476) size 40x18 - text run at (0,1476) width 40: "rrrr" - RenderBR {BR} at (40,1489) size 0x0 - RenderText {#text} at (0,1494) size 40x18 - text run at (0,1494) width 40: "ssss" - RenderBR {BR} at (40,1507) size 0x0 - RenderText {#text} at (0,1512) size 40x18 - text run at (0,1512) width 40: "tttt" - RenderBR {BR} at (40,1525) size 0x0 - RenderText {#text} at (0,1530) size 40x18 - text run at (0,1530) width 40: "uuuu" - RenderBR {BR} at (40,1543) size 0x0 - RenderText {#text} at (0,1548) size 40x18 - text run at (0,1548) width 40: "vvvv" - RenderBR {BR} at (40,1561) size 0x0 - RenderText {#text} at (0,1566) size 40x18 - text run at (0,1566) width 40: "wwww" - RenderBR {BR} at (40,1579) size 0x0 - RenderText {#text} at (0,1584) size 40x18 - text run at (0,1584) width 40: "xxxx" - RenderBR {BR} at (40,1597) size 0x0 - RenderText {#text} at (0,1602) size 40x18 - text run at (0,1602) width 40: "yyyy" - RenderBR {BR} at (40,1615) size 0x0 - RenderText {#text} at (0,1620) size 40x18 - text run at (0,1620) width 40: "zzzz" - RenderBR {BR} at (40,1633) size 0x0 - RenderText {#text} at (0,1638) size 40x18 - text run at (0,1638) width 40: "{{{{" - RenderBR {BR} at (40,1651) size 0x0 - RenderText {#text} at (0,1656) size 40x18 - text run at (0,1656) width 40: "||||" - RenderBR {BR} at (40,1669) size 0x0 - RenderText {#text} at (0,1674) size 40x18 - text run at (0,1674) width 40: "}}}}" - RenderBR {BR} at (40,1687) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1708) size 769x1786 - RenderInline {I} at (0,0) size 40x1786 - RenderText {#text} at (0,0) size 40x19 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,19) size 40x19 - text run at (0,19) width 40: "!!!!" - RenderBR {BR} at (40,33) size 0x0 - RenderText {#text} at (0,38) size 40x19 - text run at (0,38) width 40: "\"\"\"\"" - RenderBR {BR} at (40,52) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,71) size 0x0 - RenderText {#text} at (0,76) size 40x19 - text run at (0,76) width 40: "$$$$" - RenderBR {BR} at (40,90) size 0x0 - RenderText {#text} at (0,95) size 40x19 - text run at (0,95) width 40: "%%%%" - RenderBR {BR} at (40,109) size 0x0 - RenderText {#text} at (0,114) size 40x19 - text run at (0,114) width 40: "&&&&" - RenderBR {BR} at (40,128) size 0x0 - RenderText {#text} at (0,133) size 40x19 - text run at (0,133) width 40: "''''" - RenderBR {BR} at (40,147) size 0x0 - RenderText {#text} at (0,152) size 40x19 - text run at (0,152) width 40: "((((" - RenderBR {BR} at (40,166) size 0x0 - RenderText {#text} at (0,171) size 40x19 - text run at (0,171) width 40: "))))" - RenderBR {BR} at (40,185) size 0x0 - RenderText {#text} at (0,190) size 40x19 - text run at (0,190) width 40: "****" - RenderBR {BR} at (40,204) size 0x0 - RenderText {#text} at (0,209) size 40x19 - text run at (0,209) width 40: "++++" - RenderBR {BR} at (40,223) size 0x0 - RenderText {#text} at (0,228) size 40x19 - text run at (0,228) width 40: ",,,," - RenderBR {BR} at (40,242) size 0x0 - RenderText {#text} at (0,247) size 40x19 - text run at (0,247) width 40: "----" - RenderBR {BR} at (40,261) size 0x0 - RenderText {#text} at (0,266) size 40x19 - text run at (0,266) width 40: "...." - RenderBR {BR} at (40,280) size 0x0 - RenderText {#text} at (0,285) size 40x19 - text run at (0,285) width 40: "////" - RenderBR {BR} at (40,299) size 0x0 - RenderText {#text} at (0,304) size 40x19 - text run at (0,304) width 40: "0000" - RenderBR {BR} at (40,318) size 0x0 - RenderText {#text} at (0,323) size 40x19 - text run at (0,323) width 40: "1111" - RenderBR {BR} at (40,337) size 0x0 - RenderText {#text} at (0,342) size 40x19 - text run at (0,342) width 40: "2222" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,361) size 40x19 - text run at (0,361) width 40: "3333" - RenderBR {BR} at (40,375) size 0x0 - RenderText {#text} at (0,380) size 40x19 - text run at (0,380) width 40: "4444" - RenderBR {BR} at (40,394) size 0x0 - RenderText {#text} at (0,399) size 40x19 - text run at (0,399) width 40: "5555" - RenderBR {BR} at (40,413) size 0x0 - RenderText {#text} at (0,418) size 40x19 - text run at (0,418) width 40: "6666" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x19 - text run at (0,437) width 40: "7777" - RenderBR {BR} at (40,451) size 0x0 - RenderText {#text} at (0,456) size 40x19 - text run at (0,456) width 40: "8888" - RenderBR {BR} at (40,470) size 0x0 - RenderText {#text} at (0,475) size 40x19 - text run at (0,475) width 40: "9999" - RenderBR {BR} at (40,489) size 0x0 - RenderText {#text} at (0,494) size 40x19 - text run at (0,494) width 40: "::::" - RenderBR {BR} at (40,508) size 0x0 - RenderText {#text} at (0,513) size 40x19 - text run at (0,513) width 40: ";;;;" - RenderBR {BR} at (40,527) size 0x0 - RenderText {#text} at (0,532) size 40x19 - text run at (0,532) width 40: "<<<<" - RenderBR {BR} at (40,546) size 0x0 - RenderText {#text} at (0,551) size 40x19 - text run at (0,551) width 40: "====" - RenderBR {BR} at (40,565) size 0x0 - RenderText {#text} at (0,570) size 40x19 - text run at (0,570) width 40: ">>>>" - RenderBR {BR} at (40,584) size 0x0 - RenderText {#text} at (0,589) size 40x19 - text run at (0,589) width 40: "????" - RenderBR {BR} at (40,603) size 0x0 - RenderText {#text} at (0,608) size 40x19 - text run at (0,608) width 40: "@@@@" - RenderBR {BR} at (40,622) size 0x0 - RenderText {#text} at (0,627) size 40x19 - text run at (0,627) width 40: "AAAA" - RenderBR {BR} at (40,641) size 0x0 - RenderText {#text} at (0,646) size 40x19 - text run at (0,646) width 40: "BBBB" - RenderBR {BR} at (40,660) size 0x0 - RenderText {#text} at (0,665) size 40x19 - text run at (0,665) width 40: "CCCC" - RenderBR {BR} at (40,679) size 0x0 - RenderText {#text} at (0,684) size 40x19 - text run at (0,684) width 40: "DDDD" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,703) size 40x19 - text run at (0,703) width 40: "EEEE" - RenderBR {BR} at (40,717) size 0x0 - RenderText {#text} at (0,722) size 40x19 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,736) size 0x0 - RenderText {#text} at (0,741) size 40x19 - text run at (0,741) width 40: "GGGG" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "HHHH" - RenderBR {BR} at (40,774) size 0x0 - RenderText {#text} at (0,779) size 40x19 - text run at (0,779) width 40: "IIII" - RenderBR {BR} at (40,793) size 0x0 - RenderText {#text} at (0,798) size 40x19 - text run at (0,798) width 40: "JJJJ" - RenderBR {BR} at (40,812) size 0x0 - RenderText {#text} at (0,817) size 40x19 - text run at (0,817) width 40: "KKKK" - RenderBR {BR} at (40,831) size 0x0 - RenderText {#text} at (0,836) size 40x19 - text run at (0,836) width 40: "LLLL" - RenderBR {BR} at (40,850) size 0x0 - RenderText {#text} at (0,855) size 40x19 - text run at (0,855) width 40: "MMMM" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x19 - text run at (0,874) width 40: "NNNN" - RenderBR {BR} at (40,888) size 0x0 - RenderText {#text} at (0,893) size 40x19 - text run at (0,893) width 40: "OOOO" - RenderBR {BR} at (40,907) size 0x0 - RenderText {#text} at (0,912) size 40x19 - text run at (0,912) width 40: "PPPP" - RenderBR {BR} at (40,926) size 0x0 - RenderText {#text} at (0,931) size 40x19 - text run at (0,931) width 40: "QQQQ" - RenderBR {BR} at (40,945) size 0x0 - RenderText {#text} at (0,950) size 40x19 - text run at (0,950) width 40: "RRRR" - RenderBR {BR} at (40,964) size 0x0 - RenderText {#text} at (0,969) size 40x19 - text run at (0,969) width 40: "SSSS" - RenderBR {BR} at (40,983) size 0x0 - RenderText {#text} at (0,988) size 40x19 - text run at (0,988) width 40: "TTTT" - RenderBR {BR} at (40,1002) size 0x0 - RenderText {#text} at (0,1007) size 40x19 - text run at (0,1007) width 40: "UUUU" - RenderBR {BR} at (40,1021) size 0x0 - RenderText {#text} at (0,1026) size 40x19 - text run at (0,1026) width 40: "VVVV" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1045) size 40x19 - text run at (0,1045) width 40: "WWWW" - RenderBR {BR} at (40,1059) size 0x0 - RenderText {#text} at (0,1064) size 40x19 - text run at (0,1064) width 40: "XXXX" - RenderBR {BR} at (40,1078) size 0x0 - RenderText {#text} at (0,1083) size 40x19 - text run at (0,1083) width 40: "YYYY" - RenderBR {BR} at (40,1097) size 0x0 - RenderText {#text} at (0,1102) size 40x19 - text run at (0,1102) width 40: "ZZZZ" - RenderBR {BR} at (40,1116) size 0x0 - RenderText {#text} at (0,1121) size 40x19 - text run at (0,1121) width 40: "[[[[" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1154) size 0x0 - RenderText {#text} at (0,1159) size 40x19 - text run at (0,1159) width 40: "]]]]" - RenderBR {BR} at (40,1173) size 0x0 - RenderText {#text} at (0,1178) size 40x19 - text run at (0,1178) width 40: "^^^^" - RenderBR {BR} at (40,1192) size 0x0 - RenderText {#text} at (0,1197) size 40x19 - text run at (0,1197) width 40: "____" - RenderBR {BR} at (40,1211) size 0x0 - RenderText {#text} at (0,1216) size 40x19 - text run at (0,1216) width 40: "````" - RenderBR {BR} at (40,1230) size 0x0 - RenderText {#text} at (0,1235) size 40x19 - text run at (0,1235) width 40: "aaaa" - RenderBR {BR} at (40,1249) size 0x0 - RenderText {#text} at (0,1254) size 40x19 - text run at (0,1254) width 40: "bbbb" - RenderBR {BR} at (40,1268) size 0x0 - RenderText {#text} at (0,1273) size 40x19 - text run at (0,1273) width 40: "cccc" - RenderBR {BR} at (40,1287) size 0x0 - RenderText {#text} at (0,1292) size 40x19 - text run at (0,1292) width 40: "dddd" - RenderBR {BR} at (40,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x19 - text run at (0,1311) width 40: "eeee" - RenderBR {BR} at (40,1325) size 0x0 - RenderText {#text} at (0,1330) size 40x19 - text run at (0,1330) width 40: "ffff" - RenderBR {BR} at (40,1344) size 0x0 - RenderText {#text} at (0,1349) size 40x19 - text run at (0,1349) width 40: "gggg" - RenderBR {BR} at (40,1363) size 0x0 - RenderText {#text} at (0,1368) size 40x19 - text run at (0,1368) width 40: "hhhh" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1387) size 40x19 - text run at (0,1387) width 40: "iiii" - RenderBR {BR} at (40,1401) size 0x0 - RenderText {#text} at (0,1406) size 40x19 - text run at (0,1406) width 40: "jjjj" - RenderBR {BR} at (40,1420) size 0x0 - RenderText {#text} at (0,1425) size 40x19 - text run at (0,1425) width 40: "kkkk" - RenderBR {BR} at (40,1439) size 0x0 - RenderText {#text} at (0,1444) size 40x19 - text run at (0,1444) width 40: "llll" - RenderBR {BR} at (40,1458) size 0x0 - RenderText {#text} at (0,1463) size 40x19 - text run at (0,1463) width 40: "mmmm" - RenderBR {BR} at (40,1477) size 0x0 - RenderText {#text} at (0,1482) size 40x19 - text run at (0,1482) width 40: "nnnn" - RenderBR {BR} at (40,1496) size 0x0 - RenderText {#text} at (0,1501) size 40x19 - text run at (0,1501) width 40: "oooo" - RenderBR {BR} at (40,1515) size 0x0 - RenderText {#text} at (0,1520) size 40x19 - text run at (0,1520) width 40: "pppp" - RenderBR {BR} at (40,1534) size 0x0 - RenderText {#text} at (0,1539) size 40x19 - text run at (0,1539) width 40: "qqqq" - RenderBR {BR} at (40,1553) size 0x0 - RenderText {#text} at (0,1558) size 40x19 - text run at (0,1558) width 40: "rrrr" - RenderBR {BR} at (40,1572) size 0x0 - RenderText {#text} at (0,1577) size 40x19 - text run at (0,1577) width 40: "ssss" - RenderBR {BR} at (40,1591) size 0x0 - RenderText {#text} at (0,1596) size 40x19 - text run at (0,1596) width 40: "tttt" - RenderBR {BR} at (40,1610) size 0x0 - RenderText {#text} at (0,1615) size 40x19 - text run at (0,1615) width 40: "uuuu" - RenderBR {BR} at (40,1629) size 0x0 - RenderText {#text} at (0,1634) size 40x19 - text run at (0,1634) width 40: "vvvv" - RenderBR {BR} at (40,1648) size 0x0 - RenderText {#text} at (0,1653) size 40x19 - text run at (0,1653) width 40: "wwww" - RenderBR {BR} at (40,1667) size 0x0 - RenderText {#text} at (0,1672) size 40x19 - text run at (0,1672) width 40: "xxxx" - RenderBR {BR} at (40,1686) size 0x0 - RenderText {#text} at (0,1691) size 40x19 - text run at (0,1691) width 40: "yyyy" - RenderBR {BR} at (40,1705) size 0x0 - RenderText {#text} at (0,1710) size 40x19 - text run at (0,1710) width 40: "zzzz" - RenderBR {BR} at (40,1724) size 0x0 - RenderText {#text} at (0,1729) size 40x19 - text run at (0,1729) width 40: "{{{{" - RenderBR {BR} at (40,1743) size 0x0 - RenderText {#text} at (0,1748) size 40x19 - text run at (0,1748) width 40: "||||" - RenderBR {BR} at (40,1762) size 0x0 - RenderText {#text} at (0,1767) size 40x19 - text run at (0,1767) width 40: "}}}}" - RenderBR {BR} at (40,1781) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5218) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5218) size 769x1786 - RenderInline {FONT} at (0,0) size 40x1785 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 40x1785 - RenderInline {I} at (0,0) size 40x1786 - RenderText {#text} at (0,0) size 40x19 - text run at (0,0) width 40: " " - RenderBR {BR} at (40,14) size 0x0 - RenderText {#text} at (0,19) size 40x19 - text run at (0,19) width 40: "!!!!" - RenderBR {BR} at (40,33) size 0x0 - RenderText {#text} at (0,38) size 40x19 - text run at (0,38) width 40: "\"\"\"\"" - RenderBR {BR} at (40,52) size 0x0 - RenderText {#text} at (0,57) size 40x19 - text run at (0,57) width 40: "####" - RenderBR {BR} at (40,71) size 0x0 - RenderText {#text} at (0,76) size 40x19 - text run at (0,76) width 40: "$$$$" - RenderBR {BR} at (40,90) size 0x0 - RenderText {#text} at (0,95) size 40x19 - text run at (0,95) width 40: "%%%%" - RenderBR {BR} at (40,109) size 0x0 - RenderText {#text} at (0,114) size 40x19 - text run at (0,114) width 40: "&&&&" - RenderBR {BR} at (40,128) size 0x0 - RenderText {#text} at (0,133) size 40x19 - text run at (0,133) width 40: "''''" - RenderBR {BR} at (40,147) size 0x0 - RenderText {#text} at (0,152) size 40x19 - text run at (0,152) width 40: "((((" - RenderBR {BR} at (40,166) size 0x0 - RenderText {#text} at (0,171) size 40x19 - text run at (0,171) width 40: "))))" - RenderBR {BR} at (40,185) size 0x0 - RenderText {#text} at (0,190) size 40x19 - text run at (0,190) width 40: "****" - RenderBR {BR} at (40,204) size 0x0 - RenderText {#text} at (0,209) size 40x19 - text run at (0,209) width 40: "++++" - RenderBR {BR} at (40,223) size 0x0 - RenderText {#text} at (0,228) size 40x19 - text run at (0,228) width 40: ",,,," - RenderBR {BR} at (40,242) size 0x0 - RenderText {#text} at (0,247) size 40x19 - text run at (0,247) width 40: "----" - RenderBR {BR} at (40,261) size 0x0 - RenderText {#text} at (0,266) size 40x19 - text run at (0,266) width 40: "...." - RenderBR {BR} at (40,280) size 0x0 - RenderText {#text} at (0,285) size 40x19 - text run at (0,285) width 40: "////" - RenderBR {BR} at (40,299) size 0x0 - RenderText {#text} at (0,304) size 40x19 - text run at (0,304) width 40: "0000" - RenderBR {BR} at (40,318) size 0x0 - RenderText {#text} at (0,323) size 40x19 - text run at (0,323) width 40: "1111" - RenderBR {BR} at (40,337) size 0x0 - RenderText {#text} at (0,342) size 40x19 - text run at (0,342) width 40: "2222" - RenderBR {BR} at (40,356) size 0x0 - RenderText {#text} at (0,361) size 40x19 - text run at (0,361) width 40: "3333" - RenderBR {BR} at (40,375) size 0x0 - RenderText {#text} at (0,380) size 40x19 - text run at (0,380) width 40: "4444" - RenderBR {BR} at (40,394) size 0x0 - RenderText {#text} at (0,399) size 40x19 - text run at (0,399) width 40: "5555" - RenderBR {BR} at (40,413) size 0x0 - RenderText {#text} at (0,418) size 40x19 - text run at (0,418) width 40: "6666" - RenderBR {BR} at (40,432) size 0x0 - RenderText {#text} at (0,437) size 40x19 - text run at (0,437) width 40: "7777" - RenderBR {BR} at (40,451) size 0x0 - RenderText {#text} at (0,456) size 40x19 - text run at (0,456) width 40: "8888" - RenderBR {BR} at (40,470) size 0x0 - RenderText {#text} at (0,475) size 40x19 - text run at (0,475) width 40: "9999" - RenderBR {BR} at (40,489) size 0x0 - RenderText {#text} at (0,494) size 40x19 - text run at (0,494) width 40: "::::" - RenderBR {BR} at (40,508) size 0x0 - RenderText {#text} at (0,513) size 40x19 - text run at (0,513) width 40: ";;;;" - RenderBR {BR} at (40,527) size 0x0 - RenderText {#text} at (0,532) size 40x19 - text run at (0,532) width 40: "<<<<" - RenderBR {BR} at (40,546) size 0x0 - RenderText {#text} at (0,551) size 40x19 - text run at (0,551) width 40: "====" - RenderBR {BR} at (40,565) size 0x0 - RenderText {#text} at (0,570) size 40x19 - text run at (0,570) width 40: ">>>>" - RenderBR {BR} at (40,584) size 0x0 - RenderText {#text} at (0,589) size 40x19 - text run at (0,589) width 40: "????" - RenderBR {BR} at (40,603) size 0x0 - RenderText {#text} at (0,608) size 40x19 - text run at (0,608) width 40: "@@@@" - RenderBR {BR} at (40,622) size 0x0 - RenderText {#text} at (0,627) size 40x19 - text run at (0,627) width 40: "AAAA" - RenderBR {BR} at (40,641) size 0x0 - RenderText {#text} at (0,646) size 40x19 - text run at (0,646) width 40: "BBBB" - RenderBR {BR} at (40,660) size 0x0 - RenderText {#text} at (0,665) size 40x19 - text run at (0,665) width 40: "CCCC" - RenderBR {BR} at (40,679) size 0x0 - RenderText {#text} at (0,684) size 40x19 - text run at (0,684) width 40: "DDDD" - RenderBR {BR} at (40,698) size 0x0 - RenderText {#text} at (0,703) size 40x19 - text run at (0,703) width 40: "EEEE" - RenderBR {BR} at (40,717) size 0x0 - RenderText {#text} at (0,722) size 40x19 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,736) size 0x0 - RenderText {#text} at (0,741) size 40x19 - text run at (0,741) width 40: "GGGG" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "HHHH" - RenderBR {BR} at (40,774) size 0x0 - RenderText {#text} at (0,779) size 40x19 - text run at (0,779) width 40: "IIII" - RenderBR {BR} at (40,793) size 0x0 - RenderText {#text} at (0,798) size 40x19 - text run at (0,798) width 40: "JJJJ" - RenderBR {BR} at (40,812) size 0x0 - RenderText {#text} at (0,817) size 40x19 - text run at (0,817) width 40: "KKKK" - RenderBR {BR} at (40,831) size 0x0 - RenderText {#text} at (0,836) size 40x19 - text run at (0,836) width 40: "LLLL" - RenderBR {BR} at (40,850) size 0x0 - RenderText {#text} at (0,855) size 40x19 - text run at (0,855) width 40: "MMMM" - RenderBR {BR} at (40,869) size 0x0 - RenderText {#text} at (0,874) size 40x19 - text run at (0,874) width 40: "NNNN" - RenderBR {BR} at (40,888) size 0x0 - RenderText {#text} at (0,893) size 40x19 - text run at (0,893) width 40: "OOOO" - RenderBR {BR} at (40,907) size 0x0 - RenderText {#text} at (0,912) size 40x19 - text run at (0,912) width 40: "PPPP" - RenderBR {BR} at (40,926) size 0x0 - RenderText {#text} at (0,931) size 40x19 - text run at (0,931) width 40: "QQQQ" - RenderBR {BR} at (40,945) size 0x0 - RenderText {#text} at (0,950) size 40x19 - text run at (0,950) width 40: "RRRR" - RenderBR {BR} at (40,964) size 0x0 - RenderText {#text} at (0,969) size 40x19 - text run at (0,969) width 40: "SSSS" - RenderBR {BR} at (40,983) size 0x0 - RenderText {#text} at (0,988) size 40x19 - text run at (0,988) width 40: "TTTT" - RenderBR {BR} at (40,1002) size 0x0 - RenderText {#text} at (0,1007) size 40x19 - text run at (0,1007) width 40: "UUUU" - RenderBR {BR} at (40,1021) size 0x0 - RenderText {#text} at (0,1026) size 40x19 - text run at (0,1026) width 40: "VVVV" - RenderBR {BR} at (40,1040) size 0x0 - RenderText {#text} at (0,1045) size 40x19 - text run at (0,1045) width 40: "WWWW" - RenderBR {BR} at (40,1059) size 0x0 - RenderText {#text} at (0,1064) size 40x19 - text run at (0,1064) width 40: "XXXX" - RenderBR {BR} at (40,1078) size 0x0 - RenderText {#text} at (0,1083) size 40x19 - text run at (0,1083) width 40: "YYYY" - RenderBR {BR} at (40,1097) size 0x0 - RenderText {#text} at (0,1102) size 40x19 - text run at (0,1102) width 40: "ZZZZ" - RenderBR {BR} at (40,1116) size 0x0 - RenderText {#text} at (0,1121) size 40x19 - text run at (0,1121) width 40: "[[[[" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "\\\\\\\\" - RenderBR {BR} at (40,1154) size 0x0 - RenderText {#text} at (0,1159) size 40x19 - text run at (0,1159) width 40: "]]]]" - RenderBR {BR} at (40,1173) size 0x0 - RenderText {#text} at (0,1178) size 40x19 - text run at (0,1178) width 40: "^^^^" - RenderBR {BR} at (40,1192) size 0x0 - RenderText {#text} at (0,1197) size 40x19 - text run at (0,1197) width 40: "____" - RenderBR {BR} at (40,1211) size 0x0 - RenderText {#text} at (0,1216) size 40x19 - text run at (0,1216) width 40: "````" - RenderBR {BR} at (40,1230) size 0x0 - RenderText {#text} at (0,1235) size 40x19 - text run at (0,1235) width 40: "aaaa" - RenderBR {BR} at (40,1249) size 0x0 - RenderText {#text} at (0,1254) size 40x19 - text run at (0,1254) width 40: "bbbb" - RenderBR {BR} at (40,1268) size 0x0 - RenderText {#text} at (0,1273) size 40x19 - text run at (0,1273) width 40: "cccc" - RenderBR {BR} at (40,1287) size 0x0 - RenderText {#text} at (0,1292) size 40x19 - text run at (0,1292) width 40: "dddd" - RenderBR {BR} at (40,1306) size 0x0 - RenderText {#text} at (0,1311) size 40x19 - text run at (0,1311) width 40: "eeee" - RenderBR {BR} at (40,1325) size 0x0 - RenderText {#text} at (0,1330) size 40x19 - text run at (0,1330) width 40: "ffff" - RenderBR {BR} at (40,1344) size 0x0 - RenderText {#text} at (0,1349) size 40x19 - text run at (0,1349) width 40: "gggg" - RenderBR {BR} at (40,1363) size 0x0 - RenderText {#text} at (0,1368) size 40x19 - text run at (0,1368) width 40: "hhhh" - RenderBR {BR} at (40,1382) size 0x0 - RenderText {#text} at (0,1387) size 40x19 - text run at (0,1387) width 40: "iiii" - RenderBR {BR} at (40,1401) size 0x0 - RenderText {#text} at (0,1406) size 40x19 - text run at (0,1406) width 40: "jjjj" - RenderBR {BR} at (40,1420) size 0x0 - RenderText {#text} at (0,1425) size 40x19 - text run at (0,1425) width 40: "kkkk" - RenderBR {BR} at (40,1439) size 0x0 - RenderText {#text} at (0,1444) size 40x19 - text run at (0,1444) width 40: "llll" - RenderBR {BR} at (40,1458) size 0x0 - RenderText {#text} at (0,1463) size 40x19 - text run at (0,1463) width 40: "mmmm" - RenderBR {BR} at (40,1477) size 0x0 - RenderText {#text} at (0,1482) size 40x19 - text run at (0,1482) width 40: "nnnn" - RenderBR {BR} at (40,1496) size 0x0 - RenderText {#text} at (0,1501) size 40x19 - text run at (0,1501) width 40: "oooo" - RenderBR {BR} at (40,1515) size 0x0 - RenderText {#text} at (0,1520) size 40x19 - text run at (0,1520) width 40: "pppp" - RenderBR {BR} at (40,1534) size 0x0 - RenderText {#text} at (0,1539) size 40x19 - text run at (0,1539) width 40: "qqqq" - RenderBR {BR} at (40,1553) size 0x0 - RenderText {#text} at (0,1558) size 40x19 - text run at (0,1558) width 40: "rrrr" - RenderBR {BR} at (40,1572) size 0x0 - RenderText {#text} at (0,1577) size 40x19 - text run at (0,1577) width 40: "ssss" - RenderBR {BR} at (40,1591) size 0x0 - RenderText {#text} at (0,1596) size 40x19 - text run at (0,1596) width 40: "tttt" - RenderBR {BR} at (40,1610) size 0x0 - RenderText {#text} at (0,1615) size 40x19 - text run at (0,1615) width 40: "uuuu" - RenderBR {BR} at (40,1629) size 0x0 - RenderText {#text} at (0,1634) size 40x19 - text run at (0,1634) width 40: "vvvv" - RenderBR {BR} at (40,1648) size 0x0 - RenderText {#text} at (0,1653) size 40x19 - text run at (0,1653) width 40: "wwww" - RenderBR {BR} at (40,1667) size 0x0 - RenderText {#text} at (0,1672) size 40x19 - text run at (0,1672) width 40: "xxxx" - RenderBR {BR} at (40,1686) size 0x0 - RenderText {#text} at (0,1691) size 40x19 - text run at (0,1691) width 40: "yyyy" - RenderBR {BR} at (40,1705) size 0x0 - RenderText {#text} at (0,1710) size 40x19 - text run at (0,1710) width 40: "zzzz" - RenderBR {BR} at (40,1724) size 0x0 - RenderText {#text} at (0,1729) size 40x19 - text run at (0,1729) width 40: "{{{{" - RenderBR {BR} at (40,1743) size 0x0 - RenderText {#text} at (0,1748) size 40x19 - text run at (0,1748) width 40: "||||" - RenderBR {BR} at (40,1762) size 0x0 - RenderText {#text} at (0,1767) size 40x19 - text run at (0,1767) width 40: "}}}}" - RenderBR {BR} at (40,1781) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/courier.html b/webkit/data/layout_tests/chrome/fonts/courier.html deleted file mode 100644 index 5e6cce5..0000000 --- a/webkit/data/layout_tests/chrome/fonts/courier.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face=Courier> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/default-expected.checksum b/webkit/data/layout_tests/chrome/fonts/default-expected.checksum deleted file mode 100644 index f66898f..0000000 --- a/webkit/data/layout_tests/chrome/fonts/default-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -5f93c325a213890b7aa91f1628a65b15
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/default-expected.png b/webkit/data/layout_tests/chrome/fonts/default-expected.png Binary files differdeleted file mode 100644 index 268adb4..0000000 --- a/webkit/data/layout_tests/chrome/fonts/default-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/default-expected.txt b/webkit/data/layout_tests/chrome/fonts/default-expected.txt deleted file mode 100644 index cfa9e4e..0000000 --- a/webkit/data/layout_tests/chrome/fonts/default-expected.txt +++ /dev/null @@ -1,1144 +0,0 @@ -layer at (0,0) size 785x7592 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7592 - RenderBlock {HTML} at (0,0) size 785x7592 - RenderBody {BODY} at (8,8) size 769x7568 - RenderBlock (anonymous) at (0,0) size 769x1880 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 20x19 - text run at (0,40) width 20: "\"\"\"\"" - RenderBR {BR} at (20,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 24x19 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 12x19 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,535) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 28x19 - text run at (0,620) width 28: "????" - RenderBR {BR} at (28,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 40x19 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 36x19 - text run at (0,740) width 36: "EEEE" - RenderBR {BR} at (36,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 44x19 - text run at (0,780) width 44: "GGGG" - RenderBR {BR} at (44,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 24x19 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 40x19 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 28x19 - text run at (0,1300) width 28: "aaaa" - RenderBR {BR} at (28,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1415) size 0x0 - RenderText {#text} at (0,1420) size 28x19 - text run at (0,1420) width 28: "gggg" - RenderBR {BR} at (28,1435) size 0x0 - RenderText {#text} at (0,1440) size 28x19 - text run at (0,1440) width 28: "hhhh" - RenderBR {BR} at (28,1455) size 0x0 - RenderText {#text} at (0,1460) size 12x19 - text run at (0,1460) width 12: "iiii" - RenderBR {BR} at (12,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 12x19 - text run at (0,1520) width 12: "llll" - RenderBR {BR} at (12,1535) size 0x0 - RenderText {#text} at (0,1540) size 44x19 - text run at (0,1540) width 44: "mmmm" - RenderBR {BR} at (44,1555) size 0x0 - RenderText {#text} at (0,1560) size 28x19 - text run at (0,1560) width 28: "nnnn" - RenderBR {BR} at (28,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1695) size 0x0 - RenderText {#text} at (0,1700) size 28x19 - text run at (0,1700) width 28: "uuuu" - RenderBR {BR} at (28,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 28x19 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 28x19 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 32x19 - text run at (0,1860) width 32: "}}}}" - RenderBR {BR} at (32,1875) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 52x19 - text run at (0,120) width 52: "&&&&" - RenderBR {BR} at (52,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 64x19 - text run at (0,900) width 64: "MMMM" - RenderBR {BR} at (64,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 32x19 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 28x19 - text run at (0,1660) width 28: "ssss" - RenderBR {BR} at (28,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 40x19 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,3792) size 769x1880 - RenderInline {I} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 44x19 - text run at (0,220) width 44: "++++" - RenderBR {BR} at (44,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 44x19 - text run at (0,560) width 44: "<<<<" - RenderBR {BR} at (44,575) size 0x0 - RenderText {#text} at (0,580) size 44x19 - text run at (0,580) width 44: "====" - RenderBR {BR} at (44,595) size 0x0 - RenderText {#text} at (0,600) size 44x19 - text run at (0,600) width 44: ">>>>" - RenderBR {BR} at (44,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 40x19 - text run at (0,660) width 40: "AAAA" - RenderBR {BR} at (40,675) size 0x0 - RenderText {#text} at (0,680) size 36x19 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 28x19 - text run at (0,840) width 28: "JJJJ" - RenderBR {BR} at (28,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 44x19 - text run at (0,920) width 44: "NNNN" - RenderBR {BR} at (44,935) size 0x0 - RenderText {#text} at (0,940) size 44x19 - text run at (0,940) width 44: "OOOO" - RenderBR {BR} at (44,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 44x19 - text run at (0,980) width 44: "QQQQ" - RenderBR {BR} at (44,995) size 0x0 - RenderText {#text} at (0,1000) size 36x19 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1015) size 0x0 - RenderText {#text} at (0,1020) size 32x19 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 40x19 - text run at (0,1080) width 40: "VVVV" - RenderBR {BR} at (40,1095) size 0x0 - RenderText {#text} at (0,1100) size 52x19 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1115) size 0x0 - RenderText {#text} at (0,1120) size 40x19 - text run at (0,1120) width 40: "XXXX" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 32x19 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 28x19 - text run at (0,1180) width 28: "[[[[" - RenderBR {BR} at (28,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 28x19 - text run at (0,1220) width 28: "]]]]" - RenderBR {BR} at (28,1235) size 0x0 - RenderText {#text} at (0,1240) size 28x19 - text run at (0,1240) width 28: "^^^^" - RenderBR {BR} at (28,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 20x19 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,5688) size 769x1880 - RenderInline {B} at (0,0) size 56x1879 - RenderInline {I} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 52x19 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 44x19 - text run at (0,760) width 44: "FFFF" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 44x19 - text run at (0,1000) width 44: "RRRR" - RenderBR {BR} at (44,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 56x19 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1455) size 0x0 - RenderText {#text} at (0,1460) size 20x19 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 20x19 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/default.html b/webkit/data/layout_tests/chrome/fonts/default.html deleted file mode 100644 index f5bdc09..0000000 --- a/webkit/data/layout_tests/chrome/fonts/default.html +++ /dev/null @@ -1,73 +0,0 @@ - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> diff --git a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.checksum b/webkit/data/layout_tests/chrome/fonts/helvetica-expected.checksum deleted file mode 100644 index 42d57f0..0000000 --- a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -f0b9ad6665d8b4ab580d5bb47bd4aef2
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.png b/webkit/data/layout_tests/chrome/fonts/helvetica-expected.png Binary files differdeleted file mode 100644 index 7e24961..0000000 --- a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.txt b/webkit/data/layout_tests/chrome/fonts/helvetica-expected.txt deleted file mode 100644 index 929b70e..0000000 --- a/webkit/data/layout_tests/chrome/fonts/helvetica-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7404 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7404 - RenderBlock {HTML} at (0,0) size 785x7404 - RenderBody {BODY} at (8,8) size 769x7380 - RenderBlock (anonymous) at (0,0) size 769x1786 - RenderInline {FONT} at (0,0) size 64x1785 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,19) size 20x18 - text run at (0,19) width 20: "!!!!" - RenderBR {BR} at (20,34) size 0x0 - RenderText {#text} at (0,38) size 24x18 - text run at (0,38) width 24: "\"\"\"\"" - RenderBR {BR} at (24,53) size 0x0 - RenderText {#text} at (0,57) size 36x18 - text run at (0,57) width 36: "####" - RenderBR {BR} at (36,72) size 0x0 - RenderText {#text} at (0,76) size 36x18 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,91) size 0x0 - RenderText {#text} at (0,95) size 56x18 - text run at (0,95) width 56: "%%%%" - RenderBR {BR} at (56,110) size 0x0 - RenderText {#text} at (0,114) size 44x18 - text run at (0,114) width 44: "&&&&" - RenderBR {BR} at (44,129) size 0x0 - RenderText {#text} at (0,133) size 12x18 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,148) size 0x0 - RenderText {#text} at (0,152) size 20x18 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,167) size 0x0 - RenderText {#text} at (0,171) size 20x18 - text run at (0,171) width 20: "))))" - RenderBR {BR} at (20,186) size 0x0 - RenderText {#text} at (0,190) size 24x18 - text run at (0,190) width 24: "****" - RenderBR {BR} at (24,205) size 0x0 - RenderText {#text} at (0,209) size 36x18 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,224) size 0x0 - RenderText {#text} at (0,228) size 16x18 - text run at (0,228) width 16: ",,,," - RenderBR {BR} at (16,243) size 0x0 - RenderText {#text} at (0,247) size 20x18 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,262) size 0x0 - RenderText {#text} at (0,266) size 16x18 - text run at (0,266) width 16: "...." - RenderBR {BR} at (16,281) size 0x0 - RenderText {#text} at (0,285) size 16x18 - text run at (0,285) width 16: "////" - RenderBR {BR} at (16,300) size 0x0 - RenderText {#text} at (0,304) size 36x18 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,319) size 0x0 - RenderText {#text} at (0,323) size 36x18 - text run at (0,323) width 36: "1111" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "2222" - RenderBR {BR} at (36,357) size 0x0 - RenderText {#text} at (0,361) size 36x18 - text run at (0,361) width 36: "3333" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x18 - text run at (0,380) width 36: "4444" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,399) size 36x18 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,414) size 0x0 - RenderText {#text} at (0,418) size 36x18 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,433) size 0x0 - RenderText {#text} at (0,437) size 36x18 - text run at (0,437) width 36: "7777" - RenderBR {BR} at (36,452) size 0x0 - RenderText {#text} at (0,456) size 36x18 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,471) size 0x0 - RenderText {#text} at (0,475) size 36x18 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,490) size 0x0 - RenderText {#text} at (0,494) size 16x18 - text run at (0,494) width 16: "::::" - RenderBR {BR} at (16,509) size 0x0 - RenderText {#text} at (0,513) size 16x18 - text run at (0,513) width 16: ";;;;" - RenderBR {BR} at (16,528) size 0x0 - RenderText {#text} at (0,532) size 36x18 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,547) size 0x0 - RenderText {#text} at (0,551) size 36x18 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,566) size 0x0 - RenderText {#text} at (0,570) size 36x18 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,585) size 0x0 - RenderText {#text} at (0,589) size 36x18 - text run at (0,589) width 36: "????" - RenderBR {BR} at (36,604) size 0x0 - RenderText {#text} at (0,608) size 64x18 - text run at (0,608) width 64: "@@@@" - RenderBR {BR} at (64,623) size 0x0 - RenderText {#text} at (0,627) size 44x18 - text run at (0,627) width 44: "AAAA" - RenderBR {BR} at (44,642) size 0x0 - RenderText {#text} at (0,646) size 44x18 - text run at (0,646) width 44: "BBBB" - RenderBR {BR} at (44,661) size 0x0 - RenderText {#text} at (0,665) size 48x18 - text run at (0,665) width 48: "CCCC" - RenderBR {BR} at (48,680) size 0x0 - RenderText {#text} at (0,684) size 48x18 - text run at (0,684) width 48: "DDDD" - RenderBR {BR} at (48,699) size 0x0 - RenderText {#text} at (0,703) size 44x18 - text run at (0,703) width 44: "EEEE" - RenderBR {BR} at (44,718) size 0x0 - RenderText {#text} at (0,722) size 40x18 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,741) size 48x18 - text run at (0,741) width 48: "GGGG" - RenderBR {BR} at (48,756) size 0x0 - RenderText {#text} at (0,760) size 44x18 - text run at (0,760) width 44: "HHHH" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,779) size 12x18 - text run at (0,779) width 12: "IIII" - RenderBR {BR} at (12,794) size 0x0 - RenderText {#text} at (0,798) size 32x18 - text run at (0,798) width 32: "JJJJ" - RenderBR {BR} at (32,813) size 0x0 - RenderText {#text} at (0,817) size 44x18 - text run at (0,817) width 44: "KKKK" - RenderBR {BR} at (44,832) size 0x0 - RenderText {#text} at (0,836) size 36x18 - text run at (0,836) width 36: "LLLL" - RenderBR {BR} at (36,851) size 0x0 - RenderText {#text} at (0,855) size 52x18 - text run at (0,855) width 52: "MMMM" - RenderBR {BR} at (52,870) size 0x0 - RenderText {#text} at (0,874) size 44x18 - text run at (0,874) width 44: "NNNN" - RenderBR {BR} at (44,889) size 0x0 - RenderText {#text} at (0,893) size 48x18 - text run at (0,893) width 48: "OOOO" - RenderBR {BR} at (48,908) size 0x0 - RenderText {#text} at (0,912) size 44x18 - text run at (0,912) width 44: "PPPP" - RenderBR {BR} at (44,927) size 0x0 - RenderText {#text} at (0,931) size 48x18 - text run at (0,931) width 48: "QQQQ" - RenderBR {BR} at (48,946) size 0x0 - RenderText {#text} at (0,950) size 44x18 - text run at (0,950) width 44: "RRRR" - RenderBR {BR} at (44,965) size 0x0 - RenderText {#text} at (0,969) size 44x18 - text run at (0,969) width 44: "SSSS" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,988) size 36x18 - text run at (0,988) width 36: "TTTT" - RenderBR {BR} at (36,1003) size 0x0 - RenderText {#text} at (0,1007) size 44x18 - text run at (0,1007) width 44: "UUUU" - RenderBR {BR} at (44,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "VVVV" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1045) size 60x18 - text run at (0,1045) width 60: "WWWW" - RenderBR {BR} at (60,1060) size 0x0 - RenderText {#text} at (0,1064) size 44x18 - text run at (0,1064) width 44: "XXXX" - RenderBR {BR} at (44,1079) size 0x0 - RenderText {#text} at (0,1083) size 36x18 - text run at (0,1083) width 36: "YYYY" - RenderBR {BR} at (36,1098) size 0x0 - RenderText {#text} at (0,1102) size 36x18 - text run at (0,1102) width 36: "ZZZZ" - RenderBR {BR} at (36,1117) size 0x0 - RenderText {#text} at (0,1121) size 16x18 - text run at (0,1121) width 16: "[[[[" - RenderBR {BR} at (16,1136) size 0x0 - RenderText {#text} at (0,1140) size 16x18 - text run at (0,1140) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1155) size 0x0 - RenderText {#text} at (0,1159) size 16x18 - text run at (0,1159) width 16: "]]]]" - RenderBR {BR} at (16,1174) size 0x0 - RenderText {#text} at (0,1178) size 28x18 - text run at (0,1178) width 28: "^^^^" - RenderBR {BR} at (28,1193) size 0x0 - RenderText {#text} at (0,1197) size 36x18 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1212) size 0x0 - RenderText {#text} at (0,1216) size 20x18 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1231) size 0x0 - RenderText {#text} at (0,1235) size 36x18 - text run at (0,1235) width 36: "aaaa" - RenderBR {BR} at (36,1250) size 0x0 - RenderText {#text} at (0,1254) size 36x18 - text run at (0,1254) width 36: "bbbb" - RenderBR {BR} at (36,1269) size 0x0 - RenderText {#text} at (0,1273) size 32x18 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1288) size 0x0 - RenderText {#text} at (0,1292) size 36x18 - text run at (0,1292) width 36: "dddd" - RenderBR {BR} at (36,1307) size 0x0 - RenderText {#text} at (0,1311) size 36x18 - text run at (0,1311) width 36: "eeee" - RenderBR {BR} at (36,1326) size 0x0 - RenderText {#text} at (0,1330) size 16x18 - text run at (0,1330) width 16: "ffff" - RenderBR {BR} at (16,1345) size 0x0 - RenderText {#text} at (0,1349) size 36x18 - text run at (0,1349) width 36: "gggg" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 32x18 - text run at (0,1368) width 32: "hhhh" - RenderBR {BR} at (32,1383) size 0x0 - RenderText {#text} at (0,1387) size 16x18 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1402) size 0x0 - RenderText {#text} at (0,1406) size 12x18 - text run at (0,1406) width 12: "jjjj" - RenderBR {BR} at (12,1421) size 0x0 - RenderText {#text} at (0,1425) size 32x18 - text run at (0,1425) width 32: "kkkk" - RenderBR {BR} at (32,1440) size 0x0 - RenderText {#text} at (0,1444) size 12x18 - text run at (0,1444) width 12: "llll" - RenderBR {BR} at (12,1459) size 0x0 - RenderText {#text} at (0,1463) size 52x18 - text run at (0,1463) width 52: "mmmm" - RenderBR {BR} at (52,1478) size 0x0 - RenderText {#text} at (0,1482) size 32x18 - text run at (0,1482) width 32: "nnnn" - RenderBR {BR} at (32,1497) size 0x0 - RenderText {#text} at (0,1501) size 36x18 - text run at (0,1501) width 36: "oooo" - RenderBR {BR} at (36,1516) size 0x0 - RenderText {#text} at (0,1520) size 36x18 - text run at (0,1520) width 36: "pppp" - RenderBR {BR} at (36,1535) size 0x0 - RenderText {#text} at (0,1539) size 36x18 - text run at (0,1539) width 36: "qqqq" - RenderBR {BR} at (36,1554) size 0x0 - RenderText {#text} at (0,1558) size 20x18 - text run at (0,1558) width 20: "rrrr" - RenderBR {BR} at (20,1573) size 0x0 - RenderText {#text} at (0,1577) size 32x18 - text run at (0,1577) width 32: "ssss" - RenderBR {BR} at (32,1592) size 0x0 - RenderText {#text} at (0,1596) size 16x18 - text run at (0,1596) width 16: "tttt" - RenderBR {BR} at (16,1611) size 0x0 - RenderText {#text} at (0,1615) size 32x18 - text run at (0,1615) width 32: "uuuu" - RenderBR {BR} at (32,1630) size 0x0 - RenderText {#text} at (0,1634) size 28x18 - text run at (0,1634) width 28: "vvvv" - RenderBR {BR} at (28,1649) size 0x0 - RenderText {#text} at (0,1653) size 44x18 - text run at (0,1653) width 44: "wwww" - RenderBR {BR} at (44,1668) size 0x0 - RenderText {#text} at (0,1672) size 28x18 - text run at (0,1672) width 28: "xxxx" - RenderBR {BR} at (28,1687) size 0x0 - RenderText {#text} at (0,1691) size 28x18 - text run at (0,1691) width 28: "yyyy" - RenderBR {BR} at (28,1706) size 0x0 - RenderText {#text} at (0,1710) size 28x18 - text run at (0,1710) width 28: "zzzz" - RenderBR {BR} at (28,1725) size 0x0 - RenderText {#text} at (0,1729) size 20x18 - text run at (0,1729) width 20: "{{{{" - RenderBR {BR} at (20,1744) size 0x0 - RenderText {#text} at (0,1748) size 12x18 - text run at (0,1748) width 12: "||||" - RenderBR {BR} at (12,1763) size 0x0 - RenderText {#text} at (0,1767) size 20x18 - text run at (0,1767) width 20: "}}}}" - RenderBR {BR} at (20,1782) size 0x0 - RenderBlock (anonymous) at (0,1802) size 769x3776 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,75) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,335) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,355) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,375) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,415) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,435) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,455) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,475) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,495) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,515) size 0x0 - RenderText {#text} at (0,520) size 24x19 - text run at (0,520) width 24: "::::" - RenderBR {BR} at (24,535) size 0x0 - RenderText {#text} at (0,540) size 24x19 - text run at (0,540) width 24: ";;;;" - RenderBR {BR} at (24,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 40x19 - text run at (0,620) width 40: "????" - RenderBR {BR} at (40,635) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 48x19 - text run at (0,680) width 48: "BBBB" - RenderBR {BR} at (48,695) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,835) size 0x0 - RenderText {#text} at (0,840) size 36x19 - text run at (0,840) width 36: "JJJJ" - RenderBR {BR} at (36,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1315) size 0x0 - RenderText {#text} at (0,1320) size 40x19 - text run at (0,1320) width 40: "bbbb" - RenderBR {BR} at (40,1335) size 0x0 - RenderText {#text} at (0,1340) size 36x19 - text run at (0,1340) width 36: "cccc" - RenderBR {BR} at (36,1355) size 0x0 - RenderText {#text} at (0,1360) size 40x19 - text run at (0,1360) width 40: "dddd" - RenderBR {BR} at (40,1375) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 40x19 - text run at (0,1420) width 40: "gggg" - RenderBR {BR} at (40,1435) size 0x0 - RenderText {#text} at (0,1440) size 40x19 - text run at (0,1440) width 40: "hhhh" - RenderBR {BR} at (40,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1555) size 0x0 - RenderText {#text} at (0,1560) size 40x19 - text run at (0,1560) width 40: "nnnn" - RenderBR {BR} at (40,1575) size 0x0 - RenderText {#text} at (0,1580) size 40x19 - text run at (0,1580) width 40: "oooo" - RenderBR {BR} at (40,1595) size 0x0 - RenderText {#text} at (0,1600) size 40x19 - text run at (0,1600) width 40: "pppp" - RenderBR {BR} at (40,1615) size 0x0 - RenderText {#text} at (0,1620) size 40x19 - text run at (0,1620) width 40: "qqqq" - RenderBR {BR} at (40,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 36x19 - text run at (0,1660) width 36: "ssss" - RenderBR {BR} at (36,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 40x19 - text run at (0,1700) width 40: "uuuu" - RenderBR {BR} at (40,1715) size 0x0 - RenderText {#text} at (0,1720) size 36x19 - text run at (0,1720) width 36: "vvvv" - RenderBR {BR} at (36,1735) size 0x0 - RenderText {#text} at (0,1740) size 52x19 - text run at (0,1740) width 52: "wwww" - RenderBR {BR} at (52,1755) size 0x0 - RenderText {#text} at (0,1760) size 36x19 - text run at (0,1760) width 36: "xxxx" - RenderBR {BR} at (36,1775) size 0x0 - RenderText {#text} at (0,1780) size 36x19 - text run at (0,1780) width 36: "yyyy" - RenderBR {BR} at (36,1795) size 0x0 - RenderText {#text} at (0,1800) size 36x19 - text run at (0,1800) width 36: "zzzz" - RenderBR {BR} at (36,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {I} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,16) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,36) size 0x0 - RenderText {#text} at (0,40) size 24x19 - text run at (0,40) width 24: "\"\"\"\"" - RenderBR {BR} at (24,56) size 0x0 - RenderText {#text} at (0,60) size 36x19 - text run at (0,60) width 36: "####" - RenderBR {BR} at (36,76) size 0x0 - RenderText {#text} at (0,80) size 36x19 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,96) size 0x0 - RenderText {#text} at (0,100) size 56x19 - text run at (0,100) width 56: "%%%%" - RenderBR {BR} at (56,116) size 0x0 - RenderText {#text} at (0,120) size 44x19 - text run at (0,120) width 44: "&&&&" - RenderBR {BR} at (44,136) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,156) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,176) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,196) size 0x0 - RenderText {#text} at (0,200) size 24x19 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,216) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,236) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,256) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,276) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,296) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,316) size 0x0 - RenderText {#text} at (0,320) size 36x19 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,336) size 0x0 - RenderText {#text} at (0,340) size 36x19 - text run at (0,340) width 36: "1111" - RenderBR {BR} at (36,356) size 0x0 - RenderText {#text} at (0,360) size 36x19 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x19 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,396) size 0x0 - RenderText {#text} at (0,400) size 36x19 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,416) size 0x0 - RenderText {#text} at (0,420) size 36x19 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,436) size 0x0 - RenderText {#text} at (0,440) size 36x19 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,456) size 0x0 - RenderText {#text} at (0,460) size 36x19 - text run at (0,460) width 36: "7777" - RenderBR {BR} at (36,476) size 0x0 - RenderText {#text} at (0,480) size 36x19 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,496) size 0x0 - RenderText {#text} at (0,500) size 36x19 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,516) size 0x0 - RenderText {#text} at (0,520) size 16x19 - text run at (0,520) width 16: "::::" - RenderBR {BR} at (16,536) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,556) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,576) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,596) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,616) size 0x0 - RenderText {#text} at (0,620) size 36x19 - text run at (0,620) width 36: "????" - RenderBR {BR} at (36,636) size 0x0 - RenderText {#text} at (0,640) size 64x19 - text run at (0,640) width 64: "@@@@" - RenderBR {BR} at (64,656) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,676) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,696) size 0x0 - RenderText {#text} at (0,700) size 48x19 - text run at (0,700) width 48: "CCCC" - RenderBR {BR} at (48,716) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,736) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,756) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,776) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,796) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,816) size 0x0 - RenderText {#text} at (0,820) size 16x19 - text run at (0,820) width 16: "IIII" - RenderBR {BR} at (16,836) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,856) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,876) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,896) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,916) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,936) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,956) size 0x0 - RenderText {#text} at (0,960) size 44x19 - text run at (0,960) width 44: "PPPP" - RenderBR {BR} at (44,976) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,996) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1016) size 0x0 - RenderText {#text} at (0,1020) size 44x19 - text run at (0,1020) width 44: "SSSS" - RenderBR {BR} at (44,1036) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1056) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1076) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1096) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1116) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1136) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1156) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1176) size 0x0 - RenderText {#text} at (0,1180) size 16x19 - text run at (0,1180) width 16: "[[[[" - RenderBR {BR} at (16,1196) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1216) size 0x0 - RenderText {#text} at (0,1220) size 16x19 - text run at (0,1220) width 16: "]]]]" - RenderBR {BR} at (16,1236) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1256) size 0x0 - RenderText {#text} at (0,1260) size 36x19 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1276) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1296) size 0x0 - RenderText {#text} at (0,1300) size 36x19 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1316) size 0x0 - RenderText {#text} at (0,1320) size 36x19 - text run at (0,1320) width 36: "bbbb" - RenderBR {BR} at (36,1336) size 0x0 - RenderText {#text} at (0,1340) size 32x19 - text run at (0,1340) width 32: "cccc" - RenderBR {BR} at (32,1356) size 0x0 - RenderText {#text} at (0,1360) size 36x19 - text run at (0,1360) width 36: "dddd" - RenderBR {BR} at (36,1376) size 0x0 - RenderText {#text} at (0,1380) size 36x19 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1396) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1416) size 0x0 - RenderText {#text} at (0,1420) size 36x19 - text run at (0,1420) width 36: "gggg" - RenderBR {BR} at (36,1436) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1456) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1476) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1496) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1516) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1536) size 0x0 - RenderText {#text} at (0,1540) size 56x19 - text run at (0,1540) width 56: "mmmm" - RenderBR {BR} at (56,1556) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1576) size 0x0 - RenderText {#text} at (0,1580) size 36x19 - text run at (0,1580) width 36: "oooo" - RenderBR {BR} at (36,1596) size 0x0 - RenderText {#text} at (0,1600) size 36x19 - text run at (0,1600) width 36: "pppp" - RenderBR {BR} at (36,1616) size 0x0 - RenderText {#text} at (0,1620) size 36x19 - text run at (0,1620) width 36: "qqqq" - RenderBR {BR} at (36,1636) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1656) size 0x0 - RenderText {#text} at (0,1660) size 32x19 - text run at (0,1660) width 32: "ssss" - RenderBR {BR} at (32,1676) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1696) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1716) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1736) size 0x0 - RenderText {#text} at (0,1740) size 36x19 - text run at (0,1740) width 36: "wwww" - RenderBR {BR} at (36,1756) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1776) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1796) size 0x0 - RenderText {#text} at (0,1800) size 28x19 - text run at (0,1800) width 28: "zzzz" - RenderBR {BR} at (28,1816) size 0x0 - RenderText {#text} at (0,1820) size 20x19 - text run at (0,1820) width 20: "{{{{" - RenderBR {BR} at (20,1836) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1856) size 0x0 - RenderText {#text} at (0,1860) size 20x19 - text run at (0,1860) width 20: "}}}}" - RenderBR {BR} at (20,1876) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5594) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5594) size 769x1786 - RenderInline {FONT} at (0,0) size 64x1785 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 64x1785 - RenderInline {I} at (0,0) size 64x1785 - RenderText {#text} at (0,0) size 16x18 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,19) size 20x18 - text run at (0,19) width 20: "!!!!" - RenderBR {BR} at (20,34) size 0x0 - RenderText {#text} at (0,38) size 28x18 - text run at (0,38) width 28: "\"\"\"\"" - RenderBR {BR} at (28,53) size 0x0 - RenderText {#text} at (0,57) size 36x18 - text run at (0,57) width 36: "####" - RenderBR {BR} at (36,72) size 0x0 - RenderText {#text} at (0,76) size 36x18 - text run at (0,76) width 36: "$$$$" - RenderBR {BR} at (36,91) size 0x0 - RenderText {#text} at (0,95) size 56x18 - text run at (0,95) width 56: "%%%%" - RenderBR {BR} at (56,110) size 0x0 - RenderText {#text} at (0,114) size 48x18 - text run at (0,114) width 48: "&&&&" - RenderBR {BR} at (48,129) size 0x0 - RenderText {#text} at (0,133) size 12x18 - text run at (0,133) width 12: "''''" - RenderBR {BR} at (12,148) size 0x0 - RenderText {#text} at (0,152) size 20x18 - text run at (0,152) width 20: "((((" - RenderBR {BR} at (20,167) size 0x0 - RenderText {#text} at (0,171) size 24x18 - text run at (0,171) width 24: "))))" - RenderBR {BR} at (24,186) size 0x0 - RenderText {#text} at (0,190) size 24x18 - text run at (0,190) width 24: "****" - RenderBR {BR} at (24,205) size 0x0 - RenderText {#text} at (0,209) size 36x18 - text run at (0,209) width 36: "++++" - RenderBR {BR} at (36,224) size 0x0 - RenderText {#text} at (0,228) size 16x18 - text run at (0,228) width 16: ",,,," - RenderBR {BR} at (16,243) size 0x0 - RenderText {#text} at (0,247) size 20x18 - text run at (0,247) width 20: "----" - RenderBR {BR} at (20,262) size 0x0 - RenderText {#text} at (0,266) size 16x18 - text run at (0,266) width 16: "...." - RenderBR {BR} at (16,281) size 0x0 - RenderText {#text} at (0,285) size 16x18 - text run at (0,285) width 16: "////" - RenderBR {BR} at (16,300) size 0x0 - RenderText {#text} at (0,304) size 36x18 - text run at (0,304) width 36: "0000" - RenderBR {BR} at (36,319) size 0x0 - RenderText {#text} at (0,323) size 36x18 - text run at (0,323) width 36: "1111" - RenderBR {BR} at (36,338) size 0x0 - RenderText {#text} at (0,342) size 36x18 - text run at (0,342) width 36: "2222" - RenderBR {BR} at (36,357) size 0x0 - RenderText {#text} at (0,361) size 36x18 - text run at (0,361) width 36: "3333" - RenderBR {BR} at (36,376) size 0x0 - RenderText {#text} at (0,380) size 36x18 - text run at (0,380) width 36: "4444" - RenderBR {BR} at (36,395) size 0x0 - RenderText {#text} at (0,399) size 36x18 - text run at (0,399) width 36: "5555" - RenderBR {BR} at (36,414) size 0x0 - RenderText {#text} at (0,418) size 36x18 - text run at (0,418) width 36: "6666" - RenderBR {BR} at (36,433) size 0x0 - RenderText {#text} at (0,437) size 36x18 - text run at (0,437) width 36: "7777" - RenderBR {BR} at (36,452) size 0x0 - RenderText {#text} at (0,456) size 36x18 - text run at (0,456) width 36: "8888" - RenderBR {BR} at (36,471) size 0x0 - RenderText {#text} at (0,475) size 36x18 - text run at (0,475) width 36: "9999" - RenderBR {BR} at (36,490) size 0x0 - RenderText {#text} at (0,494) size 20x18 - text run at (0,494) width 20: "::::" - RenderBR {BR} at (20,509) size 0x0 - RenderText {#text} at (0,513) size 20x18 - text run at (0,513) width 20: ";;;;" - RenderBR {BR} at (20,528) size 0x0 - RenderText {#text} at (0,532) size 36x18 - text run at (0,532) width 36: "<<<<" - RenderBR {BR} at (36,547) size 0x0 - RenderText {#text} at (0,551) size 36x18 - text run at (0,551) width 36: "====" - RenderBR {BR} at (36,566) size 0x0 - RenderText {#text} at (0,570) size 36x18 - text run at (0,570) width 36: ">>>>" - RenderBR {BR} at (36,585) size 0x0 - RenderText {#text} at (0,589) size 40x18 - text run at (0,589) width 40: "????" - RenderBR {BR} at (40,604) size 0x0 - RenderText {#text} at (0,608) size 64x18 - text run at (0,608) width 64: "@@@@" - RenderBR {BR} at (64,623) size 0x0 - RenderText {#text} at (0,627) size 48x18 - text run at (0,627) width 48: "AAAA" - RenderBR {BR} at (48,642) size 0x0 - RenderText {#text} at (0,646) size 44x18 - text run at (0,646) width 44: "BBBB" - RenderBR {BR} at (44,661) size 0x0 - RenderText {#text} at (0,665) size 48x18 - text run at (0,665) width 48: "CCCC" - RenderBR {BR} at (48,680) size 0x0 - RenderText {#text} at (0,684) size 48x18 - text run at (0,684) width 48: "DDDD" - RenderBR {BR} at (48,699) size 0x0 - RenderText {#text} at (0,703) size 44x18 - text run at (0,703) width 44: "EEEE" - RenderBR {BR} at (44,718) size 0x0 - RenderText {#text} at (0,722) size 40x18 - text run at (0,722) width 40: "FFFF" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,741) size 48x18 - text run at (0,741) width 48: "GGGG" - RenderBR {BR} at (48,756) size 0x0 - RenderText {#text} at (0,760) size 48x18 - text run at (0,760) width 48: "HHHH" - RenderBR {BR} at (48,775) size 0x0 - RenderText {#text} at (0,779) size 20x18 - text run at (0,779) width 20: "IIII" - RenderBR {BR} at (20,794) size 0x0 - RenderText {#text} at (0,798) size 36x18 - text run at (0,798) width 36: "JJJJ" - RenderBR {BR} at (36,813) size 0x0 - RenderText {#text} at (0,817) size 48x18 - text run at (0,817) width 48: "KKKK" - RenderBR {BR} at (48,832) size 0x0 - RenderText {#text} at (0,836) size 40x18 - text run at (0,836) width 40: "LLLL" - RenderBR {BR} at (40,851) size 0x0 - RenderText {#text} at (0,855) size 56x18 - text run at (0,855) width 56: "MMMM" - RenderBR {BR} at (56,870) size 0x0 - RenderText {#text} at (0,874) size 48x18 - text run at (0,874) width 48: "NNNN" - RenderBR {BR} at (48,889) size 0x0 - RenderText {#text} at (0,893) size 48x18 - text run at (0,893) width 48: "OOOO" - RenderBR {BR} at (48,908) size 0x0 - RenderText {#text} at (0,912) size 44x18 - text run at (0,912) width 44: "PPPP" - RenderBR {BR} at (44,927) size 0x0 - RenderText {#text} at (0,931) size 48x18 - text run at (0,931) width 48: "QQQQ" - RenderBR {BR} at (48,946) size 0x0 - RenderText {#text} at (0,950) size 48x18 - text run at (0,950) width 48: "RRRR" - RenderBR {BR} at (48,965) size 0x0 - RenderText {#text} at (0,969) size 44x18 - text run at (0,969) width 44: "SSSS" - RenderBR {BR} at (44,984) size 0x0 - RenderText {#text} at (0,988) size 40x18 - text run at (0,988) width 40: "TTTT" - RenderBR {BR} at (40,1003) size 0x0 - RenderText {#text} at (0,1007) size 48x18 - text run at (0,1007) width 48: "UUUU" - RenderBR {BR} at (48,1022) size 0x0 - RenderText {#text} at (0,1026) size 44x18 - text run at (0,1026) width 44: "VVVV" - RenderBR {BR} at (44,1041) size 0x0 - RenderText {#text} at (0,1045) size 60x18 - text run at (0,1045) width 60: "WWWW" - RenderBR {BR} at (60,1060) size 0x0 - RenderText {#text} at (0,1064) size 44x18 - text run at (0,1064) width 44: "XXXX" - RenderBR {BR} at (44,1079) size 0x0 - RenderText {#text} at (0,1083) size 40x18 - text run at (0,1083) width 40: "YYYY" - RenderBR {BR} at (40,1098) size 0x0 - RenderText {#text} at (0,1102) size 40x18 - text run at (0,1102) width 40: "ZZZZ" - RenderBR {BR} at (40,1117) size 0x0 - RenderText {#text} at (0,1121) size 20x18 - text run at (0,1121) width 20: "[[[[" - RenderBR {BR} at (20,1136) size 0x0 - RenderText {#text} at (0,1140) size 16x18 - text run at (0,1140) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1155) size 0x0 - RenderText {#text} at (0,1159) size 16x18 - text run at (0,1159) width 16: "]]]]" - RenderBR {BR} at (16,1174) size 0x0 - RenderText {#text} at (0,1178) size 36x18 - text run at (0,1178) width 36: "^^^^" - RenderBR {BR} at (36,1193) size 0x0 - RenderText {#text} at (0,1197) size 36x18 - text run at (0,1197) width 36: "____" - RenderBR {BR} at (36,1212) size 0x0 - RenderText {#text} at (0,1216) size 20x18 - text run at (0,1216) width 20: "````" - RenderBR {BR} at (20,1231) size 0x0 - RenderText {#text} at (0,1235) size 36x18 - text run at (0,1235) width 36: "aaaa" - RenderBR {BR} at (36,1250) size 0x0 - RenderText {#text} at (0,1254) size 40x18 - text run at (0,1254) width 40: "bbbb" - RenderBR {BR} at (40,1269) size 0x0 - RenderText {#text} at (0,1273) size 32x18 - text run at (0,1273) width 32: "cccc" - RenderBR {BR} at (32,1288) size 0x0 - RenderText {#text} at (0,1292) size 36x18 - text run at (0,1292) width 36: "dddd" - RenderBR {BR} at (36,1307) size 0x0 - RenderText {#text} at (0,1311) size 36x18 - text run at (0,1311) width 36: "eeee" - RenderBR {BR} at (36,1326) size 0x0 - RenderText {#text} at (0,1330) size 20x18 - text run at (0,1330) width 20: "ffff" - RenderBR {BR} at (20,1345) size 0x0 - RenderText {#text} at (0,1349) size 36x18 - text run at (0,1349) width 36: "gggg" - RenderBR {BR} at (36,1364) size 0x0 - RenderText {#text} at (0,1368) size 40x18 - text run at (0,1368) width 40: "hhhh" - RenderBR {BR} at (40,1383) size 0x0 - RenderText {#text} at (0,1387) size 16x18 - text run at (0,1387) width 16: "iiii" - RenderBR {BR} at (16,1402) size 0x0 - RenderText {#text} at (0,1406) size 16x18 - text run at (0,1406) width 16: "jjjj" - RenderBR {BR} at (16,1421) size 0x0 - RenderText {#text} at (0,1425) size 36x18 - text run at (0,1425) width 36: "kkkk" - RenderBR {BR} at (36,1440) size 0x0 - RenderText {#text} at (0,1444) size 16x18 - text run at (0,1444) width 16: "llll" - RenderBR {BR} at (16,1459) size 0x0 - RenderText {#text} at (0,1463) size 56x18 - text run at (0,1463) width 56: "mmmm" - RenderBR {BR} at (56,1478) size 0x0 - RenderText {#text} at (0,1482) size 40x18 - text run at (0,1482) width 40: "nnnn" - RenderBR {BR} at (40,1497) size 0x0 - RenderText {#text} at (0,1501) size 40x18 - text run at (0,1501) width 40: "oooo" - RenderBR {BR} at (40,1516) size 0x0 - RenderText {#text} at (0,1520) size 36x18 - text run at (0,1520) width 36: "pppp" - RenderBR {BR} at (36,1535) size 0x0 - RenderText {#text} at (0,1539) size 36x18 - text run at (0,1539) width 36: "qqqq" - RenderBR {BR} at (36,1554) size 0x0 - RenderText {#text} at (0,1558) size 24x18 - text run at (0,1558) width 24: "rrrr" - RenderBR {BR} at (24,1573) size 0x0 - RenderText {#text} at (0,1577) size 36x18 - text run at (0,1577) width 36: "ssss" - RenderBR {BR} at (36,1592) size 0x0 - RenderText {#text} at (0,1596) size 20x18 - text run at (0,1596) width 20: "tttt" - RenderBR {BR} at (20,1611) size 0x0 - RenderText {#text} at (0,1615) size 40x18 - text run at (0,1615) width 40: "uuuu" - RenderBR {BR} at (40,1630) size 0x0 - RenderText {#text} at (0,1634) size 36x18 - text run at (0,1634) width 36: "vvvv" - RenderBR {BR} at (36,1649) size 0x0 - RenderText {#text} at (0,1653) size 52x18 - text run at (0,1653) width 52: "wwww" - RenderBR {BR} at (52,1668) size 0x0 - RenderText {#text} at (0,1672) size 36x18 - text run at (0,1672) width 36: "xxxx" - RenderBR {BR} at (36,1687) size 0x0 - RenderText {#text} at (0,1691) size 36x18 - text run at (0,1691) width 36: "yyyy" - RenderBR {BR} at (36,1706) size 0x0 - RenderText {#text} at (0,1710) size 28x18 - text run at (0,1710) width 28: "zzzz" - RenderBR {BR} at (28,1725) size 0x0 - RenderText {#text} at (0,1729) size 24x18 - text run at (0,1729) width 24: "{{{{" - RenderBR {BR} at (24,1744) size 0x0 - RenderText {#text} at (0,1748) size 16x18 - text run at (0,1748) width 16: "||||" - RenderBR {BR} at (16,1763) size 0x0 - RenderText {#text} at (0,1767) size 24x18 - text run at (0,1767) width 24: "}}}}" - RenderBR {BR} at (24,1782) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/helvetica.html b/webkit/data/layout_tests/chrome/fonts/helvetica.html deleted file mode 100644 index d184f52..0000000 --- a/webkit/data/layout_tests/chrome/fonts/helvetica.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face=Helvetica> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/impact-expected.checksum b/webkit/data/layout_tests/chrome/fonts/impact-expected.checksum deleted file mode 100644 index b3bf5b0..0000000 --- a/webkit/data/layout_tests/chrome/fonts/impact-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -a70adacf0c80881f4c0d0ef0eeb30764
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/impact-expected.png b/webkit/data/layout_tests/chrome/fonts/impact-expected.png Binary files differdeleted file mode 100644 index f6a6dbf..0000000 --- a/webkit/data/layout_tests/chrome/fonts/impact-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/impact-expected.txt b/webkit/data/layout_tests/chrome/fonts/impact-expected.txt deleted file mode 100644 index 3a9359b..0000000 --- a/webkit/data/layout_tests/chrome/fonts/impact-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7592 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7592 - RenderBlock {HTML} at (0,0) size 785x7592 - RenderBody {BODY} at (8,8) size 769x7568 - RenderBlock (anonymous) at (0,0) size 769x1880 - RenderInline {FONT} at (0,0) size 52x1880 - RenderText {#text} at (0,0) size 12x20 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,17) size 0x0 - RenderText {#text} at (0,20) size 16x20 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,37) size 0x0 - RenderText {#text} at (0,40) size 24x20 - text run at (0,40) width 24: "\"\"\"\"" - RenderBR {BR} at (24,57) size 0x0 - RenderText {#text} at (0,60) size 40x20 - text run at (0,60) width 40: "####" - RenderBR {BR} at (40,77) size 0x0 - RenderText {#text} at (0,80) size 36x20 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,97) size 0x0 - RenderText {#text} at (0,100) size 44x20 - text run at (0,100) width 44: "%%%%" - RenderBR {BR} at (44,117) size 0x0 - RenderText {#text} at (0,120) size 36x20 - text run at (0,120) width 36: "&&&&" - RenderBR {BR} at (36,137) size 0x0 - RenderText {#text} at (0,140) size 12x20 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,157) size 0x0 - RenderText {#text} at (0,160) size 20x20 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,177) size 0x0 - RenderText {#text} at (0,180) size 20x20 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,197) size 0x0 - RenderText {#text} at (0,200) size 20x20 - text run at (0,200) width 20: "****" - RenderBR {BR} at (20,217) size 0x0 - RenderText {#text} at (0,220) size 36x20 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,237) size 0x0 - RenderText {#text} at (0,240) size 12x20 - text run at (0,240) width 12: ",,,," - RenderBR {BR} at (12,257) size 0x0 - RenderText {#text} at (0,260) size 20x20 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,277) size 0x0 - RenderText {#text} at (0,280) size 12x20 - text run at (0,280) width 12: "...." - RenderBR {BR} at (12,297) size 0x0 - RenderText {#text} at (0,300) size 24x20 - text run at (0,300) width 24: "////" - RenderBR {BR} at (24,317) size 0x0 - RenderText {#text} at (0,320) size 36x20 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,337) size 0x0 - RenderText {#text} at (0,340) size 24x20 - text run at (0,340) width 24: "1111" - RenderBR {BR} at (24,357) size 0x0 - RenderText {#text} at (0,360) size 32x20 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x20 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,397) size 0x0 - RenderText {#text} at (0,400) size 32x20 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,417) size 0x0 - RenderText {#text} at (0,420) size 36x20 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,437) size 0x0 - RenderText {#text} at (0,440) size 36x20 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,457) size 0x0 - RenderText {#text} at (0,460) size 24x20 - text run at (0,460) width 24: "7777" - RenderBR {BR} at (24,477) size 0x0 - RenderText {#text} at (0,480) size 36x20 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,497) size 0x0 - RenderText {#text} at (0,500) size 36x20 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,517) size 0x0 - RenderText {#text} at (0,520) size 12x20 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,537) size 0x0 - RenderText {#text} at (0,540) size 12x20 - text run at (0,540) width 12: ";;;;" - RenderBR {BR} at (12,557) size 0x0 - RenderText {#text} at (0,560) size 36x20 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,577) size 0x0 - RenderText {#text} at (0,580) size 36x20 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,597) size 0x0 - RenderText {#text} at (0,600) size 36x20 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,617) size 0x0 - RenderText {#text} at (0,620) size 32x20 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,637) size 0x0 - RenderText {#text} at (0,640) size 48x20 - text run at (0,640) width 48: "@@@@" - RenderBR {BR} at (48,657) size 0x0 - RenderText {#text} at (0,660) size 28x20 - text run at (0,660) width 28: "AAAA" - RenderBR {BR} at (28,677) size 0x0 - RenderText {#text} at (0,680) size 36x20 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,697) size 0x0 - RenderText {#text} at (0,700) size 36x20 - text run at (0,700) width 36: "CCCC" - RenderBR {BR} at (36,717) size 0x0 - RenderText {#text} at (0,720) size 36x20 - text run at (0,720) width 36: "DDDD" - RenderBR {BR} at (36,737) size 0x0 - RenderText {#text} at (0,740) size 28x20 - text run at (0,740) width 28: "EEEE" - RenderBR {BR} at (28,757) size 0x0 - RenderText {#text} at (0,760) size 24x20 - text run at (0,760) width 24: "FFFF" - RenderBR {BR} at (24,777) size 0x0 - RenderText {#text} at (0,780) size 36x20 - text run at (0,780) width 36: "GGGG" - RenderBR {BR} at (36,797) size 0x0 - RenderText {#text} at (0,800) size 36x20 - text run at (0,800) width 36: "HHHH" - RenderBR {BR} at (36,817) size 0x0 - RenderText {#text} at (0,820) size 20x20 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,837) size 0x0 - RenderText {#text} at (0,840) size 20x20 - text run at (0,840) width 20: "JJJJ" - RenderBR {BR} at (20,857) size 0x0 - RenderText {#text} at (0,860) size 36x20 - text run at (0,860) width 36: "KKKK" - RenderBR {BR} at (36,877) size 0x0 - RenderText {#text} at (0,880) size 24x20 - text run at (0,880) width 24: "LLLL" - RenderBR {BR} at (24,897) size 0x0 - RenderText {#text} at (0,900) size 44x20 - text run at (0,900) width 44: "MMMM" - RenderBR {BR} at (44,917) size 0x0 - RenderText {#text} at (0,920) size 36x20 - text run at (0,920) width 36: "NNNN" - RenderBR {BR} at (36,937) size 0x0 - RenderText {#text} at (0,940) size 36x20 - text run at (0,940) width 36: "OOOO" - RenderBR {BR} at (36,957) size 0x0 - RenderText {#text} at (0,960) size 32x20 - text run at (0,960) width 32: "PPPP" - RenderBR {BR} at (32,977) size 0x0 - RenderText {#text} at (0,980) size 36x20 - text run at (0,980) width 36: "QQQQ" - RenderBR {BR} at (36,997) size 0x0 - RenderText {#text} at (0,1000) size 36x20 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1017) size 0x0 - RenderText {#text} at (0,1020) size 32x20 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1037) size 0x0 - RenderText {#text} at (0,1040) size 28x20 - text run at (0,1040) width 28: "TTTT" - RenderBR {BR} at (28,1057) size 0x0 - RenderText {#text} at (0,1060) size 36x20 - text run at (0,1060) width 36: "UUUU" - RenderBR {BR} at (36,1077) size 0x0 - RenderText {#text} at (0,1080) size 28x20 - text run at (0,1080) width 28: "VVVV" - RenderBR {BR} at (28,1097) size 0x0 - RenderText {#text} at (0,1100) size 52x20 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1117) size 0x0 - RenderText {#text} at (0,1120) size 28x20 - text run at (0,1120) width 28: "XXXX" - RenderBR {BR} at (28,1137) size 0x0 - RenderText {#text} at (0,1140) size 32x20 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1157) size 0x0 - RenderText {#text} at (0,1160) size 24x20 - text run at (0,1160) width 24: "ZZZZ" - RenderBR {BR} at (24,1177) size 0x0 - RenderText {#text} at (0,1180) size 20x20 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1197) size 0x0 - RenderText {#text} at (0,1200) size 24x20 - text run at (0,1200) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1217) size 0x0 - RenderText {#text} at (0,1220) size 20x20 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1237) size 0x0 - RenderText {#text} at (0,1240) size 32x20 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1257) size 0x0 - RenderText {#text} at (0,1260) size 36x20 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1277) size 0x0 - RenderText {#text} at (0,1280) size 20x20 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1297) size 0x0 - RenderText {#text} at (0,1300) size 32x20 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1317) size 0x0 - RenderText {#text} at (0,1320) size 32x20 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1337) size 0x0 - RenderText {#text} at (0,1340) size 32x20 - text run at (0,1340) width 32: "cccc" - RenderBR {BR} at (32,1357) size 0x0 - RenderText {#text} at (0,1360) size 32x20 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1377) size 0x0 - RenderText {#text} at (0,1380) size 32x20 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1397) size 0x0 - RenderText {#text} at (0,1400) size 20x20 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1417) size 0x0 - RenderText {#text} at (0,1420) size 32x20 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1437) size 0x0 - RenderText {#text} at (0,1440) size 32x20 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1457) size 0x0 - RenderText {#text} at (0,1460) size 16x20 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1477) size 0x0 - RenderText {#text} at (0,1480) size 16x20 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1497) size 0x0 - RenderText {#text} at (0,1500) size 32x20 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 16x20 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1537) size 0x0 - RenderText {#text} at (0,1540) size 48x20 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1557) size 0x0 - RenderText {#text} at (0,1560) size 32x20 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1577) size 0x0 - RenderText {#text} at (0,1580) size 32x20 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1597) size 0x0 - RenderText {#text} at (0,1600) size 32x20 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1617) size 0x0 - RenderText {#text} at (0,1620) size 32x20 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1637) size 0x0 - RenderText {#text} at (0,1640) size 24x20 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1657) size 0x0 - RenderText {#text} at (0,1660) size 32x20 - text run at (0,1660) width 32: "ssss" - RenderBR {BR} at (32,1677) size 0x0 - RenderText {#text} at (0,1680) size 20x20 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1697) size 0x0 - RenderText {#text} at (0,1700) size 32x20 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1717) size 0x0 - RenderText {#text} at (0,1720) size 32x20 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1737) size 0x0 - RenderText {#text} at (0,1740) size 40x20 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1757) size 0x0 - RenderText {#text} at (0,1760) size 24x20 - text run at (0,1760) width 24: "xxxx" - RenderBR {BR} at (24,1777) size 0x0 - RenderText {#text} at (0,1780) size 28x20 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1797) size 0x0 - RenderText {#text} at (0,1800) size 24x20 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1817) size 0x0 - RenderText {#text} at (0,1820) size 24x20 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1837) size 0x0 - RenderText {#text} at (0,1840) size 16x20 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1857) size 0x0 - RenderText {#text} at (0,1860) size 24x20 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1877) size 0x0 - RenderBlock (anonymous) at (0,1896) size 769x3776 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 56x1880 - RenderText {#text} at (0,0) size 16x20 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,17) size 0x0 - RenderText {#text} at (0,20) size 20x20 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,37) size 0x0 - RenderText {#text} at (0,40) size 28x20 - text run at (0,40) width 28: "\"\"\"\"" - RenderBR {BR} at (28,57) size 0x0 - RenderText {#text} at (0,60) size 44x20 - text run at (0,60) width 44: "####" - RenderBR {BR} at (44,77) size 0x0 - RenderText {#text} at (0,80) size 40x20 - text run at (0,80) width 40: "$$$$" - RenderBR {BR} at (40,97) size 0x0 - RenderText {#text} at (0,100) size 48x20 - text run at (0,100) width 48: "%%%%" - RenderBR {BR} at (48,117) size 0x0 - RenderText {#text} at (0,120) size 40x20 - text run at (0,120) width 40: "&&&&" - RenderBR {BR} at (40,137) size 0x0 - RenderText {#text} at (0,140) size 16x20 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,157) size 0x0 - RenderText {#text} at (0,160) size 24x20 - text run at (0,160) width 24: "((((" - RenderBR {BR} at (24,177) size 0x0 - RenderText {#text} at (0,180) size 24x20 - text run at (0,180) width 24: "))))" - RenderBR {BR} at (24,197) size 0x0 - RenderText {#text} at (0,200) size 24x20 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,217) size 0x0 - RenderText {#text} at (0,220) size 40x20 - text run at (0,220) width 40: "++++" - RenderBR {BR} at (40,237) size 0x0 - RenderText {#text} at (0,240) size 16x20 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,257) size 0x0 - RenderText {#text} at (0,260) size 24x20 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,277) size 0x0 - RenderText {#text} at (0,280) size 16x20 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,297) size 0x0 - RenderText {#text} at (0,300) size 28x20 - text run at (0,300) width 28: "////" - RenderBR {BR} at (28,317) size 0x0 - RenderText {#text} at (0,320) size 40x20 - text run at (0,320) width 40: "0000" - RenderBR {BR} at (40,337) size 0x0 - RenderText {#text} at (0,340) size 28x20 - text run at (0,340) width 28: "1111" - RenderBR {BR} at (28,357) size 0x0 - RenderText {#text} at (0,360) size 36x20 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,377) size 0x0 - RenderText {#text} at (0,380) size 36x20 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,397) size 0x0 - RenderText {#text} at (0,400) size 36x20 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,417) size 0x0 - RenderText {#text} at (0,420) size 40x20 - text run at (0,420) width 40: "5555" - RenderBR {BR} at (40,437) size 0x0 - RenderText {#text} at (0,440) size 40x20 - text run at (0,440) width 40: "6666" - RenderBR {BR} at (40,457) size 0x0 - RenderText {#text} at (0,460) size 28x20 - text run at (0,460) width 28: "7777" - RenderBR {BR} at (28,477) size 0x0 - RenderText {#text} at (0,480) size 40x20 - text run at (0,480) width 40: "8888" - RenderBR {BR} at (40,497) size 0x0 - RenderText {#text} at (0,500) size 40x20 - text run at (0,500) width 40: "9999" - RenderBR {BR} at (40,517) size 0x0 - RenderText {#text} at (0,520) size 16x20 - text run at (0,520) width 16: "::::" - RenderBR {BR} at (16,537) size 0x0 - RenderText {#text} at (0,540) size 16x20 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,557) size 0x0 - RenderText {#text} at (0,560) size 40x20 - text run at (0,560) width 40: "<<<<" - RenderBR {BR} at (40,577) size 0x0 - RenderText {#text} at (0,580) size 40x20 - text run at (0,580) width 40: "====" - RenderBR {BR} at (40,597) size 0x0 - RenderText {#text} at (0,600) size 40x20 - text run at (0,600) width 40: ">>>>" - RenderBR {BR} at (40,617) size 0x0 - RenderText {#text} at (0,620) size 36x20 - text run at (0,620) width 36: "????" - RenderBR {BR} at (36,637) size 0x0 - RenderText {#text} at (0,640) size 52x20 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,657) size 0x0 - RenderText {#text} at (0,660) size 32x20 - text run at (0,660) width 32: "AAAA" - RenderBR {BR} at (32,677) size 0x0 - RenderText {#text} at (0,680) size 40x20 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,697) size 0x0 - RenderText {#text} at (0,700) size 40x20 - text run at (0,700) width 40: "CCCC" - RenderBR {BR} at (40,717) size 0x0 - RenderText {#text} at (0,720) size 40x20 - text run at (0,720) width 40: "DDDD" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,740) size 32x20 - text run at (0,740) width 32: "EEEE" - RenderBR {BR} at (32,757) size 0x0 - RenderText {#text} at (0,760) size 28x20 - text run at (0,760) width 28: "FFFF" - RenderBR {BR} at (28,777) size 0x0 - RenderText {#text} at (0,780) size 40x20 - text run at (0,780) width 40: "GGGG" - RenderBR {BR} at (40,797) size 0x0 - RenderText {#text} at (0,800) size 40x20 - text run at (0,800) width 40: "HHHH" - RenderBR {BR} at (40,817) size 0x0 - RenderText {#text} at (0,820) size 24x20 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,837) size 0x0 - RenderText {#text} at (0,840) size 24x20 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,857) size 0x0 - RenderText {#text} at (0,860) size 40x20 - text run at (0,860) width 40: "KKKK" - RenderBR {BR} at (40,877) size 0x0 - RenderText {#text} at (0,880) size 28x20 - text run at (0,880) width 28: "LLLL" - RenderBR {BR} at (28,897) size 0x0 - RenderText {#text} at (0,900) size 48x20 - text run at (0,900) width 48: "MMMM" - RenderBR {BR} at (48,917) size 0x0 - RenderText {#text} at (0,920) size 40x20 - text run at (0,920) width 40: "NNNN" - RenderBR {BR} at (40,937) size 0x0 - RenderText {#text} at (0,940) size 40x20 - text run at (0,940) width 40: "OOOO" - RenderBR {BR} at (40,957) size 0x0 - RenderText {#text} at (0,960) size 36x20 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,977) size 0x0 - RenderText {#text} at (0,980) size 40x20 - text run at (0,980) width 40: "QQQQ" - RenderBR {BR} at (40,997) size 0x0 - RenderText {#text} at (0,1000) size 40x20 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1017) size 0x0 - RenderText {#text} at (0,1020) size 36x20 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1037) size 0x0 - RenderText {#text} at (0,1040) size 32x20 - text run at (0,1040) width 32: "TTTT" - RenderBR {BR} at (32,1057) size 0x0 - RenderText {#text} at (0,1060) size 40x20 - text run at (0,1060) width 40: "UUUU" - RenderBR {BR} at (40,1077) size 0x0 - RenderText {#text} at (0,1080) size 32x20 - text run at (0,1080) width 32: "VVVV" - RenderBR {BR} at (32,1097) size 0x0 - RenderText {#text} at (0,1100) size 56x20 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1117) size 0x0 - RenderText {#text} at (0,1120) size 32x20 - text run at (0,1120) width 32: "XXXX" - RenderBR {BR} at (32,1137) size 0x0 - RenderText {#text} at (0,1140) size 36x20 - text run at (0,1140) width 36: "YYYY" - RenderBR {BR} at (36,1157) size 0x0 - RenderText {#text} at (0,1160) size 28x20 - text run at (0,1160) width 28: "ZZZZ" - RenderBR {BR} at (28,1177) size 0x0 - RenderText {#text} at (0,1180) size 24x20 - text run at (0,1180) width 24: "[[[[" - RenderBR {BR} at (24,1197) size 0x0 - RenderText {#text} at (0,1200) size 28x20 - text run at (0,1200) width 28: "\\\\\\\\" - RenderBR {BR} at (28,1217) size 0x0 - RenderText {#text} at (0,1220) size 24x20 - text run at (0,1220) width 24: "]]]]" - RenderBR {BR} at (24,1237) size 0x0 - RenderText {#text} at (0,1240) size 36x20 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1257) size 0x0 - RenderText {#text} at (0,1260) size 40x20 - text run at (0,1260) width 40: "____" - RenderBR {BR} at (40,1277) size 0x0 - RenderText {#text} at (0,1280) size 24x20 - text run at (0,1280) width 24: "````" - RenderBR {BR} at (24,1297) size 0x0 - RenderText {#text} at (0,1300) size 36x20 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1317) size 0x0 - RenderText {#text} at (0,1320) size 36x20 - text run at (0,1320) width 36: "bbbb" - RenderBR {BR} at (36,1337) size 0x0 - RenderText {#text} at (0,1340) size 36x20 - text run at (0,1340) width 36: "cccc" - RenderBR {BR} at (36,1357) size 0x0 - RenderText {#text} at (0,1360) size 36x20 - text run at (0,1360) width 36: "dddd" - RenderBR {BR} at (36,1377) size 0x0 - RenderText {#text} at (0,1380) size 36x20 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1397) size 0x0 - RenderText {#text} at (0,1400) size 24x20 - text run at (0,1400) width 24: "ffff" - RenderBR {BR} at (24,1417) size 0x0 - RenderText {#text} at (0,1420) size 36x20 - text run at (0,1420) width 36: "gggg" - RenderBR {BR} at (36,1437) size 0x0 - RenderText {#text} at (0,1440) size 36x20 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1457) size 0x0 - RenderText {#text} at (0,1460) size 20x20 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1477) size 0x0 - RenderText {#text} at (0,1480) size 20x20 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1497) size 0x0 - RenderText {#text} at (0,1500) size 36x20 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1517) size 0x0 - RenderText {#text} at (0,1520) size 20x20 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1537) size 0x0 - RenderText {#text} at (0,1540) size 52x20 - text run at (0,1540) width 52: "mmmm" - RenderBR {BR} at (52,1557) size 0x0 - RenderText {#text} at (0,1560) size 36x20 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1577) size 0x0 - RenderText {#text} at (0,1580) size 36x20 - text run at (0,1580) width 36: "oooo" - RenderBR {BR} at (36,1597) size 0x0 - RenderText {#text} at (0,1600) size 36x20 - text run at (0,1600) width 36: "pppp" - RenderBR {BR} at (36,1617) size 0x0 - RenderText {#text} at (0,1620) size 36x20 - text run at (0,1620) width 36: "qqqq" - RenderBR {BR} at (36,1637) size 0x0 - RenderText {#text} at (0,1640) size 28x20 - text run at (0,1640) width 28: "rrrr" - RenderBR {BR} at (28,1657) size 0x0 - RenderText {#text} at (0,1660) size 36x20 - text run at (0,1660) width 36: "ssss" - RenderBR {BR} at (36,1677) size 0x0 - RenderText {#text} at (0,1680) size 24x20 - text run at (0,1680) width 24: "tttt" - RenderBR {BR} at (24,1697) size 0x0 - RenderText {#text} at (0,1700) size 36x20 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1717) size 0x0 - RenderText {#text} at (0,1720) size 36x20 - text run at (0,1720) width 36: "vvvv" - RenderBR {BR} at (36,1737) size 0x0 - RenderText {#text} at (0,1740) size 44x20 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1757) size 0x0 - RenderText {#text} at (0,1760) size 28x20 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1777) size 0x0 - RenderText {#text} at (0,1780) size 32x20 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1797) size 0x0 - RenderText {#text} at (0,1800) size 28x20 - text run at (0,1800) width 28: "zzzz" - RenderBR {BR} at (28,1817) size 0x0 - RenderText {#text} at (0,1820) size 28x20 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1837) size 0x0 - RenderText {#text} at (0,1840) size 20x20 - text run at (0,1840) width 20: "||||" - RenderBR {BR} at (20,1857) size 0x0 - RenderText {#text} at (0,1860) size 28x20 - text run at (0,1860) width 28: "}}}}" - RenderBR {BR} at (28,1877) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {I} at (0,0) size 52x1880 - RenderText {#text} at (0,0) size 12x20 - text run at (0,0) width 12: " " - RenderBR {BR} at (12,17) size 0x0 - RenderText {#text} at (0,20) size 16x20 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,37) size 0x0 - RenderText {#text} at (0,40) size 24x20 - text run at (0,40) width 24: "\"\"\"\"" - RenderBR {BR} at (24,57) size 0x0 - RenderText {#text} at (0,60) size 40x20 - text run at (0,60) width 40: "####" - RenderBR {BR} at (40,77) size 0x0 - RenderText {#text} at (0,80) size 36x20 - text run at (0,80) width 36: "$$$$" - RenderBR {BR} at (36,97) size 0x0 - RenderText {#text} at (0,100) size 44x20 - text run at (0,100) width 44: "%%%%" - RenderBR {BR} at (44,117) size 0x0 - RenderText {#text} at (0,120) size 36x20 - text run at (0,120) width 36: "&&&&" - RenderBR {BR} at (36,137) size 0x0 - RenderText {#text} at (0,140) size 12x20 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,157) size 0x0 - RenderText {#text} at (0,160) size 20x20 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,177) size 0x0 - RenderText {#text} at (0,180) size 20x20 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,197) size 0x0 - RenderText {#text} at (0,200) size 20x20 - text run at (0,200) width 20: "****" - RenderBR {BR} at (20,217) size 0x0 - RenderText {#text} at (0,220) size 36x20 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,237) size 0x0 - RenderText {#text} at (0,240) size 12x20 - text run at (0,240) width 12: ",,,," - RenderBR {BR} at (12,257) size 0x0 - RenderText {#text} at (0,260) size 20x20 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,277) size 0x0 - RenderText {#text} at (0,280) size 12x20 - text run at (0,280) width 12: "...." - RenderBR {BR} at (12,297) size 0x0 - RenderText {#text} at (0,300) size 24x20 - text run at (0,300) width 24: "////" - RenderBR {BR} at (24,317) size 0x0 - RenderText {#text} at (0,320) size 36x20 - text run at (0,320) width 36: "0000" - RenderBR {BR} at (36,337) size 0x0 - RenderText {#text} at (0,340) size 24x20 - text run at (0,340) width 24: "1111" - RenderBR {BR} at (24,357) size 0x0 - RenderText {#text} at (0,360) size 32x20 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,377) size 0x0 - RenderText {#text} at (0,380) size 32x20 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,397) size 0x0 - RenderText {#text} at (0,400) size 32x20 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,417) size 0x0 - RenderText {#text} at (0,420) size 36x20 - text run at (0,420) width 36: "5555" - RenderBR {BR} at (36,437) size 0x0 - RenderText {#text} at (0,440) size 36x20 - text run at (0,440) width 36: "6666" - RenderBR {BR} at (36,457) size 0x0 - RenderText {#text} at (0,460) size 24x20 - text run at (0,460) width 24: "7777" - RenderBR {BR} at (24,477) size 0x0 - RenderText {#text} at (0,480) size 36x20 - text run at (0,480) width 36: "8888" - RenderBR {BR} at (36,497) size 0x0 - RenderText {#text} at (0,500) size 36x20 - text run at (0,500) width 36: "9999" - RenderBR {BR} at (36,517) size 0x0 - RenderText {#text} at (0,520) size 12x20 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,537) size 0x0 - RenderText {#text} at (0,540) size 12x20 - text run at (0,540) width 12: ";;;;" - RenderBR {BR} at (12,557) size 0x0 - RenderText {#text} at (0,560) size 36x20 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,577) size 0x0 - RenderText {#text} at (0,580) size 36x20 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,597) size 0x0 - RenderText {#text} at (0,600) size 36x20 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,617) size 0x0 - RenderText {#text} at (0,620) size 32x20 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,637) size 0x0 - RenderText {#text} at (0,640) size 48x20 - text run at (0,640) width 48: "@@@@" - RenderBR {BR} at (48,657) size 0x0 - RenderText {#text} at (0,660) size 28x20 - text run at (0,660) width 28: "AAAA" - RenderBR {BR} at (28,677) size 0x0 - RenderText {#text} at (0,680) size 36x20 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,697) size 0x0 - RenderText {#text} at (0,700) size 36x20 - text run at (0,700) width 36: "CCCC" - RenderBR {BR} at (36,717) size 0x0 - RenderText {#text} at (0,720) size 36x20 - text run at (0,720) width 36: "DDDD" - RenderBR {BR} at (36,737) size 0x0 - RenderText {#text} at (0,740) size 28x20 - text run at (0,740) width 28: "EEEE" - RenderBR {BR} at (28,757) size 0x0 - RenderText {#text} at (0,760) size 24x20 - text run at (0,760) width 24: "FFFF" - RenderBR {BR} at (24,777) size 0x0 - RenderText {#text} at (0,780) size 36x20 - text run at (0,780) width 36: "GGGG" - RenderBR {BR} at (36,797) size 0x0 - RenderText {#text} at (0,800) size 36x20 - text run at (0,800) width 36: "HHHH" - RenderBR {BR} at (36,817) size 0x0 - RenderText {#text} at (0,820) size 20x20 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,837) size 0x0 - RenderText {#text} at (0,840) size 20x20 - text run at (0,840) width 20: "JJJJ" - RenderBR {BR} at (20,857) size 0x0 - RenderText {#text} at (0,860) size 36x20 - text run at (0,860) width 36: "KKKK" - RenderBR {BR} at (36,877) size 0x0 - RenderText {#text} at (0,880) size 24x20 - text run at (0,880) width 24: "LLLL" - RenderBR {BR} at (24,897) size 0x0 - RenderText {#text} at (0,900) size 44x20 - text run at (0,900) width 44: "MMMM" - RenderBR {BR} at (44,917) size 0x0 - RenderText {#text} at (0,920) size 36x20 - text run at (0,920) width 36: "NNNN" - RenderBR {BR} at (36,937) size 0x0 - RenderText {#text} at (0,940) size 36x20 - text run at (0,940) width 36: "OOOO" - RenderBR {BR} at (36,957) size 0x0 - RenderText {#text} at (0,960) size 32x20 - text run at (0,960) width 32: "PPPP" - RenderBR {BR} at (32,977) size 0x0 - RenderText {#text} at (0,980) size 36x20 - text run at (0,980) width 36: "QQQQ" - RenderBR {BR} at (36,997) size 0x0 - RenderText {#text} at (0,1000) size 36x20 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1017) size 0x0 - RenderText {#text} at (0,1020) size 32x20 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1037) size 0x0 - RenderText {#text} at (0,1040) size 28x20 - text run at (0,1040) width 28: "TTTT" - RenderBR {BR} at (28,1057) size 0x0 - RenderText {#text} at (0,1060) size 36x20 - text run at (0,1060) width 36: "UUUU" - RenderBR {BR} at (36,1077) size 0x0 - RenderText {#text} at (0,1080) size 28x20 - text run at (0,1080) width 28: "VVVV" - RenderBR {BR} at (28,1097) size 0x0 - RenderText {#text} at (0,1100) size 52x20 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1117) size 0x0 - RenderText {#text} at (0,1120) size 28x20 - text run at (0,1120) width 28: "XXXX" - RenderBR {BR} at (28,1137) size 0x0 - RenderText {#text} at (0,1140) size 32x20 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1157) size 0x0 - RenderText {#text} at (0,1160) size 24x20 - text run at (0,1160) width 24: "ZZZZ" - RenderBR {BR} at (24,1177) size 0x0 - RenderText {#text} at (0,1180) size 20x20 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1197) size 0x0 - RenderText {#text} at (0,1200) size 24x20 - text run at (0,1200) width 24: "\\\\\\\\" - RenderBR {BR} at (24,1217) size 0x0 - RenderText {#text} at (0,1220) size 20x20 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1237) size 0x0 - RenderText {#text} at (0,1240) size 32x20 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1257) size 0x0 - RenderText {#text} at (0,1260) size 36x20 - text run at (0,1260) width 36: "____" - RenderBR {BR} at (36,1277) size 0x0 - RenderText {#text} at (0,1280) size 20x20 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1297) size 0x0 - RenderText {#text} at (0,1300) size 32x20 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1317) size 0x0 - RenderText {#text} at (0,1320) size 32x20 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1337) size 0x0 - RenderText {#text} at (0,1340) size 32x20 - text run at (0,1340) width 32: "cccc" - RenderBR {BR} at (32,1357) size 0x0 - RenderText {#text} at (0,1360) size 32x20 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1377) size 0x0 - RenderText {#text} at (0,1380) size 32x20 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1397) size 0x0 - RenderText {#text} at (0,1400) size 20x20 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1417) size 0x0 - RenderText {#text} at (0,1420) size 32x20 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1437) size 0x0 - RenderText {#text} at (0,1440) size 32x20 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1457) size 0x0 - RenderText {#text} at (0,1460) size 16x20 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1477) size 0x0 - RenderText {#text} at (0,1480) size 16x20 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1497) size 0x0 - RenderText {#text} at (0,1500) size 32x20 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1517) size 0x0 - RenderText {#text} at (0,1520) size 16x20 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1537) size 0x0 - RenderText {#text} at (0,1540) size 48x20 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1557) size 0x0 - RenderText {#text} at (0,1560) size 32x20 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1577) size 0x0 - RenderText {#text} at (0,1580) size 32x20 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1597) size 0x0 - RenderText {#text} at (0,1600) size 32x20 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1617) size 0x0 - RenderText {#text} at (0,1620) size 32x20 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1637) size 0x0 - RenderText {#text} at (0,1640) size 24x20 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1657) size 0x0 - RenderText {#text} at (0,1660) size 32x20 - text run at (0,1660) width 32: "ssss" - RenderBR {BR} at (32,1677) size 0x0 - RenderText {#text} at (0,1680) size 20x20 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1697) size 0x0 - RenderText {#text} at (0,1700) size 32x20 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1717) size 0x0 - RenderText {#text} at (0,1720) size 32x20 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1737) size 0x0 - RenderText {#text} at (0,1740) size 40x20 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1757) size 0x0 - RenderText {#text} at (0,1760) size 24x20 - text run at (0,1760) width 24: "xxxx" - RenderBR {BR} at (24,1777) size 0x0 - RenderText {#text} at (0,1780) size 28x20 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1797) size 0x0 - RenderText {#text} at (0,1800) size 24x20 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1817) size 0x0 - RenderText {#text} at (0,1820) size 24x20 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1837) size 0x0 - RenderText {#text} at (0,1840) size 16x20 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1857) size 0x0 - RenderText {#text} at (0,1860) size 24x20 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1877) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5688) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5688) size 769x1880 - RenderInline {FONT} at (0,0) size 56x1880 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 56x1880 - RenderInline {I} at (0,0) size 56x1880 - RenderText {#text} at (0,0) size 16x20 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,17) size 0x0 - RenderText {#text} at (0,20) size 20x20 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,37) size 0x0 - RenderText {#text} at (0,40) size 28x20 - text run at (0,40) width 28: "\"\"\"\"" - RenderBR {BR} at (28,57) size 0x0 - RenderText {#text} at (0,60) size 44x20 - text run at (0,60) width 44: "####" - RenderBR {BR} at (44,77) size 0x0 - RenderText {#text} at (0,80) size 40x20 - text run at (0,80) width 40: "$$$$" - RenderBR {BR} at (40,97) size 0x0 - RenderText {#text} at (0,100) size 48x20 - text run at (0,100) width 48: "%%%%" - RenderBR {BR} at (48,117) size 0x0 - RenderText {#text} at (0,120) size 40x20 - text run at (0,120) width 40: "&&&&" - RenderBR {BR} at (40,137) size 0x0 - RenderText {#text} at (0,140) size 16x20 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,157) size 0x0 - RenderText {#text} at (0,160) size 24x20 - text run at (0,160) width 24: "((((" - RenderBR {BR} at (24,177) size 0x0 - RenderText {#text} at (0,180) size 24x20 - text run at (0,180) width 24: "))))" - RenderBR {BR} at (24,197) size 0x0 - RenderText {#text} at (0,200) size 24x20 - text run at (0,200) width 24: "****" - RenderBR {BR} at (24,217) size 0x0 - RenderText {#text} at (0,220) size 40x20 - text run at (0,220) width 40: "++++" - RenderBR {BR} at (40,237) size 0x0 - RenderText {#text} at (0,240) size 16x20 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,257) size 0x0 - RenderText {#text} at (0,260) size 24x20 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,277) size 0x0 - RenderText {#text} at (0,280) size 16x20 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,297) size 0x0 - RenderText {#text} at (0,300) size 28x20 - text run at (0,300) width 28: "////" - RenderBR {BR} at (28,317) size 0x0 - RenderText {#text} at (0,320) size 40x20 - text run at (0,320) width 40: "0000" - RenderBR {BR} at (40,337) size 0x0 - RenderText {#text} at (0,340) size 28x20 - text run at (0,340) width 28: "1111" - RenderBR {BR} at (28,357) size 0x0 - RenderText {#text} at (0,360) size 36x20 - text run at (0,360) width 36: "2222" - RenderBR {BR} at (36,377) size 0x0 - RenderText {#text} at (0,380) size 36x20 - text run at (0,380) width 36: "3333" - RenderBR {BR} at (36,397) size 0x0 - RenderText {#text} at (0,400) size 36x20 - text run at (0,400) width 36: "4444" - RenderBR {BR} at (36,417) size 0x0 - RenderText {#text} at (0,420) size 40x20 - text run at (0,420) width 40: "5555" - RenderBR {BR} at (40,437) size 0x0 - RenderText {#text} at (0,440) size 40x20 - text run at (0,440) width 40: "6666" - RenderBR {BR} at (40,457) size 0x0 - RenderText {#text} at (0,460) size 28x20 - text run at (0,460) width 28: "7777" - RenderBR {BR} at (28,477) size 0x0 - RenderText {#text} at (0,480) size 40x20 - text run at (0,480) width 40: "8888" - RenderBR {BR} at (40,497) size 0x0 - RenderText {#text} at (0,500) size 40x20 - text run at (0,500) width 40: "9999" - RenderBR {BR} at (40,517) size 0x0 - RenderText {#text} at (0,520) size 16x20 - text run at (0,520) width 16: "::::" - RenderBR {BR} at (16,537) size 0x0 - RenderText {#text} at (0,540) size 16x20 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,557) size 0x0 - RenderText {#text} at (0,560) size 40x20 - text run at (0,560) width 40: "<<<<" - RenderBR {BR} at (40,577) size 0x0 - RenderText {#text} at (0,580) size 40x20 - text run at (0,580) width 40: "====" - RenderBR {BR} at (40,597) size 0x0 - RenderText {#text} at (0,600) size 40x20 - text run at (0,600) width 40: ">>>>" - RenderBR {BR} at (40,617) size 0x0 - RenderText {#text} at (0,620) size 36x20 - text run at (0,620) width 36: "????" - RenderBR {BR} at (36,637) size 0x0 - RenderText {#text} at (0,640) size 52x20 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,657) size 0x0 - RenderText {#text} at (0,660) size 32x20 - text run at (0,660) width 32: "AAAA" - RenderBR {BR} at (32,677) size 0x0 - RenderText {#text} at (0,680) size 40x20 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,697) size 0x0 - RenderText {#text} at (0,700) size 40x20 - text run at (0,700) width 40: "CCCC" - RenderBR {BR} at (40,717) size 0x0 - RenderText {#text} at (0,720) size 40x20 - text run at (0,720) width 40: "DDDD" - RenderBR {BR} at (40,737) size 0x0 - RenderText {#text} at (0,740) size 32x20 - text run at (0,740) width 32: "EEEE" - RenderBR {BR} at (32,757) size 0x0 - RenderText {#text} at (0,760) size 28x20 - text run at (0,760) width 28: "FFFF" - RenderBR {BR} at (28,777) size 0x0 - RenderText {#text} at (0,780) size 40x20 - text run at (0,780) width 40: "GGGG" - RenderBR {BR} at (40,797) size 0x0 - RenderText {#text} at (0,800) size 40x20 - text run at (0,800) width 40: "HHHH" - RenderBR {BR} at (40,817) size 0x0 - RenderText {#text} at (0,820) size 24x20 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,837) size 0x0 - RenderText {#text} at (0,840) size 24x20 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,857) size 0x0 - RenderText {#text} at (0,860) size 40x20 - text run at (0,860) width 40: "KKKK" - RenderBR {BR} at (40,877) size 0x0 - RenderText {#text} at (0,880) size 28x20 - text run at (0,880) width 28: "LLLL" - RenderBR {BR} at (28,897) size 0x0 - RenderText {#text} at (0,900) size 48x20 - text run at (0,900) width 48: "MMMM" - RenderBR {BR} at (48,917) size 0x0 - RenderText {#text} at (0,920) size 40x20 - text run at (0,920) width 40: "NNNN" - RenderBR {BR} at (40,937) size 0x0 - RenderText {#text} at (0,940) size 40x20 - text run at (0,940) width 40: "OOOO" - RenderBR {BR} at (40,957) size 0x0 - RenderText {#text} at (0,960) size 36x20 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,977) size 0x0 - RenderText {#text} at (0,980) size 40x20 - text run at (0,980) width 40: "QQQQ" - RenderBR {BR} at (40,997) size 0x0 - RenderText {#text} at (0,1000) size 40x20 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1017) size 0x0 - RenderText {#text} at (0,1020) size 36x20 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1037) size 0x0 - RenderText {#text} at (0,1040) size 32x20 - text run at (0,1040) width 32: "TTTT" - RenderBR {BR} at (32,1057) size 0x0 - RenderText {#text} at (0,1060) size 40x20 - text run at (0,1060) width 40: "UUUU" - RenderBR {BR} at (40,1077) size 0x0 - RenderText {#text} at (0,1080) size 32x20 - text run at (0,1080) width 32: "VVVV" - RenderBR {BR} at (32,1097) size 0x0 - RenderText {#text} at (0,1100) size 56x20 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1117) size 0x0 - RenderText {#text} at (0,1120) size 32x20 - text run at (0,1120) width 32: "XXXX" - RenderBR {BR} at (32,1137) size 0x0 - RenderText {#text} at (0,1140) size 36x20 - text run at (0,1140) width 36: "YYYY" - RenderBR {BR} at (36,1157) size 0x0 - RenderText {#text} at (0,1160) size 28x20 - text run at (0,1160) width 28: "ZZZZ" - RenderBR {BR} at (28,1177) size 0x0 - RenderText {#text} at (0,1180) size 24x20 - text run at (0,1180) width 24: "[[[[" - RenderBR {BR} at (24,1197) size 0x0 - RenderText {#text} at (0,1200) size 28x20 - text run at (0,1200) width 28: "\\\\\\\\" - RenderBR {BR} at (28,1217) size 0x0 - RenderText {#text} at (0,1220) size 24x20 - text run at (0,1220) width 24: "]]]]" - RenderBR {BR} at (24,1237) size 0x0 - RenderText {#text} at (0,1240) size 36x20 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1257) size 0x0 - RenderText {#text} at (0,1260) size 40x20 - text run at (0,1260) width 40: "____" - RenderBR {BR} at (40,1277) size 0x0 - RenderText {#text} at (0,1280) size 24x20 - text run at (0,1280) width 24: "````" - RenderBR {BR} at (24,1297) size 0x0 - RenderText {#text} at (0,1300) size 36x20 - text run at (0,1300) width 36: "aaaa" - RenderBR {BR} at (36,1317) size 0x0 - RenderText {#text} at (0,1320) size 36x20 - text run at (0,1320) width 36: "bbbb" - RenderBR {BR} at (36,1337) size 0x0 - RenderText {#text} at (0,1340) size 36x20 - text run at (0,1340) width 36: "cccc" - RenderBR {BR} at (36,1357) size 0x0 - RenderText {#text} at (0,1360) size 36x20 - text run at (0,1360) width 36: "dddd" - RenderBR {BR} at (36,1377) size 0x0 - RenderText {#text} at (0,1380) size 36x20 - text run at (0,1380) width 36: "eeee" - RenderBR {BR} at (36,1397) size 0x0 - RenderText {#text} at (0,1400) size 24x20 - text run at (0,1400) width 24: "ffff" - RenderBR {BR} at (24,1417) size 0x0 - RenderText {#text} at (0,1420) size 36x20 - text run at (0,1420) width 36: "gggg" - RenderBR {BR} at (36,1437) size 0x0 - RenderText {#text} at (0,1440) size 36x20 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1457) size 0x0 - RenderText {#text} at (0,1460) size 20x20 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1477) size 0x0 - RenderText {#text} at (0,1480) size 20x20 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1497) size 0x0 - RenderText {#text} at (0,1500) size 36x20 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1517) size 0x0 - RenderText {#text} at (0,1520) size 20x20 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1537) size 0x0 - RenderText {#text} at (0,1540) size 52x20 - text run at (0,1540) width 52: "mmmm" - RenderBR {BR} at (52,1557) size 0x0 - RenderText {#text} at (0,1560) size 36x20 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1577) size 0x0 - RenderText {#text} at (0,1580) size 36x20 - text run at (0,1580) width 36: "oooo" - RenderBR {BR} at (36,1597) size 0x0 - RenderText {#text} at (0,1600) size 36x20 - text run at (0,1600) width 36: "pppp" - RenderBR {BR} at (36,1617) size 0x0 - RenderText {#text} at (0,1620) size 36x20 - text run at (0,1620) width 36: "qqqq" - RenderBR {BR} at (36,1637) size 0x0 - RenderText {#text} at (0,1640) size 28x20 - text run at (0,1640) width 28: "rrrr" - RenderBR {BR} at (28,1657) size 0x0 - RenderText {#text} at (0,1660) size 36x20 - text run at (0,1660) width 36: "ssss" - RenderBR {BR} at (36,1677) size 0x0 - RenderText {#text} at (0,1680) size 24x20 - text run at (0,1680) width 24: "tttt" - RenderBR {BR} at (24,1697) size 0x0 - RenderText {#text} at (0,1700) size 36x20 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1717) size 0x0 - RenderText {#text} at (0,1720) size 36x20 - text run at (0,1720) width 36: "vvvv" - RenderBR {BR} at (36,1737) size 0x0 - RenderText {#text} at (0,1740) size 44x20 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1757) size 0x0 - RenderText {#text} at (0,1760) size 28x20 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1777) size 0x0 - RenderText {#text} at (0,1780) size 32x20 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1797) size 0x0 - RenderText {#text} at (0,1800) size 28x20 - text run at (0,1800) width 28: "zzzz" - RenderBR {BR} at (28,1817) size 0x0 - RenderText {#text} at (0,1820) size 28x20 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1837) size 0x0 - RenderText {#text} at (0,1840) size 20x20 - text run at (0,1840) width 20: "||||" - RenderBR {BR} at (20,1857) size 0x0 - RenderText {#text} at (0,1860) size 28x20 - text run at (0,1860) width 28: "}}}}" - RenderBR {BR} at (28,1877) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/impact.html b/webkit/data/layout_tests/chrome/fonts/impact.html deleted file mode 100644 index 881649a..0000000 --- a/webkit/data/layout_tests/chrome/fonts/impact.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face=Impact> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.checksum b/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.checksum deleted file mode 100644 index f66898f..0000000 --- a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -5f93c325a213890b7aa91f1628a65b15
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.png b/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.png Binary files differdeleted file mode 100644 index 268adb4..0000000 --- a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.txt b/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.txt deleted file mode 100644 index 2027128..0000000 --- a/webkit/data/layout_tests/chrome/fonts/lucida-grande-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7592 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7592 - RenderBlock {HTML} at (0,0) size 785x7592 - RenderBody {BODY} at (8,8) size 769x7568 - RenderBlock (anonymous) at (0,0) size 769x1880 - RenderInline {FONT} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 20x19 - text run at (0,40) width 20: "\"\"\"\"" - RenderBR {BR} at (20,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 24x19 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 12x19 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,535) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 28x19 - text run at (0,620) width 28: "????" - RenderBR {BR} at (28,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 40x19 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 36x19 - text run at (0,740) width 36: "EEEE" - RenderBR {BR} at (36,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 44x19 - text run at (0,780) width 44: "GGGG" - RenderBR {BR} at (44,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 24x19 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 40x19 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 28x19 - text run at (0,1300) width 28: "aaaa" - RenderBR {BR} at (28,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1415) size 0x0 - RenderText {#text} at (0,1420) size 28x19 - text run at (0,1420) width 28: "gggg" - RenderBR {BR} at (28,1435) size 0x0 - RenderText {#text} at (0,1440) size 28x19 - text run at (0,1440) width 28: "hhhh" - RenderBR {BR} at (28,1455) size 0x0 - RenderText {#text} at (0,1460) size 12x19 - text run at (0,1460) width 12: "iiii" - RenderBR {BR} at (12,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 12x19 - text run at (0,1520) width 12: "llll" - RenderBR {BR} at (12,1535) size 0x0 - RenderText {#text} at (0,1540) size 44x19 - text run at (0,1540) width 44: "mmmm" - RenderBR {BR} at (44,1555) size 0x0 - RenderText {#text} at (0,1560) size 28x19 - text run at (0,1560) width 28: "nnnn" - RenderBR {BR} at (28,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1695) size 0x0 - RenderText {#text} at (0,1700) size 28x19 - text run at (0,1700) width 28: "uuuu" - RenderBR {BR} at (28,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 28x19 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 28x19 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 32x19 - text run at (0,1860) width 32: "}}}}" - RenderBR {BR} at (32,1875) size 0x0 - RenderBlock (anonymous) at (0,1896) size 769x3776 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 52x19 - text run at (0,120) width 52: "&&&&" - RenderBR {BR} at (52,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 64x19 - text run at (0,900) width 64: "MMMM" - RenderBR {BR} at (64,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 32x19 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 28x19 - text run at (0,1660) width 28: "ssss" - RenderBR {BR} at (28,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 40x19 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {I} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 44x19 - text run at (0,220) width 44: "++++" - RenderBR {BR} at (44,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 44x19 - text run at (0,560) width 44: "<<<<" - RenderBR {BR} at (44,575) size 0x0 - RenderText {#text} at (0,580) size 44x19 - text run at (0,580) width 44: "====" - RenderBR {BR} at (44,595) size 0x0 - RenderText {#text} at (0,600) size 44x19 - text run at (0,600) width 44: ">>>>" - RenderBR {BR} at (44,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 40x19 - text run at (0,660) width 40: "AAAA" - RenderBR {BR} at (40,675) size 0x0 - RenderText {#text} at (0,680) size 36x19 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 28x19 - text run at (0,840) width 28: "JJJJ" - RenderBR {BR} at (28,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 44x19 - text run at (0,920) width 44: "NNNN" - RenderBR {BR} at (44,935) size 0x0 - RenderText {#text} at (0,940) size 44x19 - text run at (0,940) width 44: "OOOO" - RenderBR {BR} at (44,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 44x19 - text run at (0,980) width 44: "QQQQ" - RenderBR {BR} at (44,995) size 0x0 - RenderText {#text} at (0,1000) size 36x19 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1015) size 0x0 - RenderText {#text} at (0,1020) size 32x19 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 40x19 - text run at (0,1080) width 40: "VVVV" - RenderBR {BR} at (40,1095) size 0x0 - RenderText {#text} at (0,1100) size 52x19 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1115) size 0x0 - RenderText {#text} at (0,1120) size 40x19 - text run at (0,1120) width 40: "XXXX" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 32x19 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 28x19 - text run at (0,1180) width 28: "[[[[" - RenderBR {BR} at (28,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 28x19 - text run at (0,1220) width 28: "]]]]" - RenderBR {BR} at (28,1235) size 0x0 - RenderText {#text} at (0,1240) size 28x19 - text run at (0,1240) width 28: "^^^^" - RenderBR {BR} at (28,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 20x19 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5688) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5688) size 769x1880 - RenderInline {FONT} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 56x1879 - RenderInline {I} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 52x19 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 44x19 - text run at (0,760) width 44: "FFFF" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 44x19 - text run at (0,1000) width 44: "RRRR" - RenderBR {BR} at (44,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 56x19 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1455) size 0x0 - RenderText {#text} at (0,1460) size 20x19 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 20x19 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/lucida-grande.html b/webkit/data/layout_tests/chrome/fonts/lucida-grande.html deleted file mode 100644 index 0095ee71..0000000 --- a/webkit/data/layout_tests/chrome/fonts/lucida-grande.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face="Lucida Grande"> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/data/layout_tests/chrome/fonts/times-expected.checksum b/webkit/data/layout_tests/chrome/fonts/times-expected.checksum deleted file mode 100644 index f66898f..0000000 --- a/webkit/data/layout_tests/chrome/fonts/times-expected.checksum +++ /dev/null @@ -1 +0,0 @@ -5f93c325a213890b7aa91f1628a65b15
\ No newline at end of file diff --git a/webkit/data/layout_tests/chrome/fonts/times-expected.png b/webkit/data/layout_tests/chrome/fonts/times-expected.png Binary files differdeleted file mode 100644 index 268adb4..0000000 --- a/webkit/data/layout_tests/chrome/fonts/times-expected.png +++ /dev/null diff --git a/webkit/data/layout_tests/chrome/fonts/times-expected.txt b/webkit/data/layout_tests/chrome/fonts/times-expected.txt deleted file mode 100644 index 2027128..0000000 --- a/webkit/data/layout_tests/chrome/fonts/times-expected.txt +++ /dev/null @@ -1,1151 +0,0 @@ -layer at (0,0) size 785x7592 - RenderView at (0,0) size 785x600 -layer at (0,0) size 785x7592 - RenderBlock {HTML} at (0,0) size 785x7592 - RenderBody {BODY} at (8,8) size 769x7568 - RenderBlock (anonymous) at (0,0) size 769x1880 - RenderInline {FONT} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 20x19 - text run at (0,40) width 20: "\"\"\"\"" - RenderBR {BR} at (20,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 24x19 - text run at (0,260) width 24: "----" - RenderBR {BR} at (24,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 12x19 - text run at (0,520) width 12: "::::" - RenderBR {BR} at (12,535) size 0x0 - RenderText {#text} at (0,540) size 16x19 - text run at (0,540) width 16: ";;;;" - RenderBR {BR} at (16,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 28x19 - text run at (0,620) width 28: "????" - RenderBR {BR} at (28,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 40x19 - text run at (0,680) width 40: "BBBB" - RenderBR {BR} at (40,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 36x19 - text run at (0,740) width 36: "EEEE" - RenderBR {BR} at (36,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 44x19 - text run at (0,780) width 44: "GGGG" - RenderBR {BR} at (44,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 24x19 - text run at (0,840) width 24: "JJJJ" - RenderBR {BR} at (24,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 56x19 - text run at (0,900) width 56: "MMMM" - RenderBR {BR} at (56,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 40x19 - text run at (0,1000) width 40: "RRRR" - RenderBR {BR} at (40,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 44x19 - text run at (0,1140) width 44: "YYYY" - RenderBR {BR} at (44,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 32x19 - text run at (0,1240) width 32: "^^^^" - RenderBR {BR} at (32,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 28x19 - text run at (0,1300) width 28: "aaaa" - RenderBR {BR} at (28,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 16x19 - text run at (0,1400) width 16: "ffff" - RenderBR {BR} at (16,1415) size 0x0 - RenderText {#text} at (0,1420) size 28x19 - text run at (0,1420) width 28: "gggg" - RenderBR {BR} at (28,1435) size 0x0 - RenderText {#text} at (0,1440) size 28x19 - text run at (0,1440) width 28: "hhhh" - RenderBR {BR} at (28,1455) size 0x0 - RenderText {#text} at (0,1460) size 12x19 - text run at (0,1460) width 12: "iiii" - RenderBR {BR} at (12,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 12x19 - text run at (0,1520) width 12: "llll" - RenderBR {BR} at (12,1535) size 0x0 - RenderText {#text} at (0,1540) size 44x19 - text run at (0,1540) width 44: "mmmm" - RenderBR {BR} at (44,1555) size 0x0 - RenderText {#text} at (0,1560) size 28x19 - text run at (0,1560) width 28: "nnnn" - RenderBR {BR} at (28,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 20x19 - text run at (0,1640) width 20: "rrrr" - RenderBR {BR} at (20,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 16x19 - text run at (0,1680) width 16: "tttt" - RenderBR {BR} at (16,1695) size 0x0 - RenderText {#text} at (0,1700) size 28x19 - text run at (0,1700) width 28: "uuuu" - RenderBR {BR} at (28,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 28x19 - text run at (0,1760) width 28: "xxxx" - RenderBR {BR} at (28,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 28x19 - text run at (0,1820) width 28: "{{{{" - RenderBR {BR} at (28,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 32x19 - text run at (0,1860) width 32: "}}}}" - RenderBR {BR} at (32,1875) size 0x0 - RenderBlock (anonymous) at (0,1896) size 769x3776 - RenderBlock {P} at (0,0) size 769x1880 - RenderInline {B} at (0,0) size 64x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 64x19 - text run at (0,100) width 64: "%%%%" - RenderBR {BR} at (64,115) size 0x0 - RenderText {#text} at (0,120) size 52x19 - text run at (0,120) width 52: "&&&&" - RenderBR {BR} at (52,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 36x19 - text run at (0,760) width 36: "FFFF" - RenderBR {BR} at (36,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 48x19 - text run at (0,860) width 48: "KKKK" - RenderBR {BR} at (48,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 64x19 - text run at (0,900) width 64: "MMMM" - RenderBR {BR} at (64,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 36x19 - text run at (0,960) width 36: "PPPP" - RenderBR {BR} at (36,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 48x19 - text run at (0,1000) width 48: "RRRR" - RenderBR {BR} at (48,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 44x19 - text run at (0,1060) width 44: "UUUU" - RenderBR {BR} at (44,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 60x19 - text run at (0,1100) width 60: "WWWW" - RenderBR {BR} at (60,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 32x19 - text run at (0,1380) width 32: "eeee" - RenderBR {BR} at (32,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 36x19 - text run at (0,1500) width 36: "kkkk" - RenderBR {BR} at (36,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 28x19 - text run at (0,1660) width 28: "ssss" - RenderBR {BR} at (28,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 40x19 - text run at (0,1740) width 40: "wwww" - RenderBR {BR} at (40,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 32x19 - text run at (0,1780) width 32: "yyyy" - RenderBR {BR} at (32,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock {P} at (0,1896) size 769x1880 - RenderInline {I} at (0,0) size 60x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 16x19 - text run at (0,20) width 16: "!!!!" - RenderBR {BR} at (16,35) size 0x0 - RenderText {#text} at (0,40) size 32x19 - text run at (0,40) width 32: "\"\"\"\"" - RenderBR {BR} at (32,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 12x19 - text run at (0,140) width 12: "''''" - RenderBR {BR} at (12,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 44x19 - text run at (0,220) width 44: "++++" - RenderBR {BR} at (44,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 44x19 - text run at (0,560) width 44: "<<<<" - RenderBR {BR} at (44,575) size 0x0 - RenderText {#text} at (0,580) size 44x19 - text run at (0,580) width 44: "====" - RenderBR {BR} at (44,595) size 0x0 - RenderText {#text} at (0,600) size 44x19 - text run at (0,600) width 44: ">>>>" - RenderBR {BR} at (44,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 60x19 - text run at (0,640) width 60: "@@@@" - RenderBR {BR} at (60,655) size 0x0 - RenderText {#text} at (0,660) size 40x19 - text run at (0,660) width 40: "AAAA" - RenderBR {BR} at (40,675) size 0x0 - RenderText {#text} at (0,680) size 36x19 - text run at (0,680) width 36: "BBBB" - RenderBR {BR} at (36,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 44x19 - text run at (0,720) width 44: "DDDD" - RenderBR {BR} at (44,735) size 0x0 - RenderText {#text} at (0,740) size 40x19 - text run at (0,740) width 40: "EEEE" - RenderBR {BR} at (40,755) size 0x0 - RenderText {#text} at (0,760) size 40x19 - text run at (0,760) width 40: "FFFF" - RenderBR {BR} at (40,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 44x19 - text run at (0,800) width 44: "HHHH" - RenderBR {BR} at (44,815) size 0x0 - RenderText {#text} at (0,820) size 20x19 - text run at (0,820) width 20: "IIII" - RenderBR {BR} at (20,835) size 0x0 - RenderText {#text} at (0,840) size 28x19 - text run at (0,840) width 28: "JJJJ" - RenderBR {BR} at (28,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 36x19 - text run at (0,880) width 36: "LLLL" - RenderBR {BR} at (36,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 44x19 - text run at (0,920) width 44: "NNNN" - RenderBR {BR} at (44,935) size 0x0 - RenderText {#text} at (0,940) size 44x19 - text run at (0,940) width 44: "OOOO" - RenderBR {BR} at (44,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 44x19 - text run at (0,980) width 44: "QQQQ" - RenderBR {BR} at (44,995) size 0x0 - RenderText {#text} at (0,1000) size 36x19 - text run at (0,1000) width 36: "RRRR" - RenderBR {BR} at (36,1015) size 0x0 - RenderText {#text} at (0,1020) size 32x19 - text run at (0,1020) width 32: "SSSS" - RenderBR {BR} at (32,1035) size 0x0 - RenderText {#text} at (0,1040) size 36x19 - text run at (0,1040) width 36: "TTTT" - RenderBR {BR} at (36,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 40x19 - text run at (0,1080) width 40: "VVVV" - RenderBR {BR} at (40,1095) size 0x0 - RenderText {#text} at (0,1100) size 52x19 - text run at (0,1100) width 52: "WWWW" - RenderBR {BR} at (52,1115) size 0x0 - RenderText {#text} at (0,1120) size 40x19 - text run at (0,1120) width 40: "XXXX" - RenderBR {BR} at (40,1135) size 0x0 - RenderText {#text} at (0,1140) size 32x19 - text run at (0,1140) width 32: "YYYY" - RenderBR {BR} at (32,1155) size 0x0 - RenderText {#text} at (0,1160) size 36x19 - text run at (0,1160) width 36: "ZZZZ" - RenderBR {BR} at (36,1175) size 0x0 - RenderText {#text} at (0,1180) size 28x19 - text run at (0,1180) width 28: "[[[[" - RenderBR {BR} at (28,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 28x19 - text run at (0,1220) width 28: "]]]]" - RenderBR {BR} at (28,1235) size 0x0 - RenderText {#text} at (0,1240) size 28x19 - text run at (0,1240) width 28: "^^^^" - RenderBR {BR} at (28,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 32x19 - text run at (0,1440) width 32: "hhhh" - RenderBR {BR} at (32,1455) size 0x0 - RenderText {#text} at (0,1460) size 16x19 - text run at (0,1460) width 16: "iiii" - RenderBR {BR} at (16,1475) size 0x0 - RenderText {#text} at (0,1480) size 20x19 - text run at (0,1480) width 20: "jjjj" - RenderBR {BR} at (20,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 16x19 - text run at (0,1520) width 16: "llll" - RenderBR {BR} at (16,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 32x19 - text run at (0,1560) width 32: "nnnn" - RenderBR {BR} at (32,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 32x19 - text run at (0,1700) width 32: "uuuu" - RenderBR {BR} at (32,1715) size 0x0 - RenderText {#text} at (0,1720) size 32x19 - text run at (0,1720) width 32: "vvvv" - RenderBR {BR} at (32,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 16x19 - text run at (0,1840) width 16: "||||" - RenderBR {BR} at (16,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderBlock (anonymous) at (0,5688) size 769x0 - RenderInline {FONT} at (0,0) size 0x0 - RenderBlock {P} at (0,5688) size 769x1880 - RenderInline {FONT} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 0x0 - RenderInline {B} at (0,0) size 56x1879 - RenderInline {I} at (0,0) size 56x1879 - RenderText {#text} at (0,0) size 16x19 - text run at (0,0) width 16: " " - RenderBR {BR} at (16,15) size 0x0 - RenderText {#text} at (0,20) size 20x19 - text run at (0,20) width 20: "!!!!" - RenderBR {BR} at (20,35) size 0x0 - RenderText {#text} at (0,40) size 36x19 - text run at (0,40) width 36: "\"\"\"\"" - RenderBR {BR} at (36,55) size 0x0 - RenderText {#text} at (0,60) size 32x19 - text run at (0,60) width 32: "####" - RenderBR {BR} at (32,75) size 0x0 - RenderText {#text} at (0,80) size 32x19 - text run at (0,80) width 32: "$$$$" - RenderBR {BR} at (32,95) size 0x0 - RenderText {#text} at (0,100) size 52x19 - text run at (0,100) width 52: "%%%%" - RenderBR {BR} at (52,115) size 0x0 - RenderText {#text} at (0,120) size 48x19 - text run at (0,120) width 48: "&&&&" - RenderBR {BR} at (48,135) size 0x0 - RenderText {#text} at (0,140) size 16x19 - text run at (0,140) width 16: "''''" - RenderBR {BR} at (16,155) size 0x0 - RenderText {#text} at (0,160) size 20x19 - text run at (0,160) width 20: "((((" - RenderBR {BR} at (20,175) size 0x0 - RenderText {#text} at (0,180) size 20x19 - text run at (0,180) width 20: "))))" - RenderBR {BR} at (20,195) size 0x0 - RenderText {#text} at (0,200) size 32x19 - text run at (0,200) width 32: "****" - RenderBR {BR} at (32,215) size 0x0 - RenderText {#text} at (0,220) size 36x19 - text run at (0,220) width 36: "++++" - RenderBR {BR} at (36,235) size 0x0 - RenderText {#text} at (0,240) size 16x19 - text run at (0,240) width 16: ",,,," - RenderBR {BR} at (16,255) size 0x0 - RenderText {#text} at (0,260) size 20x19 - text run at (0,260) width 20: "----" - RenderBR {BR} at (20,275) size 0x0 - RenderText {#text} at (0,280) size 16x19 - text run at (0,280) width 16: "...." - RenderBR {BR} at (16,295) size 0x0 - RenderText {#text} at (0,300) size 16x19 - text run at (0,300) width 16: "////" - RenderBR {BR} at (16,315) size 0x0 - RenderText {#text} at (0,320) size 32x19 - text run at (0,320) width 32: "0000" - RenderBR {BR} at (32,335) size 0x0 - RenderText {#text} at (0,340) size 32x19 - text run at (0,340) width 32: "1111" - RenderBR {BR} at (32,355) size 0x0 - RenderText {#text} at (0,360) size 32x19 - text run at (0,360) width 32: "2222" - RenderBR {BR} at (32,375) size 0x0 - RenderText {#text} at (0,380) size 32x19 - text run at (0,380) width 32: "3333" - RenderBR {BR} at (32,395) size 0x0 - RenderText {#text} at (0,400) size 32x19 - text run at (0,400) width 32: "4444" - RenderBR {BR} at (32,415) size 0x0 - RenderText {#text} at (0,420) size 32x19 - text run at (0,420) width 32: "5555" - RenderBR {BR} at (32,435) size 0x0 - RenderText {#text} at (0,440) size 32x19 - text run at (0,440) width 32: "6666" - RenderBR {BR} at (32,455) size 0x0 - RenderText {#text} at (0,460) size 32x19 - text run at (0,460) width 32: "7777" - RenderBR {BR} at (32,475) size 0x0 - RenderText {#text} at (0,480) size 32x19 - text run at (0,480) width 32: "8888" - RenderBR {BR} at (32,495) size 0x0 - RenderText {#text} at (0,500) size 32x19 - text run at (0,500) width 32: "9999" - RenderBR {BR} at (32,515) size 0x0 - RenderText {#text} at (0,520) size 20x19 - text run at (0,520) width 20: "::::" - RenderBR {BR} at (20,535) size 0x0 - RenderText {#text} at (0,540) size 20x19 - text run at (0,540) width 20: ";;;;" - RenderBR {BR} at (20,555) size 0x0 - RenderText {#text} at (0,560) size 36x19 - text run at (0,560) width 36: "<<<<" - RenderBR {BR} at (36,575) size 0x0 - RenderText {#text} at (0,580) size 36x19 - text run at (0,580) width 36: "====" - RenderBR {BR} at (36,595) size 0x0 - RenderText {#text} at (0,600) size 36x19 - text run at (0,600) width 36: ">>>>" - RenderBR {BR} at (36,615) size 0x0 - RenderText {#text} at (0,620) size 32x19 - text run at (0,620) width 32: "????" - RenderBR {BR} at (32,635) size 0x0 - RenderText {#text} at (0,640) size 52x19 - text run at (0,640) width 52: "@@@@" - RenderBR {BR} at (52,655) size 0x0 - RenderText {#text} at (0,660) size 44x19 - text run at (0,660) width 44: "AAAA" - RenderBR {BR} at (44,675) size 0x0 - RenderText {#text} at (0,680) size 44x19 - text run at (0,680) width 44: "BBBB" - RenderBR {BR} at (44,695) size 0x0 - RenderText {#text} at (0,700) size 44x19 - text run at (0,700) width 44: "CCCC" - RenderBR {BR} at (44,715) size 0x0 - RenderText {#text} at (0,720) size 48x19 - text run at (0,720) width 48: "DDDD" - RenderBR {BR} at (48,735) size 0x0 - RenderText {#text} at (0,740) size 44x19 - text run at (0,740) width 44: "EEEE" - RenderBR {BR} at (44,755) size 0x0 - RenderText {#text} at (0,760) size 44x19 - text run at (0,760) width 44: "FFFF" - RenderBR {BR} at (44,775) size 0x0 - RenderText {#text} at (0,780) size 48x19 - text run at (0,780) width 48: "GGGG" - RenderBR {BR} at (48,795) size 0x0 - RenderText {#text} at (0,800) size 48x19 - text run at (0,800) width 48: "HHHH" - RenderBR {BR} at (48,815) size 0x0 - RenderText {#text} at (0,820) size 24x19 - text run at (0,820) width 24: "IIII" - RenderBR {BR} at (24,835) size 0x0 - RenderText {#text} at (0,840) size 32x19 - text run at (0,840) width 32: "JJJJ" - RenderBR {BR} at (32,855) size 0x0 - RenderText {#text} at (0,860) size 44x19 - text run at (0,860) width 44: "KKKK" - RenderBR {BR} at (44,875) size 0x0 - RenderText {#text} at (0,880) size 40x19 - text run at (0,880) width 40: "LLLL" - RenderBR {BR} at (40,895) size 0x0 - RenderText {#text} at (0,900) size 52x19 - text run at (0,900) width 52: "MMMM" - RenderBR {BR} at (52,915) size 0x0 - RenderText {#text} at (0,920) size 48x19 - text run at (0,920) width 48: "NNNN" - RenderBR {BR} at (48,935) size 0x0 - RenderText {#text} at (0,940) size 48x19 - text run at (0,940) width 48: "OOOO" - RenderBR {BR} at (48,955) size 0x0 - RenderText {#text} at (0,960) size 40x19 - text run at (0,960) width 40: "PPPP" - RenderBR {BR} at (40,975) size 0x0 - RenderText {#text} at (0,980) size 48x19 - text run at (0,980) width 48: "QQQQ" - RenderBR {BR} at (48,995) size 0x0 - RenderText {#text} at (0,1000) size 44x19 - text run at (0,1000) width 44: "RRRR" - RenderBR {BR} at (44,1015) size 0x0 - RenderText {#text} at (0,1020) size 36x19 - text run at (0,1020) width 36: "SSSS" - RenderBR {BR} at (36,1035) size 0x0 - RenderText {#text} at (0,1040) size 40x19 - text run at (0,1040) width 40: "TTTT" - RenderBR {BR} at (40,1055) size 0x0 - RenderText {#text} at (0,1060) size 48x19 - text run at (0,1060) width 48: "UUUU" - RenderBR {BR} at (48,1075) size 0x0 - RenderText {#text} at (0,1080) size 44x19 - text run at (0,1080) width 44: "VVVV" - RenderBR {BR} at (44,1095) size 0x0 - RenderText {#text} at (0,1100) size 56x19 - text run at (0,1100) width 56: "WWWW" - RenderBR {BR} at (56,1115) size 0x0 - RenderText {#text} at (0,1120) size 44x19 - text run at (0,1120) width 44: "XXXX" - RenderBR {BR} at (44,1135) size 0x0 - RenderText {#text} at (0,1140) size 40x19 - text run at (0,1140) width 40: "YYYY" - RenderBR {BR} at (40,1155) size 0x0 - RenderText {#text} at (0,1160) size 40x19 - text run at (0,1160) width 40: "ZZZZ" - RenderBR {BR} at (40,1175) size 0x0 - RenderText {#text} at (0,1180) size 20x19 - text run at (0,1180) width 20: "[[[[" - RenderBR {BR} at (20,1195) size 0x0 - RenderText {#text} at (0,1200) size 16x19 - text run at (0,1200) width 16: "\\\\\\\\" - RenderBR {BR} at (16,1215) size 0x0 - RenderText {#text} at (0,1220) size 20x19 - text run at (0,1220) width 20: "]]]]" - RenderBR {BR} at (20,1235) size 0x0 - RenderText {#text} at (0,1240) size 36x19 - text run at (0,1240) width 36: "^^^^" - RenderBR {BR} at (36,1255) size 0x0 - RenderText {#text} at (0,1260) size 32x19 - text run at (0,1260) width 32: "____" - RenderBR {BR} at (32,1275) size 0x0 - RenderText {#text} at (0,1280) size 20x19 - text run at (0,1280) width 20: "````" - RenderBR {BR} at (20,1295) size 0x0 - RenderText {#text} at (0,1300) size 32x19 - text run at (0,1300) width 32: "aaaa" - RenderBR {BR} at (32,1315) size 0x0 - RenderText {#text} at (0,1320) size 32x19 - text run at (0,1320) width 32: "bbbb" - RenderBR {BR} at (32,1335) size 0x0 - RenderText {#text} at (0,1340) size 28x19 - text run at (0,1340) width 28: "cccc" - RenderBR {BR} at (28,1355) size 0x0 - RenderText {#text} at (0,1360) size 32x19 - text run at (0,1360) width 32: "dddd" - RenderBR {BR} at (32,1375) size 0x0 - RenderText {#text} at (0,1380) size 28x19 - text run at (0,1380) width 28: "eeee" - RenderBR {BR} at (28,1395) size 0x0 - RenderText {#text} at (0,1400) size 20x19 - text run at (0,1400) width 20: "ffff" - RenderBR {BR} at (20,1415) size 0x0 - RenderText {#text} at (0,1420) size 32x19 - text run at (0,1420) width 32: "gggg" - RenderBR {BR} at (32,1435) size 0x0 - RenderText {#text} at (0,1440) size 36x19 - text run at (0,1440) width 36: "hhhh" - RenderBR {BR} at (36,1455) size 0x0 - RenderText {#text} at (0,1460) size 20x19 - text run at (0,1460) width 20: "iiii" - RenderBR {BR} at (20,1475) size 0x0 - RenderText {#text} at (0,1480) size 16x19 - text run at (0,1480) width 16: "jjjj" - RenderBR {BR} at (16,1495) size 0x0 - RenderText {#text} at (0,1500) size 32x19 - text run at (0,1500) width 32: "kkkk" - RenderBR {BR} at (32,1515) size 0x0 - RenderText {#text} at (0,1520) size 20x19 - text run at (0,1520) width 20: "llll" - RenderBR {BR} at (20,1535) size 0x0 - RenderText {#text} at (0,1540) size 48x19 - text run at (0,1540) width 48: "mmmm" - RenderBR {BR} at (48,1555) size 0x0 - RenderText {#text} at (0,1560) size 36x19 - text run at (0,1560) width 36: "nnnn" - RenderBR {BR} at (36,1575) size 0x0 - RenderText {#text} at (0,1580) size 32x19 - text run at (0,1580) width 32: "oooo" - RenderBR {BR} at (32,1595) size 0x0 - RenderText {#text} at (0,1600) size 32x19 - text run at (0,1600) width 32: "pppp" - RenderBR {BR} at (32,1615) size 0x0 - RenderText {#text} at (0,1620) size 32x19 - text run at (0,1620) width 32: "qqqq" - RenderBR {BR} at (32,1635) size 0x0 - RenderText {#text} at (0,1640) size 24x19 - text run at (0,1640) width 24: "rrrr" - RenderBR {BR} at (24,1655) size 0x0 - RenderText {#text} at (0,1660) size 24x19 - text run at (0,1660) width 24: "ssss" - RenderBR {BR} at (24,1675) size 0x0 - RenderText {#text} at (0,1680) size 20x19 - text run at (0,1680) width 20: "tttt" - RenderBR {BR} at (20,1695) size 0x0 - RenderText {#text} at (0,1700) size 36x19 - text run at (0,1700) width 36: "uuuu" - RenderBR {BR} at (36,1715) size 0x0 - RenderText {#text} at (0,1720) size 28x19 - text run at (0,1720) width 28: "vvvv" - RenderBR {BR} at (28,1735) size 0x0 - RenderText {#text} at (0,1740) size 44x19 - text run at (0,1740) width 44: "wwww" - RenderBR {BR} at (44,1755) size 0x0 - RenderText {#text} at (0,1760) size 32x19 - text run at (0,1760) width 32: "xxxx" - RenderBR {BR} at (32,1775) size 0x0 - RenderText {#text} at (0,1780) size 28x19 - text run at (0,1780) width 28: "yyyy" - RenderBR {BR} at (28,1795) size 0x0 - RenderText {#text} at (0,1800) size 24x19 - text run at (0,1800) width 24: "zzzz" - RenderBR {BR} at (24,1815) size 0x0 - RenderText {#text} at (0,1820) size 24x19 - text run at (0,1820) width 24: "{{{{" - RenderBR {BR} at (24,1835) size 0x0 - RenderText {#text} at (0,1840) size 12x19 - text run at (0,1840) width 12: "||||" - RenderBR {BR} at (12,1855) size 0x0 - RenderText {#text} at (0,1860) size 24x19 - text run at (0,1860) width 24: "}}}}" - RenderBR {BR} at (24,1875) size 0x0 - RenderText {#text} at (0,0) size 0x0 - RenderText {#text} at (0,0) size 0x0 diff --git a/webkit/data/layout_tests/chrome/fonts/times.html b/webkit/data/layout_tests/chrome/fonts/times.html deleted file mode 100644 index ce334371..0000000 --- a/webkit/data/layout_tests/chrome/fonts/times.html +++ /dev/null @@ -1,75 +0,0 @@ -<font face=Times> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -<p> -<b> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</b> -<p> -<i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i> -<p> -<b><i> - <br>!!!!<br>""""<br>####<br>$$$$<br>%%%%<br> -&&&&<br>''''<br>((((<br>))))<br>****<br>++++<br> -,,,,<br>----<br>....<br>////<br>0000<br>1111<br> -2222<br>3333<br>4444<br>5555<br>6666<br>7777<br> -8888<br>9999<br>::::<br>;;;;<br><<<<<br>====<br> ->>>><br>????<br>@@@@<br>AAAA<br>BBBB<br>CCCC<br> -DDDD<br>EEEE<br>FFFF<br>GGGG<br>HHHH<br>IIII<br> -JJJJ<br>KKKK<br>LLLL<br>MMMM<br>NNNN<br>OOOO<br> -PPPP<br>QQQQ<br>RRRR<br>SSSS<br>TTTT<br>UUUU<br> -VVVV<br>WWWW<br>XXXX<br>YYYY<br>ZZZZ<br>[[[[<br> -\\\\<br>]]]]<br>^^^^<br>____<br>````<br>aaaa<br> -bbbb<br>cccc<br>dddd<br>eeee<br>ffff<br>gggg<br> -hhhh<br>iiii<br>jjjj<br>kkkk<br>llll<br>mmmm<br> -nnnn<br>oooo<br>pppp<br>qqqq<br>rrrr<br>ssss<br> -tttt<br>uuuu<br>vvvv<br>wwww<br>xxxx<br>yyyy<br> -zzzz<br>{{{{<br>||||<br>}}}}<br> -</i></b> -</font> diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt index 3e7e9c1..4a74660 100644 --- a/webkit/tools/layout_tests/test_expectations.txt +++ b/webkit/tools/layout_tests/test_expectations.txt @@ -308,11 +308,6 @@ WONTFIX SKIP : LayoutTests/platform/mac/fast/css/dashboard-region-parser.html = // Not a test? WONTFIX SKIP : LayoutTests/http/tests/incremental/pause-in-script-element.pl = FAIL -// This fails because it requests bold+italic Impact faces, which don't exist. -// Our simulation of them differs in metrics from Windows's simulation and -// this is probably not worth the effort to fix. -WONTFIX LINUX : chrome/fonts/impact.html = FAIL - // This test times out. It is testing arbitrary limits on the sizes // of regular expressions. We handle larger regular expressions than // JSCRE, but it takes a long time to run this test because it @@ -972,7 +967,6 @@ MAC : LayoutTests/http/tests/navigation/redirect302-basic.html = FAIL // The test may require a proper version of Java 6 RC 10 plugin // installed to run. -DEFER MAC LINUX : chrome/fast/dom/java-applet-calls.html = FAIL DEFER : LayoutTests/plugins/bindings-test.html = FAIL // These tests don't work on the open source buildbot because no font covers @@ -2149,7 +2143,6 @@ DEBUG LINUX : LayoutTests/fast/parser/bad-xml-slash.html = FAIL DEBUG LINUX : LayoutTests/fast/replaced/replaced-breaking.html = FAIL DEBUG LINUX : LayoutTests/http/tests/navigation/anchor-goback.html = FAIL DEBUG LINUX : LayoutTests/tables/mozilla/bugs/bug1318.html = FAIL -DEBUG LINUX : chrome/fast/dom/onload-fires-twice.html = FAIL DEBUG LINUX : LayoutTests/fast/canvas/canvas-pattern-transform.html = CRASH DEBUG LINUX : LayoutTests/svg/custom/mask-excessive-malloc.svg = CRASH @@ -2243,9 +2236,6 @@ MAC : LayoutTests/http/tests/xmlhttprequest/encode-request-url-2.html = TIMEOUT // Missing expected results SKIP : LayoutTests/platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html = PASS -// Started failing when test_fixable got merged with test_ignored. -LINUX DEBUG : chrome/fast/dom/htmliframeelement-document.html = FAIL - // Merge 41860:41906 New tests DEFER WIN LINUX : LayoutTests/fast/replaced/percent-height-in-anonymous-block-in-table.html = FAIL DEFER WIN LINUX : LayoutTests/http/tests/misc/generated-content-inside-table.html = FAIL @@ -2319,7 +2309,7 @@ DEFER WIN LINUX : LayoutTests/svg/css/getComputedStyle-basic.xhtml = FAIL // Needs rebaseline. See WebKit 41972. DEFER WIN LINUX : LayoutTests/fast/forms/slider-thumb-stylability.html = FAIL -// Needs rebaseline. See WebKit 91948 +// Needs rebaseline. See WebKit 41948 DEFER WIN MAC LINUX : LayoutTests/fast/replaced/border-radius-clip.html = FAIL // New test, needs baseline. See WebKit 41978 (brettw) @@ -2335,7 +2325,6 @@ DEFER WIN LINUX : LayoutTests/fonts/fantasy.html = FAIL DEFER WIN LINUX : LayoutTests/fonts/monospace.html = FAIL DEFER WIN LINUX : LayoutTests/fonts/sans-serif.html = FAIL DEFER WIN LINUX : LayoutTests/fonts/serif.html = FAIL -DEFER WIN LINUX : chrome/fonts/default.html = FAIL // Merge WebKit: 41944:41999, Linux failures. DEFER LINUX : LayoutTests/fast/events/tabindex-focus-blur-all.html = FAIL |