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

Side by Side Diff: LayoutTests/animations/zoomed-length-crash.html

Issue 1193203003: Keep effectiveZoom finite (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reduced clamp range; Remove clamp in CSSToLength... Created 5 years, 6 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 | LayoutTests/animations/zoomed-length-crash-expected.txt » ('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 <style>
2 #target {
3 animation: anim 1s -0.25s step-start paused;
4 }
5 @keyframes anim {
6 50% {
7 left: 1000px;
8 }
9 }
10 * { zoom: 6318030279180000000; }
11 </style>
12 <div id=target></div>
13 <p>PASS if no crash.</p>
14 <script>
15 if (window.testRunner) {
16 testRunner.dumpAsText();
17 testRunner.waitUntilDone();
18 }
19 target.addEventListener('animationstart', function() {
20 getComputedStyle(target).left;
21 if (window.testRunner)
22 testRunner.notifyDone();
23 });
24 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/zoomed-length-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698