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

Side by Side Diff: third_party/WebKit/LayoutTests/images/animated-background-image-crash.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <title></title> 3 <title></title>
4 <style> 4 <style>
5 div { 5 div {
6 width: 40px; 6 width: 40px;
7 height: 40px; 7 height: 40px;
8 background: url(resources/animated.gif) top left no-repeat, 8 background: url(resources/animated.gif) top left no-repeat,
9 url(resources/animated2.gif) bottom right no-repeat; 9 url(resources/animated2.gif) bottom right no-repeat;
10 } 10 }
11 </style> 11 </style>
12 <script src="../../resources/run-after-layout-and-paint.js"></script> 12 <script src="../resources/run-after-layout-and-paint.js"></script>
13 <script> 13 <script>
14 function step1() 14 function step1()
15 { 15 {
16 document.getElementById("target").style.display="none"; 16 document.getElementById("target").style.display="none";
17 document.body.offsetTop; 17 document.body.offsetTop;
18 if (window.testRunner) 18 if (window.testRunner)
19 testRunner.notifyDone(); 19 testRunner.notifyDone();
20 } 20 }
21 21
22 function test() 22 function test()
(...skipping 10 matching lines...) Expand all
33 <p> 33 <p>
34 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12487">http: //bugs.webkit.org/show_bug.cgi?id=12487</a> 34 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=12487">http: //bugs.webkit.org/show_bug.cgi?id=12487</a>
35 REGRESSION: Repro crash when a second background image is animated</i>. 35 REGRESSION: Repro crash when a second background image is animated</i>.
36 </p> 36 </p>
37 <p> 37 <p>
38 This test should not make Safari crash. 38 This test should not make Safari crash.
39 </p> 39 </p>
40 <div id="target"></div> 40 <div id="target"></div>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698