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

Side by Side Diff: LayoutTests/fast/workers/teleport.html

Issue 474683003: Not for review - Rebase of crrev.com/62833003 Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 6 years, 1 month 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 | « LayoutTests/fast/workers/snap-points.html ('k') | Source/bindings/core/core.gni » ('j') | 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 <link href='http://fonts.googleapis.com/css?family=IM+Fell+Great+Primer+SC' rel= 'stylesheet' type='text/css'>
3 <style>
4 .card {
5 position: absolute;
6 left: 10px;
7 top: 10px;
8 width: 200px;
9 height: 200px;
10 background: #736F68;
11 color: #D9CCC5;
12 padding: 20px;
13 font-family: 'IM Fell Great Primer SC', serif;
14 font-size: 3em;
15 border-radius: 5px;
16 -webkit-transform: translateZ(0);
17 }
18 body {
19 background: #212126;
20 }
21 </style>
22 <script>
23 var worker = null;
24
25 onload = function() {
26 worker = new Worker('resources/teleport.js');
27 var spinner = document.getElementById('spinner');
28 worker.postMessage(spinner.bindAnimatedProperty('transform'));
29 }
30 </script>
31 <div id="spinner" class="card">Hello, World!</div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/workers/snap-points.html ('k') | Source/bindings/core/core.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698