2010-07-14 Eric Seidel <eric@webkit.org>
Reviewed by Nikolas Zimmermann.
Selection dumping code should not dump body's offset in the document
https://bugs.webkit.org/show_bug.cgi?id=42238
Update results now that we're no longer dumping
body's offset within HTML as part of selection dumps.
I used a little python script to do all these updates.
Basically it was just:
s/child \d {BODY} .* of document/body/i
LayoutTests will be updated across several commits to keep the SVN server happy.
Final commit (4 of 4).
* editing/execCommand/create-list-1-expected.txt:
* editing/pasteboard/paste-text-013-expected.txt:
* editing/selection/drag-text-delay-expected.txt:
* editing/selection/extend-selection-bidi-expected.txt:
* editing/style/apply-through-end-of-document-expected.txt:
* fast/events/pointer-events-2-expected.txt:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63296 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index dcaf4b7..0f32216 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,27 @@
+2010-07-14 Eric Seidel <eric@webkit.org>
+
+ Reviewed by Nikolas Zimmermann.
+
+ Selection dumping code should not dump body's offset in the document
+ https://bugs.webkit.org/show_bug.cgi?id=42238
+
+ Update results now that we're no longer dumping
+ body's offset within HTML as part of selection dumps.
+ I used a little python script to do all these updates.
+ Basically it was just:
+ s/child \d {BODY} .* of document/body/i
+
+ LayoutTests will be updated across several commits to keep the SVN server happy.
+
+ Final commit (4 of 4).
+
+ * editing/execCommand/create-list-1-expected.txt:
+ * editing/pasteboard/paste-text-013-expected.txt:
+ * editing/selection/drag-text-delay-expected.txt:
+ * editing/selection/extend-selection-bidi-expected.txt:
+ * editing/style/apply-through-end-of-document-expected.txt:
+ * fast/events/pointer-events-2-expected.txt:
+
2010-07-14 Philippe Normand <pnormand@igalia.com>
Unreviewed, fix comment in Skipped file.
diff --git a/LayoutTests/editing/execCommand/create-list-1-expected.txt b/LayoutTests/editing/execCommand/create-list-1-expected.txt
index 59878b9..5d0ba57 100644
--- a/LayoutTests/editing/execCommand/create-list-1-expected.txt
+++ b/LayoutTests/editing/execCommand/create-list-1-expected.txt
@@ -26,4 +26,4 @@
RenderBlock (anonymous) at (0,68) size 784x18
RenderText {#text} at (0,0) size 102x18
text run at (0,0) width 102: "Paragraph Two."
-caret: position 0 of child 0 {LI} of child 2 {OL} of child 2 {DIV} of child 1 {BODY} of child 0 {HTML} of document
+caret: position 0 of child 0 {LI} of child 2 {OL} of child 2 {DIV} of body
diff --git a/LayoutTests/editing/pasteboard/paste-text-013-expected.txt b/LayoutTests/editing/pasteboard/paste-text-013-expected.txt
index 10161c4..b05a173 100644
--- a/LayoutTests/editing/pasteboard/paste-text-013-expected.txt
+++ b/LayoutTests/editing/pasteboard/paste-text-013-expected.txt
@@ -44,4 +44,4 @@
text run at (0,0) width 32: "foo"
RenderBlock {BLOCKQUOTE} at (40,52) size 676x28
RenderBR {BR} at (0,0) size 0x28
-caret: position 0 of child 0 {BR} of child 1 {BLOCKQUOTE} of child 0 {DIV} of child 8 {DIV} of child 1 {BODY} of child 0 {HTML} of document
+caret: position 0 of child 0 {BR} of child 1 {BLOCKQUOTE} of child 0 {DIV} of child 8 {DIV} of body
diff --git a/LayoutTests/editing/selection/drag-text-delay-expected.txt b/LayoutTests/editing/selection/drag-text-delay-expected.txt
index f502ed3..64584e3 100644
--- a/LayoutTests/editing/selection/drag-text-delay-expected.txt
+++ b/LayoutTests/editing/selection/drag-text-delay-expected.txt
@@ -12,5 +12,5 @@
text run at (1,0) width 33: " world"
RenderText {#text} at (34,0) size 27x13
text run at (34,0) width 27: "hello"
-selection start: position 0 of child 1 {#text} of child 0 {DIV} of child 1 {INPUT} of child 1 {BODY} of child 0 {HTML} of document
-selection end: position 5 of child 1 {#text} of child 0 {DIV} of child 1 {INPUT} of child 1 {BODY} of child 0 {HTML} of document
+selection start: position 0 of child 1 {#text} of child 0 {DIV} of child 1 {INPUT} of body
+selection end: position 5 of child 1 {#text} of child 0 {DIV} of child 1 {INPUT} of body
diff --git a/LayoutTests/editing/selection/extend-selection-bidi-expected.txt b/LayoutTests/editing/selection/extend-selection-bidi-expected.txt
index 24ecf25..3f3e5c98 100644
--- a/LayoutTests/editing/selection/extend-selection-bidi-expected.txt
+++ b/LayoutTests/editing/selection/extend-selection-bidi-expected.txt
@@ -38,5 +38,5 @@
text run at (133,15) width 46 RTL: "\x{5D0}\x{5D1}\x{5D2} "
text run at (179,15) width 37: " def"
RenderText {#text} at (0,0) size 0x0
-selection start: position 0 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of child 1 {BODY} of child 0 {HTML} of document
-selection end: position 9 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of child 1 {BODY} of child 0 {HTML} of document
+selection start: position 0 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of body
+selection end: position 9 of child 0 {#text} of child 1 {SPAN} of child 6 {DIV} of body
diff --git a/LayoutTests/editing/style/apply-through-end-of-document-expected.txt b/LayoutTests/editing/style/apply-through-end-of-document-expected.txt
index 0b97ef7..caf0d7b 100644
--- a/LayoutTests/editing/style/apply-through-end-of-document-expected.txt
+++ b/LayoutTests/editing/style/apply-through-end-of-document-expected.txt
@@ -25,4 +25,4 @@
RenderText {#text} at (0,0) size 24x15
text run at (0,0) width 24: "the"
RenderBR {BR} at (24,12) size 0x0
-caret: position 3 of child 0 {#text} of child 7 {PRE} of child 1 {BODY} of child 0 {HTML} of document
+caret: position 3 of child 0 {#text} of child 7 {PRE} of body
diff --git a/LayoutTests/fast/events/pointer-events-2-expected.txt b/LayoutTests/fast/events/pointer-events-2-expected.txt
index 7736ea0..8df155e 100644
--- a/LayoutTests/fast/events/pointer-events-2-expected.txt
+++ b/LayoutTests/fast/events/pointer-events-2-expected.txt
@@ -195,4 +195,4 @@
RenderBlock (positioned) {DIV} at (200,0) size 80x80
RenderText {#text} at (0,0) size 24x18
text run at (0,0) width 24: "p15"
-caret: position 1 of child 0 {#text} of child 0 {SPAN} of child 1 {P} of child 1 {DIV} of child 23 {DIV} of child 1 {BODY} of child 1 {HTML} of document
+caret: position 1 of child 0 {#text} of child 0 {SPAN} of child 1 {P} of child 1 {DIV} of child 23 {DIV} of body