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

Side by Side Diff: LayoutTests/animations/viewport-unit-crash.html

Issue 90113003: Web Animations CSS: Fix crash when animating viewport units (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years 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/viewport-unit-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 @-webkit-keyframes test {
3 from { line-height: 25vw; }
dstockwell 2013/11/27 01:18:15 Can we add cases that cover this to one of the int
alancutter (OOO until 2018) 2013/11/27 04:55:25 Done.
4 to { line-height: 50vh; }
5 }
6 #test {
7 -webkit-animation: test 1s;
8 }
9 </style>
10 This tests animating viewport units. It passes if it doesn't crash.
11 <div id="test"></div>
12 <script>
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
16 window.requestAnimationFrame(function() {
17 testRunner.notifyDone();
18 });
19 }
20 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/viewport-unit-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698