Diff
Modified: trunk/LayoutTests/ChangeLog (92579 => 92580)
--- trunk/LayoutTests/ChangeLog 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/ChangeLog 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,3 +1,34 @@
+2011-08-07 Ryosuke Niwa <[email protected]>
+
+ Dump-as-markup conversion: paste-blockquote-into-blockquote.html and prevent-block-nesting-01.html
+ https://bugs.webkit.org/show_bug.cgi?id=65837
+
+ Reviewed by Kent Tamura.
+
+ Converted the tests to dump-as-markup tests to improve the readability of the expected results.
+
+ * editing/pasteboard/paste-blockquote-into-blockquote-expected.txt: Added.
+ * editing/pasteboard/paste-blockquote-into-blockquote.html:
+ * editing/pasteboard/prevent-block-nesting-01-expected.txt: Added.
+ * editing/pasteboard/prevent-block-nesting-01.html:
+ * platform/chromium-linux/editing/pasteboard/paste-blockquote-into-blockquote-expected.png: Removed.
+ * platform/chromium-linux/editing/pasteboard/prevent-block-nesting-01-expected.png: Removed.
+ * platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.png: Removed.
+ * platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt: Removed.
+ * platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.png: Removed.
+ * platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.txt: Removed.
+ * platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt: Removed.
+ * platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.png: Removed.
+ * platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.txt: Removed.
+ * platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-expected.png: Removed.
+ * platform/mac-leopard/editing/pasteboard/prevent-block-nesting-01-expected.png: Removed.
+ * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.png: Removed.
+ * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt: Removed.
+ * platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.png: Removed.
+ * platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.txt: Removed.
+ * platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt: Removed.
+ * platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt: Removed.
+
2011-08-07 Noel Gordon <[email protected]>
Layout Test fast/xsl/xslt-import-depth.xml is failing
Added: trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (0 => 92580)
--- trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (rev 0)
+++ trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -0,0 +1,11 @@
+This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.
+| <blockquote>
+| id="block"
+| type="cite"
+| "One"
+| "Two"
+| <span>
+| <blockquote>
+| type="cite"
+| <div>
+| "Three<#selection-caret>"
Modified: trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote.html (92579 => 92580)
--- trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote.html 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/editing/pasteboard/paste-blockquote-into-blockquote.html 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,5 +1,6 @@
<html>
<head>
+<script src=""
<style>
blockquote {
color: blue;
@@ -9,17 +10,19 @@
}
</style>
</head>
-
<body>
-<p>This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.</p>
-<div contenteditable="true"><blockquote type='cite' id="block">One</blockquote></div>
-
+<p id="description">This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted.</p>
+<div id="test" contenteditable="true"><blockquote type='cite' id="block">One</blockquote></div>
<script>
var sel = window.getSelection();
var block = document.getElementById("block");
sel.setPosition(block, 3);
document.execCommand("InsertHTML", false, "<span><blockquote type='cite'><div>Two</div><div>Three</div></blockquote></span>");
+
+Markup.description(document.getElementById('description').textContent);
+Markup.dump('test');
+
</script>
</body>
-</html>
\ No newline at end of file
+</html>
Added: trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01-expected.txt (0 => 92580)
--- trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01-expected.txt (rev 0)
+++ trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -0,0 +1,16 @@
+EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
+EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
+EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
+EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
+The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed.
+| "There should be an empty line between these two paragraphs."
+| <span>
+| <div>
+| <br>
+| <div>
+| "This paragraph and the empty line should have be in their own divs with a red border.<#selection-caret>"
Modified: trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01.html (92579 => 92580)
--- trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01.html 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/editing/pasteboard/prevent-block-nesting-01.html 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,20 +1,24 @@
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpEditingCallbacks();
-</script>
+<script src=""
<style>
div {
border: 1px solid red;
margin: 2px;
}
</style>
-<p>The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed.</p>
+<p id="description">The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed.</p>
<div id="test" contenteditable="true"><br></div>
<script>
+if (window.layoutTestController)
+ layoutTestController.dumpEditingCallbacks();
+
var s = window.getSelection();
var e = document.getElementById("test");
s.setPosition(e, 0);
document.execCommand("InsertHTML", false, "There should be an empty line between these two paragraphs.<span><div><br></div></span><div>This paragraph and the empty line should have be in their own divs with a red border.</div>");
-</script>
\ No newline at end of file
+
+Markup.description(document.getElementById('description').textContent);
+Markup.dump(e);
+
+</script>
Deleted: trunk/LayoutTests/platform/chromium-linux/editing/pasteboard/paste-blockquote-into-blockquote-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-linux/editing/pasteboard/prevent-block-nesting-01-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/chromium-win/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,24 +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 584x19
- text run at (0,0) width 584: "This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted."
- RenderBlock {DIV} at (0,36) size 784x40
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x20 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderText {#text} at (22,0) size 26x19
- text run at (22,0) width 26: "One"
- RenderText {#text} at (48,0) size 28x19
- text run at (48,0) width 28: "Two"
- RenderBlock (anonymous) at (0,20) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock (anonymous) at (0,20) size 784x20
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x20 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderBlock {DIV} at (22,0) size 762x20
- RenderText {#text} at (0,0) size 35x19
- text run at (0,0) width 35: "Three"
- RenderBlock (anonymous) at (0,40) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
-caret: position 5 of child 0 {#text} of child 0 {DIV} of child 0 {BLOCKQUOTE} of child 1 {SPAN} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/chromium-win/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,30 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > 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
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 681x19
- text run at (0,0) width 681: "The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed."
- RenderBlock {DIV} at (2,36) size 780x72 [border: (1px solid #FF0000)]
- RenderBlock (anonymous) at (1,1) size 778x20
- RenderText {#text} at (0,0) size 372x19
- text run at (0,0) width 372: "There should be an empty line between these two paragraphs."
- RenderInline {SPAN} at (0,0) size 0x19
- RenderBlock (anonymous) at (1,23) size 778x22
- RenderBlock {DIV} at (2,0) size 774x22 [border: (1px solid #FF0000)]
- RenderBR {BR} at (1,1) size 0x19
- RenderBlock (anonymous) at (1,47) size 778x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock {DIV} at (3,47) size 774x22 [border: (1px solid #FF0000)]
- RenderText {#text} at (1,1) size 512x19
- text run at (1,1) width 512: "This paragraph and the empty line should have be in their own divs with a red border."
- RenderBlock (anonymous) at (1,71) size 778x0
-caret: position 85 of child 0 {#text} of child 2 {DIV} of child 2 {DIV} of body
Deleted: trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/gtk/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,24 +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 608x19
- text run at (0,0) width 608: "This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted."
- RenderBlock {DIV} at (0,35) size 784x38
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x19 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderText {#text} at (22,0) size 27x19
- text run at (22,0) width 27: "One"
- RenderText {#text} at (49,0) size 30x19
- text run at (49,0) width 30: "Two"
- RenderBlock (anonymous) at (0,19) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock (anonymous) at (0,19) size 784x19
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x19 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderBlock {DIV} at (22,0) size 762x19
- RenderText {#text} at (0,0) size 37x19
- text run at (0,0) width 37: "Three"
- RenderBlock (anonymous) at (0,38) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
-caret: position 5 of child 0 {#text} of child 0 {DIV} of child 0 {BLOCKQUOTE} of child 1 {SPAN} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/gtk/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,30 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > 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
- RenderBlock {P} at (0,0) size 784x19
- RenderText {#text} at (0,0) size 705x19
- text run at (0,0) width 705: "The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed."
- RenderBlock {DIV} at (2,35) size 780x69 [border: (1px solid #FF0000)]
- RenderBlock (anonymous) at (1,1) size 778x19
- RenderText {#text} at (0,0) size 389x19
- text run at (0,0) width 389: "There should be an empty line between these two paragraphs."
- RenderInline {SPAN} at (0,0) size 0x19
- RenderBlock (anonymous) at (1,22) size 778x21
- RenderBlock {DIV} at (2,0) size 774x21 [border: (1px solid #FF0000)]
- RenderBR {BR} at (1,1) size 0x19
- RenderBlock (anonymous) at (1,45) size 778x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock {DIV} at (3,45) size 774x21 [border: (1px solid #FF0000)]
- RenderText {#text} at (1,1) size 540x19
- text run at (1,1) width 540: "This paragraph and the empty line should have be in their own divs with a red border."
- RenderBlock (anonymous) at (1,68) size 778x0
-caret: position 85 of child 0 {#text} of child 2 {DIV} of child 2 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,24 +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 608x18
- text run at (0,0) width 608: "This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted."
- RenderBlock {DIV} at (0,34) size 784x36
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x18 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderText {#text} at (22,0) size 27x18
- text run at (22,0) width 27: "One"
- RenderText {#text} at (49,0) size 30x18
- text run at (49,0) width 30: "Two"
- RenderBlock (anonymous) at (0,18) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock (anonymous) at (0,18) size 784x18
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x18 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderBlock {DIV} at (22,0) size 762x18
- RenderText {#text} at (0,0) size 37x18
- text run at (0,0) width 37: "Three"
- RenderBlock (anonymous) at (0,36) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
-caret: position 5 of child 0 {#text} of child 0 {DIV} of child 0 {BLOCKQUOTE} of child 1 {SPAN} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,30 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > 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
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 705x18
- text run at (0,0) width 705: "The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed."
- RenderBlock {DIV} at (2,34) size 780x66 [border: (1px solid #FF0000)]
- RenderBlock (anonymous) at (1,1) size 778x18
- RenderText {#text} at (0,0) size 389x18
- text run at (0,0) width 389: "There should be an empty line between these two paragraphs."
- RenderInline {SPAN} at (0,0) size 0x18
- RenderBlock (anonymous) at (1,21) size 778x20
- RenderBlock {DIV} at (2,0) size 774x20 [border: (1px solid #FF0000)]
- RenderBR {BR} at (1,1) size 0x18
- RenderBlock (anonymous) at (1,43) size 778x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock {DIV} at (3,43) size 774x20 [border: (1px solid #FF0000)]
- RenderText {#text} at (1,1) size 540x18
- text run at (1,1) width 540: "This paragraph and the empty line should have be in their own divs with a red border."
- RenderBlock (anonymous) at (1,65) size 778x0
-caret: position 85 of child 0 {#text} of child 2 {DIV} of child 2 {DIV} of body
Deleted: trunk/LayoutTests/platform/mac-leopard/editing/pasteboard/paste-blockquote-into-blockquote-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/mac-leopard/editing/pasteboard/prevent-block-nesting-01-expected.png
(Binary files differ)
Deleted: trunk/LayoutTests/platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/qt/editing/pasteboard/paste-blockquote-into-blockquote-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,24 +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 784x22
- RenderText {#text} at (0,0) size 647x22
- text run at (0,0) width 647: "This tests pasting a blockquote into a blockquote. Nothing below should be double-blockquoted."
- RenderBlock {DIV} at (0,38) size 784x44
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x22 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderText {#text} at (22,0) size 28x22
- text run at (22,0) width 28: "One"
- RenderText {#text} at (50,0) size 31x22
- text run at (50,0) width 31: "Two"
- RenderBlock (anonymous) at (0,22) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock (anonymous) at (0,22) size 784x22
- RenderBlock {BLOCKQUOTE} at (0,0) size 784x22 [color=#0000FF] [border: (2px solid #0000FF)]
- RenderBlock {DIV} at (22,0) size 762x22
- RenderText {#text} at (0,0) size 41x22
- text run at (0,0) width 41: "Three"
- RenderBlock (anonymous) at (0,44) size 784x0
- RenderInline {SPAN} at (0,0) size 0x0
-caret: position 5 of child 0 {#text} of child 0 {DIV} of child 0 {BLOCKQUOTE} of child 1 {SPAN} of child 3 {DIV} of body
Deleted: trunk/LayoutTests/platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt (92579 => 92580)
--- trunk/LayoutTests/platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:31:42 UTC (rev 92579)
+++ trunk/LayoutTests/platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt 2011-08-08 03:46:21 UTC (rev 92580)
@@ -1,30 +0,0 @@
-EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
-EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
-EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > 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
- RenderBlock {P} at (0,0) size 784x22
- RenderText {#text} at (0,0) size 764x22
- text run at (0,0) width 764: "The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed."
- RenderBlock {DIV} at (2,38) size 780x78 [border: (1px solid #FF0000)]
- RenderBlock (anonymous) at (1,1) size 778x22
- RenderText {#text} at (0,0) size 419x22
- text run at (0,0) width 419: "There should be an empty line between these two paragraphs."
- RenderInline {SPAN} at (0,0) size 0x22
- RenderBlock (anonymous) at (1,25) size 778x24
- RenderBlock {DIV} at (2,0) size 774x24 [border: (1px solid #FF0000)]
- RenderBR {BR} at (1,1) size 0x22
- RenderBlock (anonymous) at (1,51) size 778x0
- RenderInline {SPAN} at (0,0) size 0x0
- RenderBlock {DIV} at (3,51) size 774x24 [border: (1px solid #FF0000)]
- RenderText {#text} at (1,1) size 586x22
- text run at (1,1) width 586: "This paragraph and the empty line should have be in their own divs with a red border."
- RenderBlock (anonymous) at (1,77) size 778x0
-caret: position 85 of child 0 {#text} of child 2 {DIV} of child 2 {DIV} of body