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

Side by Side Diff: LayoutTests/http/tests/webfont/animation-assert.html

Issue 754743004: Don't return false for RenderStyle::operator== while fonts load. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed review issue and regressions. Created 6 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/http/tests/webfont/animation-assert-expected.html » ('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 <style>
3 @font-face {
4 font-family: delayed;
5 src: url(slow-ahem-loading.cgi?delay=1000)
6 }
7 #outer {
8 line-height: 10px;
9 }
10 #inner {
11 font-family: delayed;
12 transition: transform .1s;
13 }
14 </style>
15 <div id="outer" style="display: none"><div id="inner">&nbsp;</div></div>
16 <script>
17 outer.style.display = "";
18 outer.offsetWidth;
19 inner.style.transform = "translate(0)";
20 </script>
21 <div>PASS if no crash.</div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/webfont/animation-assert-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698