Scrolling tests should not try to dump pixels
https://bugs.webkit.org/show_bug.cgi?id=133245
Reviewed by Tim Horton.
dumpAsText(true) -> dumpAsText().
* platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html:
* platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@169311 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index a3188bb..a14237f 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,25 @@
+2014-05-23 Simon Fraser <simon.fraser@apple.com>
+
+ Scrolling tests should not try to dump pixels
+ https://bugs.webkit.org/show_bug.cgi?id=133245
+
+ Reviewed by Tim Horton.
+
+ dumpAsText(true) -> dumpAsText().
+
+ * platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html:
+ * platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html:
+
2014-05-24 Zalan Bujtas <zalan@apple.com>
Subpixel rendering: Non-compositing transforms with subpixel coordinates paint to wrong position.
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html
index 095349c..8f4d1bf 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div-with-handler.html
@@ -101,7 +101,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html
index 66df598..5f4170f 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-div.html
@@ -93,7 +93,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html
index 6d8a6df..ec15226 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe-with-handler.html
@@ -99,7 +99,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html
index 3b400f7..fa4289c 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-div-latched-mainframe.html
@@ -91,7 +91,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html
index 4212f5a..650b3e9 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe-with-handler.html
@@ -79,7 +79,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html
index 6856fa2..430aeb8 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-iframe.html
@@ -67,7 +67,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html
index 89b47a7..e664ee9 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe-with-handler.html
@@ -74,7 +74,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html
index 1dbd20a..130f4a0 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-iframe-latched-mainframe.html
@@ -62,7 +62,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html
index 0baee6f..6e0ef0b 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe-with-handler.html
@@ -99,7 +99,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html
index f1bf55a..978ece2 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-mainframe.html
@@ -91,7 +91,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html
index ce8f884..ddc77e6 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select-with-handler.html
@@ -101,7 +101,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);
diff --git a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html
index 2d8c578..18bb5c4 100644
--- a/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html
+++ b/LayoutTests/platform/mac-wk2/tiled-drawing/fast-scroll-select-latched-select.html
@@ -93,7 +93,7 @@
function setupTopLevel() {
if (window.eventSender) {
- testRunner.dumpAsText(true);
+ testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(scrollTest, 1000);