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

Unified Diff: tools/perf/page_sets/layer_stress_tests/opacity.html

Issue 11783086: Rename remaining x_stress_test pagesets tests to tough_x_cases convention (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
« no previous file with comments | « tools/perf/page_sets/layer_stress_tests.json ('k') | tools/perf/page_sets/tough_image_cases.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/layer_stress_tests/opacity.html
diff --git a/tools/perf/page_sets/layer_stress_tests/opacity.html b/tools/perf/page_sets/layer_stress_tests/opacity.html
deleted file mode 100644
index 61c675056abf00da2513206b3ff96fe77310f2cf..0000000000000000000000000000000000000000
--- a/tools/perf/page_sets/layer_stress_tests/opacity.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>Chrome 18 opacity test</title>
- <style>
- .ninety-nine{
- opacity: 0.99;
- }
- </style>
- <script>
- function toggleOpacity() {
- var pre = document.getElementById('label');
- if (document.body.className == '') {
- document.body.className='ninety-nine';
- pre.innerHTML = 'opacity: 0.99';
- } else {
- document.body.className='';
- pre.innerHTML = 'opacity: 1.0';
- }
- window.setTimeout("toggleOpacity();", 1000);
- }
- onload = toggleOpacity;
- </script>
- </head>
- <body>
- <div style="overflow: hidden">
- <div style="-webkit-perspective: 10px">
- Quite a lot of text: Opacity can be thought of as a postprocessing
- operation. Conceptually, after the element (including its descendants)
- is rendered into an RGBA offscreen image, the opacity setting specifies
- how to blend the offscreen rendering into the current composite rendering.
- The uniform opacity setting to be applied across an entire object. Any
- values outside the range 0.0 (fully transparent) to 1.0 (fully opaque)
- will be clamped to this range. If the object is a container element, then
- the effect is as if the contents of the container element were blended
- against the current background using a mask where the value of each pixel
- of the mask is the opacity value
- </div>
- <pre id="label"></pre>
- </div>
- </body>
-</html>
« no previous file with comments | « tools/perf/page_sets/layer_stress_tests.json ('k') | tools/perf/page_sets/tough_image_cases.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698