diff options
author | dsinclair@chromium.org <dsinclair@chromium.org> | 2015-01-22 22:27:24 +0000 |
---|---|---|
committer | dsinclair@chromium.org <dsinclair@chromium.org> | 2015-01-22 22:27:24 +0000 |
commit | 526cda2d16450b71cb1e1e59a604c02380153533 (patch) | |
tree | f10cf204e06c79f5e475ee3bcafce1905a053e24 /third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html | |
parent | 62981f829ba1dd1de9322e3be4533b45b7c99d25 (diff) | |
download | chromium_src-526cda2d16450b71cb1e1e59a604c02380153533.zip chromium_src-526cda2d16450b71cb1e1e59a604c02380153533.tar.gz chromium_src-526cda2d16450b71cb1e1e59a604c02380153533.tar.bz2 |
Move RenderTreeAsText to LayoutTreeAsText.
This moves the core/rendering/RenderTreeAsText files to
core/layout/LayoutTreeAsText and updates the class name.
I have filed a seperate bug to handle renaming the RenderAsTextBehaviorFlags
and renderTreeAsText methods since they will require multi-sided patches
against chromium.
BUG=450612
Review URL: https://codereview.chromium.org/865633002
git-svn-id: svn://svn.chromium.org/blink/trunk@188838 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html b/third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html index 493ea7b..973d1ea 100644 --- a/third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html +++ b/third_party/WebKit/LayoutTests/fast/html/progress-user-modify.html @@ -31,12 +31,12 @@ function focusAndType(id, key) } var container = document.getElementById("container"); -renderTreeBeforeType = internals.elementRenderTreeAsText(document.documentElement); +layoutTreeBeforeType = internals.elementLayoutTreeAsText(document.documentElement); focusAndType("progress", "X"); -renderTreeAfterType = internals.elementRenderTreeAsText(document.documentElement); -shouldBe("renderTreeAfterType", "renderTreeBeforeType"); +layoutTreeAfterType = internals.elementLayoutTreeAsText(document.documentElement); +shouldBe("layoutTreeAfterType", "layoutTreeBeforeType"); var successfullyParsed = true; </script> |