diff options
author | Ben Murdoch <benm@google.com> | 2010-07-23 16:18:58 +0100 |
---|---|---|
committer | Ben Murdoch <benm@google.com> | 2010-07-26 17:54:03 +0100 |
commit | 357d280a25a978a2ea0c1b89f6a7c7f385630b98 (patch) | |
tree | 4d68a2eab4447adb157e254f06a0bcc45956f998 /tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java | |
parent | a7137538c2b3f7e933f9a808158ff63238172c22 (diff) | |
download | frameworks_base-357d280a25a978a2ea0c1b89f6a7c7f385630b98.zip frameworks_base-357d280a25a978a2ea0c1b89f6a7c7f385630b98.tar.gz frameworks_base-357d280a25a978a2ea0c1b89f6a7c7f385630b98.tar.bz2 |
Merge WebKit at r63859 : Implement layoutTestController.dumpAsText(boolean) in DumpRenderTree.
See http://trac.webkit.org/changeset/63730
Change-Id: Iced14a89a2a71557529a7a5e32c9eab04b370742
Diffstat (limited to 'tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java')
-rw-r--r-- | tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java b/tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java index 83460bd..15288b5 100644 --- a/tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java +++ b/tests/DumpRenderTree/src/com/android/dumprendertree/LayoutTestController.java @@ -18,30 +18,30 @@ package com.android.dumprendertree; public interface LayoutTestController { - public void dumpAsText(); - public void dumpChildFramesAsText(); - public void waitUntilDone(); - public void notifyDone(); - - // Force a redraw of the page - public void display(); - // Used with pixel dumps of content - public void testRepaint(); - - // If the page title changes, add the information to the output. - public void dumpTitleChanges(); - public void dumpBackForwardList(); - public void dumpChildFrameScrollPositions(); - public void dumpEditingCallbacks(); - - // Show/Hide window for window.onBlur() testing - public void setWindowIsKey(boolean b); - // Mac function, used to disable events going to the window - public void setMainFrameIsFirstResponder(boolean b); - - public void dumpSelectionRect(); - - // invalidate and draw one line at a time of the web view. + public void dumpAsText(boolean enablePixelTests); + public void dumpChildFramesAsText(); + public void waitUntilDone(); + public void notifyDone(); + + // Force a redraw of the page + public void display(); + // Used with pixel dumps of content + public void testRepaint(); + + // If the page title changes, add the information to the output. + public void dumpTitleChanges(); + public void dumpBackForwardList(); + public void dumpChildFrameScrollPositions(); + public void dumpEditingCallbacks(); + + // Show/Hide window for window.onBlur() testing + public void setWindowIsKey(boolean b); + // Mac function, used to disable events going to the window + public void setMainFrameIsFirstResponder(boolean b); + + public void dumpSelectionRect(); + + // invalidate and draw one line at a time of the web view. public void repaintSweepHorizontally(); // History testing functions |