Diff
Modified: trunk/LayoutTests/ChangeLog (144955 => 144956)
--- trunk/LayoutTests/ChangeLog 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/ChangeLog 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,3 +1,28 @@
+2013-03-05 Ryosuke Niwa <[email protected]>
+
+ editing/pasteboard/paste-table-cells.html should be a dump-as-markup test
+ https://bugs.webkit.org/show_bug.cgi?id=111491
+
+ Reviewed by Levi Weintraub.
+
+ Converted the test.
+
+ * editing/pasteboard/paste-table-cells-expected.txt: Added.
+ * editing/pasteboard/paste-table-cells.html:
+ * platform/chromium-linux/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/chromium-mac-lion/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/chromium-mac-snowleopard/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/chromium-mac/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/chromium-win/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/chromium-win/editing/pasteboard/paste-table-cells-expected.txt: Removed.
+ * platform/chromium/editing/pasteboard/paste-table-cells-expected.txt: Removed.
+ * platform/gtk/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/gtk/editing/pasteboard/paste-table-cells-expected.txt: Removed.
+ * platform/mac/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/mac/editing/pasteboard/paste-table-cells-expected.txt: Removed.
+ * platform/qt/editing/pasteboard/paste-table-cells-expected.png: Removed.
+ * platform/qt/editing/pasteboard/paste-table-cells-expected.txt: Removed.
+
2013-03-06 Emil A Eklund <[email protected]>
Unreviewed chromium windows rebaselines for r144837.
Added: trunk/LayoutTests/editing/pasteboard/paste-table-cells-expected.txt (0 => 144956)
--- trunk/LayoutTests/editing/pasteboard/paste-table-cells-expected.txt (rev 0)
+++ trunk/LayoutTests/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -0,0 +1,83 @@
+EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 5 of BODY > HTML > #document
+EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
+
+After copy:
+| "
+"
+| <table>
+| <tbody>
+| <tr>
+| <td>
+| id="test1"
+| "<#selection-anchor>hello"
+| <td>
+| id="test2"
+| "world<#selection-focus>"
+| "
+"
+| <div>
+| id="target"
+| "replaceme"
+| "
+
+
+"
+
+Before paste:
+| "
+"
+| <table>
+| <tbody>
+| <tr>
+| <td>
+| id="test1"
+| "hello"
+| <td>
+| id="test2"
+| "world"
+| "
+"
+| <div>
+| id="target"
+| "<#selection-anchor>replaceme<#selection-focus>"
+| "
+
+
+"
+
+After paste:
+| "
+"
+| <table>
+| <tbody>
+| <tr>
+| <td>
+| id="test1"
+| "hello"
+| <td>
+| id="test2"
+| "world"
+| "
+"
+| <div>
+| id="target"
+| <table>
+| <tbody>
+| <tr>
+| <td>
+| id="test1"
+| "hello"
+| <td>
+| id="test2"
+| "world<#selection-caret>"
+| "
+
+
+"
Modified: trunk/LayoutTests/editing/pasteboard/paste-table-cells.html (144955 => 144956)
--- trunk/LayoutTests/editing/pasteboard/paste-table-cells.html 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/editing/pasteboard/paste-table-cells.html 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,3 +1,4 @@
+<!DOCTYPE html>
<html>
<head>
@@ -16,31 +17,35 @@
.scenario:first-line { font-weight: bold; margin-bottom: 16px;}
.expected-results:first-line { font-weight: bold }
</style>
+<script src=""
<script src="" language="_javascript_" type="text/_javascript_" ></script>
<script>
+Markup.noAutoDump();
+Markup.waitUntilDone();
+
function editingTest() {
var t1 = document.getElementById("test1");
var t2 = document.getElementById("test2");
setSelectionCommand(t1, 0, t2, 3);
copyCommand();
-
+ Markup.dump('root', 'After copy');
+
var e = document.getElementById("target");
setSelectionCommand(e, 0, e, 1);
+ Markup.dump('root', 'Before paste');
pasteCommand();
+ Markup.dump('root', 'After paste');
+
+ Markup.notifyDone();
}
</script>
<title>Editing Test</title>
</head>
-<body id="root" contenteditable>
+<body _onload_="runEditingTest();" id="root" contenteditable>
<table><tr><td id="test1">hello</td><td id="test2">world</td></tr></table>
<div id="target">replaceme</div>
-
-<script>
-runEditingTest();
-</script>
-
</body>
</html>
Deleted: trunk/LayoutTests/platform/chromium/editing/pasteboard/paste-table-cells-expected.txt (144955 => 144956)
--- trunk/LayoutTests/platform/chromium/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/platform/chromium/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,35 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x18
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x18
- text run at (1,1) width 37: "world"
- RenderBlock {DIV} at (0,24) size 784x24
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x18
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x18
- text run at (1,1) width 37: "world"
- RenderBlock (anonymous) at (0,24) size 784x0
-caret: position 5 of child 0 {#text} of child 1 {TD} of child 0 {TR} of child 0 {TBODY} of child 0 {TABLE} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/chromium-linux/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-mac/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-mac-lion/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-mac-snowleopard/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-table-cells-expected.txt (144955 => 144956)
--- trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,35 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 73x26
- RenderTableSection {TBODY} at (0,0) size 73x26
- RenderTableRow {TR} at (0,2) size 73x22
- RenderTableCell {TD} at (2,2) size 30x22 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 28x19
- text run at (1,1) width 28: "hello"
- RenderTableCell {TD} at (34,2) size 37x22 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 35x19
- text run at (1,1) width 35: "world"
- RenderBlock {DIV} at (0,26) size 784x26
- RenderTable {TABLE} at (0,0) size 73x26
- RenderTableSection {TBODY} at (0,0) size 73x26
- RenderTableRow {TR} at (0,2) size 73x22
- RenderTableCell {TD} at (2,2) size 30x22 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 28x19
- text run at (1,1) width 28: "hello"
- RenderTableCell {TD} at (34,2) size 37x22 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 35x19
- text run at (1,1) width 35: "world"
- RenderBlock (anonymous) at (0,26) size 784x0
-caret: position 5 of child 0 {#text} of child 1 {TD} of child 0 {TR} of child 0 {TBODY} of child 0 {TABLE} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-table-cells-expected.txt (144955 => 144956)
--- trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,35 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x19
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x19
- text run at (1,1) width 37: "world"
- RenderBlock {DIV} at (0,24) size 784x24
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x19
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x19
- text run at (1,1) width 37: "world"
- RenderBlock (anonymous) at (0,24) size 784x0
-caret: position 5 of child 0 {#text} of child 1 {TD} of child 0 {TR} of child 0 {TBODY} of child 0 {TABLE} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/paste-table-cells-expected.txt (144955 => 144956)
--- trunk/LayoutTests/platform/mac/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/platform/mac/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,35 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x18
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x18
- text run at (1,1) width 37: "world"
- RenderBlock {DIV} at (0,24) size 784x24
- RenderTable {TABLE} at (0,0) size 78x24
- RenderTableSection {TBODY} at (0,0) size 78x24
- RenderTableRow {TR} at (0,2) size 78x20
- RenderTableCell {TD} at (2,2) size 33x20 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 31x18
- text run at (1,1) width 31: "hello"
- RenderTableCell {TD} at (37,2) size 39x20 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 37x18
- text run at (1,1) width 37: "world"
- RenderBlock (anonymous) at (0,24) size 784x0
-caret: position 5 of child 0 {#text} of child 1 {TD} of child 0 {TR} of child 0 {TBODY} of child 0 {TABLE} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/qt/editing/pasteboard/paste-table-cells-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/qt/editing/pasteboard/paste-table-cells-expected.txt (144955 => 144956)
--- trunk/LayoutTests/platform/qt/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:31:10 UTC (rev 144955)
+++ trunk/LayoutTests/platform/qt/editing/pasteboard/paste-table-cells-expected.txt 2013-03-06 19:34:32 UTC (rev 144956)
@@ -1,35 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderTable {TABLE} at (0,0) size 73x25
- RenderTableSection {TBODY} at (0,0) size 73x25
- RenderTableRow {TR} at (0,2) size 73x21
- RenderTableCell {TD} at (2,2) size 30x21 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 28x19
- text run at (1,1) width 28: "hello"
- RenderTableCell {TD} at (34,2) size 37x21 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 35x19
- text run at (1,1) width 35: "world"
- RenderBlock {DIV} at (0,25) size 784x25
- RenderTable {TABLE} at (0,0) size 73x25
- RenderTableSection {TBODY} at (0,0) size 73x25
- RenderTableRow {TR} at (0,2) size 73x21
- RenderTableCell {TD} at (2,2) size 30x21 [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (1,1) size 28x19
- text run at (1,1) width 28: "hello"
- RenderTableCell {TD} at (34,2) size 37x21 [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (1,1) size 35x19
- text run at (1,1) width 35: "world"
- RenderBlock (anonymous) at (0,25) size 784x0
-caret: position 5 of child 0 {#text} of child 1 {TD} of child 0 {TR} of child 0 {TBODY} of child 0 {TABLE} of child 3 {DIV} of body