Diff
Modified: trunk/LayoutTests/ChangeLog (87261 => 87262)
--- trunk/LayoutTests/ChangeLog 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/ChangeLog 2011-05-25 03:50:54 UTC (rev 87262)
@@ -2,6 +2,28 @@
Reviewed by Ryosuke Niwa.
+ Convert LayoutTests/editing/deleting/5206311-2.html to dump-as-markup
+ https://bugs.webkit.org/show_bug.cgi?id=61332
+
+ Used dump-as-markup to improve readability of results.
+ Also improved HTML and cleaned up descriptions.
+
+ * editing/deleting/5206311-2-expected.txt: Added.
+ * editing/deleting/5206311-2.html: Convert to dump-as-markup.
+ * platform/chromium-linux/editing/deleting/5206311-2-expected.png: Removed.
+ * platform/chromium-win/editing/deleting/5206311-2-expected.png: Removed.
+ * platform/chromium-win/editing/deleting/5206311-2-expected.txt: Removed.
+ * platform/gtk/editing/deleting/5206311-2-expected.txt: Removed.
+ * platform/mac-leopard/editing/deleting/5206311-2-expected.png: Removed.
+ * platform/mac/editing/deleting/5206311-2-expected.png: Removed.
+ * platform/mac/editing/deleting/5206311-2-expected.txt: Removed.
+ * platform/qt/editing/deleting/5206311-2-expected.png: Removed.
+ * platform/qt/editing/deleting/5206311-2-expected.txt: Removed.
+
+2011-05-24 Annie Sullivan <[email protected]>
+
+ Reviewed by Ryosuke Niwa.
+
Convert LayoutTests/editing/deleting/delete-block-table.html to dumpAsText test.
https://bugs.webkit.org/show_bug.cgi?id=61333
Added: trunk/LayoutTests/editing/deleting/5206311-2-expected.txt (0 => 87262)
--- trunk/LayoutTests/editing/deleting/5206311-2-expected.txt (rev 0)
+++ trunk/LayoutTests/editing/deleting/5206311-2-expected.txt 2011-05-25 03:50:54 UTC (rev 87262)
@@ -0,0 +1,89 @@
+
+The test deletes cells 5 through 9.
+Since all the cells in the third row were deleted, the third row is removed.
+The cells in the second row are not removed because not all of them are deleted.
+The second cell, which used to contain '5', is replaced with the 'world!' text, and the third cell is cleared:
+| "
+"
+| <table>
+| border="1"
+| "
+"
+| <tbody>
+| <tr>
+| <td>
+| "1"
+| <td>
+| "2"
+| <td>
+| "3"
+| "
+"
+| <tr>
+| <td>
+| "4"
+| <td>
+| class="start"
+| <span>
+| class="Apple-style-span"
+| style="-webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; "
+| "<#selection-caret>world!"
+| <br>
+| <td>
+| <br>
+| "
+"
+
+
+This test deletes cells 5 through 9 of the first table and 1 through 5 of the second.
+In the first table, cells 5-6 in the second row are cleared and the last row (cells 7-9) is removed.
+In the second table, the first row (cells 1-3) is removed and cells 4-5 in the second row are cleared:
+| "
+"
+| <table>
+| border="1"
+| "
+"
+| <tbody>
+| <tr>
+| <td>
+| "1"
+| <td>
+| "2"
+| <td>
+| "3"
+| "
+"
+| <tr>
+| <td>
+| "4"
+| <td>
+| class="start"
+| <#selection-caret>
+| <br>
+| <td>
+| <br>
+| <table>
+| border="1"
+| <tbody>
+| <tr>
+| <td>
+| <br>
+| <td>
+| class="end"
+| <br>
+| <td>
+| "6"
+| "
+"
+| <tr>
+| <td>
+| "7"
+| <td>
+| "8"
+| <td>
+| "9"
+| "
+"
+| "
+"
Modified: trunk/LayoutTests/editing/deleting/5206311-2.html (87261 => 87262)
--- trunk/LayoutTests/editing/deleting/5206311-2.html 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/editing/deleting/5206311-2.html 2011-05-25 03:50:54 UTC (rev 87262)
@@ -1,41 +1,59 @@
+<!DOCTYPE html>
+<head>
+<script src=""
<script>
-function runTest(num)
+function runTest(elem)
{
sel = window.getSelection();
- start = document.getElementById("test" + num + "start");
- end = document.getElementById("test" + num + "end");
+ start = elem.getElementsByClassName("start")[0];
+ end = elem.getElementsByClassName("end")[0];
sel.setBaseAndExtent(start, 0, end, end.childNodes.length);
document.execCommand("Delete");
+ Markup.dump(elem.getElementsByClassName('root')[0], elem.getElementsByClassName("description")[0].textContent);
}
</script>
+</head>
-<p>This empties the last row, it should be removed. 'world!' should also be brought into the second cell of the second row.</p>
-<div contenteditable="true">
+<body>
+<div id="test1">
+<p class="description">The test deletes cells 5 through 9.
+Since all the cells in the third row were deleted, the third row is removed.
+The cells in the second row are not removed because not all of them are deleted.
+The second cell, which used to contain '5', is replaced with the 'world!' text, and the third cell is cleared</p>
+<div class="root" contenteditable="true">
<table border="1">
<tr><td>1</td><td>2</td><td>3</td></tr>
-<tr><td>4</td><td id="test1start">5</td><td>6</td></tr>
+<tr><td>4</td><td class="start">5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
-<div><span id="test1end">Hello </span>world!</div>
+<div><span class="end">Hello </span>world!</div>
</div>
+</div>
-<script>runTest(1);</script>
+<script>runTest(test1);</script>
-<p>This empties a the last row of the first table and the first of the second, they should both be removed.</p>
-<div contenteditable="true">
+<div id="test2">
+<p class="description">
+This test deletes cells 5 through 9 of the first table and 1 through 5 of the second.
+In the first table, cells 5-6 in the second row are cleared and the last row (cells 7-9) is removed.
+In the second table, the first row (cells 1-3) is removed and cells 4-5 in the second row are cleared</p>
+<div class="root" contenteditable="true">
<table border="1">
<tr><td>1</td><td>2</td><td>3</td></tr>
-<tr><td>4</td><td id="test2start">5</td><td>6</td></tr>
+<tr><td>4</td><td class="start">5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
<div>Hello world!</div>
<table border="1">
<tr><td>1</td><td>2</td><td>3</td></tr>
-<tr><td>4</td><td id="test2end">5</td><td>6</td></tr>
+<tr><td>4</td><td class="end">5</td><td>6</td></tr>
<tr><td>7</td><td>8</td><td>9</td></tr>
</table>
</div>
+</div>
-<script>runTest(2);</script>
+<script>runTest(test2);</script>
+</body>
+</html>
Deleted: trunk/LayoutTests/platform/chromium-linux/editing/deleting/5206311-2-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/deleting/5206311-2-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/deleting/5206311-2-expected.txt (87261 => 87262)
--- trunk/LayoutTests/platform/chromium-win/editing/deleting/5206311-2-expected.txt 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/platform/chromium-win/editing/deleting/5206311-2-expected.txt 2011-05-25 03:50:54 UTC (rev 87262)
@@ -1,76 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 713x19
- text run at (0,0) width 713: "This empties the last row, it should be removed. 'world!' should also be brought into the second cell of the second row."
- RenderBlock {DIV} at (0,36) size 784x56
- RenderTable {TABLE} at (0,0) size 78x56 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 76x54
- RenderTableRow {TR} at (0,2) size 76x24
- RenderTableCell {TD} at (2,2) size 12x24 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 44x24 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (62,2) size 12x24 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,28) size 76x24
- RenderTableCell {TD} at (2,28) size 12x24 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,28) size 44x24 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderInline {SPAN} at (0,0) size 40x19
- RenderText {#text} at (2,2) size 40x19
- text run at (2,2) width 40: "world!"
- RenderTableCell {TD} at (62,28) size 12x24 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderBlock {P} at (0,108) size 784x20
- RenderText {#text} at (0,0) size 603x19
- text run at (0,0) width 603: "This empties a the last row of the first table and the first of the second, they should both be removed."
- RenderBlock {DIV} at (0,144) size 784x112
- RenderTable {TABLE} at (0,0) size 46x56 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x54
- RenderTableRow {TR} at (0,2) size 44x24
- RenderTableCell {TD} at (2,2) size 12x24 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 12x24 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (30,2) size 12x24 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,28) size 44x24
- RenderTableCell {TD} at (2,28) size 12x24 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,28) size 12x24 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (30,28) size 12x24 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTable {TABLE} at (0,56) size 46x56 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x54
- RenderTableRow {TR} at (0,2) size 44x24
- RenderTableCell {TD} at (2,2) size 12x24 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (16,2) size 12x24 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (30,2) size 12x24 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "6"
- RenderTableRow {TR} at (0,28) size 44x24
- RenderTableCell {TD} at (2,28) size 12x24 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "7"
- RenderTableCell {TD} at (16,28) size 12x24 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "8"
- RenderTableCell {TD} at (30,28) size 12x24 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "9"
-caret: position 0 of child 0 {BR} of child 1 {TD} of child 2 {TR} of child 1 {TBODY} of child 1 {TABLE} of child 8 {DIV} of body
Deleted: trunk/LayoutTests/platform/gtk/editing/deleting/5206311-2-expected.txt (87261 => 87262)
--- trunk/LayoutTests/platform/gtk/editing/deleting/5206311-2-expected.txt 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/platform/gtk/editing/deleting/5206311-2-expected.txt 2011-05-25 03:50:54 UTC (rev 87262)
@@ -1,76 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x19
- RenderText {#text} at (0,0) size 746x19
- text run at (0,0) width 746: "This empties the last row, it should be removed. 'world!' should also be brought into the second cell of the second row."
- RenderBlock {DIV} at (0,35) size 784x54
- RenderTable {TABLE} at (0,0) size 80x54 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 78x52
- RenderTableRow {TR} at (0,2) size 78x23
- RenderTableCell {TD} at (2,2) size 12x23 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 46x23 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (64,2) size 12x23 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,27) size 78x23
- RenderTableCell {TD} at (2,27) size 12x23 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,27) size 46x23 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderInline {SPAN} at (0,0) size 42x19
- RenderText {#text} at (2,2) size 42x19
- text run at (2,2) width 42: "world!"
- RenderTableCell {TD} at (64,27) size 12x23 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderBlock {P} at (0,105) size 784x19
- RenderText {#text} at (0,0) size 631x19
- text run at (0,0) width 631: "This empties a the last row of the first table and the first of the second, they should both be removed."
- RenderBlock {DIV} at (0,140) size 784x108
- RenderTable {TABLE} at (0,0) size 46x54 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x52
- RenderTableRow {TR} at (0,2) size 44x23
- RenderTableCell {TD} at (2,2) size 12x23 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 12x23 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (30,2) size 12x23 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,27) size 44x23
- RenderTableCell {TD} at (2,27) size 12x23 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,27) size 12x23 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (30,27) size 12x23 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTable {TABLE} at (0,54) size 46x54 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x52
- RenderTableRow {TR} at (0,2) size 44x23
- RenderTableCell {TD} at (2,2) size 12x23 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (16,2) size 12x23 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x19
- RenderTableCell {TD} at (30,2) size 12x23 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "6"
- RenderTableRow {TR} at (0,27) size 44x23
- RenderTableCell {TD} at (2,27) size 12x23 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "7"
- RenderTableCell {TD} at (16,27) size 12x23 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "8"
- RenderTableCell {TD} at (30,27) size 12x23 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x19
- text run at (2,2) width 8: "9"
-caret: position 0 of child 0 {BR} of child 1 {TD} of child 2 {TR} of child 1 {TBODY} of child 1 {TABLE} of child 8 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac/editing/deleting/5206311-2-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac/editing/deleting/5206311-2-expected.txt (87261 => 87262)
--- trunk/LayoutTests/platform/mac/editing/deleting/5206311-2-expected.txt 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/platform/mac/editing/deleting/5206311-2-expected.txt 2011-05-25 03:50:54 UTC (rev 87262)
@@ -1,76 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 746x18
- text run at (0,0) width 746: "This empties the last row, it should be removed. 'world!' should also be brought into the second cell of the second row."
- RenderBlock {DIV} at (0,34) size 784x52
- RenderTable {TABLE} at (0,0) size 80x52 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 78x50
- RenderTableRow {TR} at (0,2) size 78x22
- RenderTableCell {TD} at (2,2) size 12x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 46x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (64,2) size 12x22 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,26) size 78x22
- RenderTableCell {TD} at (2,26) size 12x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,26) size 46x22 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderInline {SPAN} at (0,0) size 42x18
- RenderText {#text} at (2,2) size 42x18
- text run at (2,2) width 42: "world!"
- RenderTableCell {TD} at (64,26) size 12x22 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x18
- RenderBlock {P} at (0,102) size 784x18
- RenderText {#text} at (0,0) size 631x18
- text run at (0,0) width 631: "This empties a the last row of the first table and the first of the second, they should both be removed."
- RenderBlock {DIV} at (0,136) size 784x104
- RenderTable {TABLE} at (0,0) size 46x52 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x50
- RenderTableRow {TR} at (0,2) size 44x22
- RenderTableCell {TD} at (2,2) size 12x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 12x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (30,2) size 12x22 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,26) size 44x22
- RenderTableCell {TD} at (2,26) size 12x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,26) size 12x22 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x18
- RenderTableCell {TD} at (30,26) size 12x22 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x18
- RenderTable {TABLE} at (0,52) size 46x52 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x50
- RenderTableRow {TR} at (0,2) size 44x22
- RenderTableCell {TD} at (2,2) size 12x22 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x18
- RenderTableCell {TD} at (16,2) size 12x22 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x18
- RenderTableCell {TD} at (30,2) size 12x22 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "6"
- RenderTableRow {TR} at (0,26) size 44x22
- RenderTableCell {TD} at (2,26) size 12x22 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "7"
- RenderTableCell {TD} at (16,26) size 12x22 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "8"
- RenderTableCell {TD} at (30,26) size 12x22 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x18
- text run at (2,2) width 8: "9"
-caret: position 0 of child 0 {BR} of child 1 {TD} of child 2 {TR} of child 1 {TBODY} of child 1 {TABLE} of child 8 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac-leopard/editing/deleting/5206311-2-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/qt/editing/deleting/5206311-2-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/qt/editing/deleting/5206311-2-expected.txt (87261 => 87262)
--- trunk/LayoutTests/platform/qt/editing/deleting/5206311-2-expected.txt 2011-05-25 03:39:22 UTC (rev 87261)
+++ trunk/LayoutTests/platform/qt/editing/deleting/5206311-2-expected.txt 2011-05-25 03:50:54 UTC (rev 87262)
@@ -1,77 +0,0 @@
-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x44
- RenderText {#text} at (0,0) size 759x44
- text run at (0,0) width 759: "This empties the last row, it should be removed. 'world!' should also be brought into the second cell of the second"
- text run at (0,22) width 31: "row."
- RenderBlock {DIV} at (0,60) size 784x60
- RenderTable {TABLE} at (0,0) size 83x60 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 81x58
- RenderTableRow {TR} at (0,2) size 81x26
- RenderTableCell {TD} at (2,2) size 12x26 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 49x26 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (67,2) size 12x26 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,30) size 81x26
- RenderTableCell {TD} at (2,30) size 12x26 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,30) size 49x26 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderInline {SPAN} at (0,0) size 45x22
- RenderText {#text} at (2,2) size 45x22
- text run at (2,2) width 45: "world!"
- RenderTableCell {TD} at (67,30) size 12x26 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x22
- RenderBlock {P} at (0,136) size 784x22
- RenderText {#text} at (0,0) size 676x22
- text run at (0,0) width 676: "This empties a the last row of the first table and the first of the second, they should both be removed."
- RenderBlock {DIV} at (0,174) size 784x120
- RenderTable {TABLE} at (0,0) size 46x60 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x58
- RenderTableRow {TR} at (0,2) size 44x26
- RenderTableCell {TD} at (2,2) size 12x26 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "1"
- RenderTableCell {TD} at (16,2) size 12x26 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "2"
- RenderTableCell {TD} at (30,2) size 12x26 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "3"
- RenderTableRow {TR} at (0,30) size 44x26
- RenderTableCell {TD} at (2,30) size 12x26 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "4"
- RenderTableCell {TD} at (16,30) size 12x26 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x22
- RenderTableCell {TD} at (30,30) size 12x26 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x22
- RenderTable {TABLE} at (0,60) size 46x60 [border: (1px outset #808080)]
- RenderTableSection {TBODY} at (1,1) size 44x58
- RenderTableRow {TR} at (0,2) size 44x26
- RenderTableCell {TD} at (2,2) size 12x26 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x22
- RenderTableCell {TD} at (16,2) size 12x26 [border: (1px inset #808080)] [r=0 c=1 rs=1 cs=1]
- RenderBR {BR} at (2,2) size 0x22
- RenderTableCell {TD} at (30,2) size 12x26 [border: (1px inset #808080)] [r=0 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "6"
- RenderTableRow {TR} at (0,30) size 44x26
- RenderTableCell {TD} at (2,30) size 12x26 [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "7"
- RenderTableCell {TD} at (16,30) size 12x26 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "8"
- RenderTableCell {TD} at (30,30) size 12x26 [border: (1px inset #808080)] [r=1 c=2 rs=1 cs=1]
- RenderText {#text} at (2,2) size 8x22
- text run at (2,2) width 8: "9"
-caret: position 0 of child 0 {BR} of child 1 {TD} of child 2 {TR} of child 1 {TBODY} of child 1 {TABLE} of child 8 {DIV} of body