Index: chrome/test/data/gpu/feature_compositing.html |
diff --git a/chrome/test/data/gpu/feature_compositing.html b/chrome/test/data/gpu/feature_compositing.html |
deleted file mode 100644 |
index 3f4f8811a5c8ca545dd3549e5bc16af05b9299c2..0000000000000000000000000000000000000000 |
--- a/chrome/test/data/gpu/feature_compositing.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE HTML> |
-<html> |
-<head> |
-<meta charset="utf-8"> |
-<title>GPU Feature Testing: Accelerated Compositing</title> |
-<style> |
-body { |
- -webkit-transform: translateZ(0); |
-} |
-</style> |
-<script> |
-var frameCount = 0; |
-// 3 is not enough for threaded compositing, using 6 to avoid racing. |
-var totalRafs = 6; |
- |
-function runTest() { |
- window.webkitRequestAnimationFrame(draw); |
-} |
-function draw() { |
- frameCount++; |
- var table = document.getElementById("table"); |
- table.style.backgroundColor = (frameCount & 1) ? 'red' : 'black'; |
- if (frameCount == totalRafs) { |
- domAutomationController.setAutomationId(1); |
- domAutomationController.send("FINISHED"); |
- } else { |
- window.webkitRequestAnimationFrame(draw); |
- } |
-} |
-</script> |
-</head> |
-<body onload="runTest()"> |
-This page should trigger accelerated-compositing, i.e., gpu process should |
- launch, if accelerated-compositing is allowed. |
-<table id="table" width="10" height="10"><tr/></table> |
-</body> |
-</html> |