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

Side by Side Diff: tools/perf/page_sets/key_silk_cases/text-mask.html

Issue 117833002: telemetry: extend key_silk_cases.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove ink-button Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/perf/page_sets/key_silk_cases/rectangle_transition.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!doctype html>
2 <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
3 <html>
4 <head>
5 <title>WebKit Mask on Text</title>
6 <style>
7 .foo {
8 background-color: red;
9 font-size: 192px;
10 -webkit-mask-image: url('circle-512.gif');
11 -webkit-mask-repeat: no-repeat;
12 -webkit-mask-size: 20px;
13 -webkit-mask-position: 50%;
14 -webkit-transition-duration: 1s;
15 width: 700px;
16 height: 700px;
17 }
18 .foo.active {
19 -webkit-mask-size: 1200px;
20 }
21 </style>
22 </head>
23 <body>
24 <div class="foo">ABCabc<br>DEFdef<br>GHIghi<br></div>
25 <script>
26 setInterval(function() {
27 var f = document.body.querySelector('.foo');
28 f.classList.toggle('active');
29 }, 1200);
30 </script>
31 </body>
32 </html>
OLDNEW
« no previous file with comments | « tools/perf/page_sets/key_silk_cases/rectangle_transition.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698