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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/text-autosizing/basecomputedstyle-assert.html

Issue 1816103002: Clear baseComputedStyle when text-autosizing changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text-autosizing/basecomputedstyle-assert-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 <!DOCTYPE html>
2 <script src="resources/autosizingTest.js"></script>
3 <style>
4 @keyframes widthAnim {
5 0% { width: 100px }
6 50% { width: 800px }
7 }
8
9 #animated {
10 width: 100px;
11 font-size: 70px;
12 animation-name: widthAnim;
13 animation-duration: 0.1s;
14 animation-timing-function: steps(2, start);
15 }
16 </style>
17 <p>PASS if test doesn't assert or crash.</p>
18 <div id="animated">xxxxxxxxxxxxxxxxxxxxxxxxxxxx</div>
19 <script>
20 if (window.testRunner) {
21 testRunner.dumpAsText();
22 testRunner.waitUntilDone();
23 }
24
25 setWindowSizeOverride(320, 480);
26
27 addEventListener("animationend", function(){
28 if (window.testRunner)
29 testRunner.notifyDone();
30 });
31 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/text-autosizing/basecomputedstyle-assert-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698