summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/animation
diff options
context:
space:
mode:
authorjamesr@google.com <jamesr@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2011-01-20 03:52:42 +0000
committerjamesr@google.com <jamesr@google.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2011-01-20 03:52:42 +0000
commitd22061bada2f19b24331126528b79771d023cba9 (patch)
tree05e86b1c96a8a3e00d59bdb74f13edfd011765b3 /third_party/WebKit/LayoutTests/fast/animation
parent26562f5d536540b8ee3172f0db18b113d78fbb75 (diff)
downloadchromium_src-d22061bada2f19b24331126528b79771d023cba9.zip
chromium_src-d22061bada2f19b24331126528b79771d023cba9.tar.gz
chromium_src-d22061bada2f19b24331126528b79771d023cba9.tar.bz2
2011-01-19 James Robinson <jamesr@chromium.org>
Unreviewed, rolling out r76194. http://trac.webkit.org/changeset/76194 https://bugs.webkit.org/show_bug.cgi?id=51218 Caused mysterious compile failure on the chromium win build.webkit.org bots * fast/animation/request-animation-frame-cancel-expected.txt: Removed. * fast/animation/request-animation-frame-cancel.html: Removed. * fast/animation/request-animation-frame-cancel2-expected.txt: Removed. * fast/animation/request-animation-frame-cancel2.html: Removed. * fast/animation/request-animation-frame-display-expected.txt: Removed. * fast/animation/request-animation-frame-display.html: Removed. * fast/animation/request-animation-frame-expected.txt: Removed. * fast/animation/request-animation-frame-within-callback-expected.txt: Removed. * fast/animation/request-animation-frame-within-callback.html: Removed. * fast/animation/request-animation-frame.html: Removed. * platform/chromium/test_expectations.txt: * platform/gtk/Skipped: * platform/mac/Skipped: * platform/qt/Skipped: * platform/win/Skipped: 2011-01-19 James Robinson <jamesr@chromium.org> Unreviewed, rolling out r76194. http://trac.webkit.org/changeset/76194 https://bugs.webkit.org/show_bug.cgi?id=51218 Caused mysterious compile failure on the chromium win build.webkit.org bots * WebCore.gypi: * dom/Document.cpp: (WebCore::Document::Document): * dom/Document.h: * dom/RequestAnimationFrameCallback.h: Removed. * dom/RequestAnimationFrameCallback.idl: Removed. * loader/EmptyClients.h: * page/Chrome.cpp: * page/Chrome.h: * page/ChromeClient.h: * page/DOMWindow.cpp: * page/DOMWindow.h: * page/DOMWindow.idl: * page/FrameView.cpp: * page/FrameView.h: * platform/HostWindow.h: 2011-01-19 James Robinson <jamesr@chromium.org> Unreviewed, rolling out r76194. http://trac.webkit.org/changeset/76194 https://bugs.webkit.org/show_bug.cgi?id=51218 Caused mysterious compile failure on the chromium win build.webkit.org bots * features.gypi: * public/WebWidget.h: * public/WebWidgetClient.h: * src/ChromeClientImpl.cpp: * src/ChromeClientImpl.h: * src/WebPopupMenuImpl.cpp: * src/WebPopupMenuImpl.h: * src/WebViewImpl.cpp: * src/WebViewImpl.h: 2011-01-19 James Robinson <jamesr@chromium.org> Unreviewed, rolling out r76194. http://trac.webkit.org/changeset/76194 https://bugs.webkit.org/show_bug.cgi?id=51218 Caused mysterious compile failure on the chromium win build.webkit.org bots * DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::paintInvalidatedRegion): * DumpRenderTree/chromium/WebViewHost.h: git-svn-id: svn://svn.chromium.org/blink/trunk@76198 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/animation')
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel-expected.txt1
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel.html17
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2-expected.txt1
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2.html21
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display-expected.txt1
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display.html22
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-expected.txt1
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback-expected.txt1
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback.html28
-rw-r--r--third_party/WebKit/LayoutTests/fast/animation/request-animation-frame.html14
10 files changed, 0 insertions, 107 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel-expected.txt b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel-expected.txt
deleted file mode 100644
index 7ef22e9..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel-expected.txt
+++ /dev/null
@@ -1 +0,0 @@
-PASS
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel.html b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel.html
deleted file mode 100644
index 4210f7b..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<span id="e">PASS</span>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-var e = document.getElementById("e");
-var id = window.webkitRequestAnimationFrame(function() {
- e.innerHTML = "FAIL";
-}, e);
-
-window.webkitCancelRequestAnimationFrame(id);
-
-if (window.layoutTestController)
- layoutTestController.display();
-</script>
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2-expected.txt b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2-expected.txt
deleted file mode 100644
index 7ef22e9..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2-expected.txt
+++ /dev/null
@@ -1 +0,0 @@
-PASS
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2.html b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2.html
deleted file mode 100644
index 4ac2e93..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-cancel2.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<html>
-<span id="e">PASS</span>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-var e = document.getElementById("e");
-var secondCallbackId;
-
-window.webkitRequestAnimationFrame(function() {
- window.webkitCancelRequestAnimationFrame(secondCallbackId);
-}, e);
-
-secondCallbackId = window.webkitRequestAnimationFrame(function() {
- e.innerHTML = "FAIL";
-}, e);
-
-if (window.layoutTestController)
- layoutTestController.display();
-</script>
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display-expected.txt b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display-expected.txt
deleted file mode 100644
index 7ef22e9..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display-expected.txt
+++ /dev/null
@@ -1 +0,0 @@
-PASS
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display.html b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display.html
deleted file mode 100644
index b822577..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-display.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<span id="a" style="display:none"></span>
-<span id="b">FAIL</span>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-var a = document.getElementById("a");
-window.webkitRequestAnimationFrame(function() {
- b.innerHTML="PASS";
-}, a);
-
-var b = document.getElementById("b");
-window.webkitRequestAnimationFrame(function() {
- a.style.display="";
-}, b);
-
-if (window.layoutTestController)
- layoutTestController.display();
-</script>
-</html>
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-expected.txt b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-expected.txt
deleted file mode 100644
index 7ef22e9..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-expected.txt
+++ /dev/null
@@ -1 +0,0 @@
-PASS
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback-expected.txt b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback-expected.txt
deleted file mode 100644
index 7ef22e9..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback-expected.txt
+++ /dev/null
@@ -1 +0,0 @@
-PASS
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback.html b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback.html
deleted file mode 100644
index d5a366f..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame-within-callback.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html>
-<span id="e">FAIL</span>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-var e = document.getElementById("e");
-var sameFrame;
-window.webkitRequestAnimationFrame(function() {
- sameFrame = true;
-}, e);
-window.webkitRequestAnimationFrame(function() {
- window.webkitRequestAnimationFrame(function() {
- e.innerHTML = sameFrame ? "FAIL" : "PASS";
- }, e);
-}, e);
-window.webkitRequestAnimationFrame(function() {
- sameFrame = false;
-}, e);
-
-// This should fire the three already registered callbacks, but not the one dynamically registered.
-if (window.layoutTestController)
- layoutTestController.display();
-// This should fire the dynamically registered callback.
-if (window.layoutTestController)
- layoutTestController.display();
-</script>
diff --git a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame.html b/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame.html
deleted file mode 100644
index 7d67a97..0000000
--- a/third_party/WebKit/LayoutTests/fast/animation/request-animation-frame.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE html>
-<html>
-<span id="e">FAIL</span>
-<script>
-if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
-var e = document.getElementById("e");
-window.webkitRequestAnimationFrame(function() {
- e.innerHTML="PASS";
-}, e);
-if (window.layoutTestController)
- layoutTestController.display();
-</script>