summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfalken@chromium.org <falken@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-24 12:02:21 +0000
committerfalken@chromium.org <falken@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-24 12:02:21 +0000
commit10587c5fbaba1b747884792a8e6e6403f73d7fe1 (patch)
treeefbbfda5771de0144e146d8a27c38f34ae855d6e
parente71683a16032b08d3dca305d28578174d33e03a7 (diff)
downloadchromium_src-10587c5fbaba1b747884792a8e6e6403f73d7fe1.zip
chromium_src-10587c5fbaba1b747884792a8e6e6403f73d7fe1.tar.gz
chromium_src-10587c5fbaba1b747884792a8e6e6403f73d7fe1.tar.bz2
Revert of Make --dump-render-tree's requestAnimationFrame more real (https://codereview.chromium.org/131973020/)
Reason for revert: This seems to cause layout test inspector/layer-compositing-reasons.html to timeout on all platforms. Reverting it locally fixed the timeout. http://test-results.appspot.com/dashboards/flakiness_dashboard.html#group=%40ToT%20Blink&tests=inspector%2Flayer-compositing-reasons.html Original issue's description: > Make --dump-render-tree's requestAnimationFrame more real > > This CL adds a call to layout in --dump-render-tree's fake implementation of > requestAnimationFrame, which more closely mirrors what the real implementation > of requestAnimationFrame does. The real implementation is driven by the > compositor, which doesn't exist when running with --dump-render-tree. > > R=esprehn@chromium.org > BUG=337617 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=246806 TBR=esprehn@chromium.org,abarth@chromium.org NOTREECHECKS=true NOTRY=true BUG=337617 Review URL: https://codereview.chromium.org/145173013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@246841 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/shell/renderer/test_runner/WebTestProxy.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/content/shell/renderer/test_runner/WebTestProxy.cpp b/content/shell/renderer/test_runner/WebTestProxy.cpp
index f083294..ca849bc8 100644
--- a/content/shell/renderer/test_runner/WebTestProxy.cpp
+++ b/content/shell/renderer/test_runner/WebTestProxy.cpp
@@ -734,7 +734,6 @@ void WebTestProxyBase::animateNow()
if (m_animateScheduled) {
m_animateScheduled = false;
webWidget()->animate(0.0);
- webWidget()->layout();
}
}