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

Side by Side Diff: chrome/browser/resources/file_manager/slideshow.html

Issue 6969027: Trigger GPU acceleration in the picture slide show and the media player. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/mediaplayer.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Slideshow</title> 5 <title>Slideshow</title>
6 <style> 6 <style>
7 7
8 body { 8 body {
9 overflow: hidden; 9 overflow: hidden;
10 background: black; 10 background: black;
11 -webkit-transform: translateZ(0);
11 } 12 }
12 13
13 #glow { 14 #glow {
14 left: 0; 15 left: 0;
15 right: 0; 16 right: 0;
16 bottom: 30px; 17 bottom: 30px;
17 height: 8px; 18 height: 8px;
18 opacity: .4; 19 opacity: .4;
19 position: absolute; 20 position: absolute;
20 background: -webkit-linear-gradient(transparent, white); 21 background: -webkit-linear-gradient(transparent, white);
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 <div id="playercontrols"> 231 <div id="playercontrols">
231 <button id="prevbutton" onclick="prevButtonClick()"> 232 <button id="prevbutton" onclick="prevButtonClick()">
232 <div></div> 233 <div></div>
233 </button> 234 </button>
234 <button id="nextbutton" onclick="nextButtonClick()"> 235 <button id="nextbutton" onclick="nextButtonClick()">
235 <div></div> 236 <div></div>
236 </button> 237 </button>
237 </div> 238 </div>
238 </body> 239 </body>
239 </html> 240 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/mediaplayer.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698