Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3989)

Unified Diff: chrome/test/data/gpu/feature_compositing.html

Issue 239083006: Change ACCELERATED_COMPOSITING blacklist to GPU_COMPOSITING. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: blacklistaccel: tests Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698