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

Side by Side Diff: LayoutTests/http/tests/css/cross-fade-reload.html

Issue 9761002: Merge 110326 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 8 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 | LayoutTests/http/tests/css/cross-fade-reload-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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 Test passes if it does not crash. 4 Test passes if it does not crash.
5 <script> 5 <script>
6 if (window.layoutTestController) { 6 if (window.layoutTestController) {
7 layoutTestController.waitUntilDone(); 7 layoutTestController.waitUntilDone();
8 layoutTestController.dumpAsText(); 8 layoutTestController.dumpAsText();
9 } 9 }
10 </script> 10 </script>
11 <img style="background-image:-webkit-cross-fade(url(resources/abe.png), url(reso urces/abe.png), 1%)"/> 11 <img style="background-image:-webkit-cross-fade(url(resources/abe.png), url(reso urces/abe.png), 1%)"/>
12 <script> 12 <script>
13 function triggerReload() 13 function triggerReload()
14 { 14 {
15 location.hash += "x"; 15 location.hash += "x";
16 location.reload(); 16 location.reload();
17 } 17 }
18 if (location.hash == '#xxxx') { 18 if (location.hash == '#xxxx') {
19 if (window.layoutTestController) 19 if (window.layoutTestController)
20 layoutTestController.notifyDone(); 20 layoutTestController.notifyDone();
21 } else 21 } else
22 setTimeout("triggerReload()", 10); 22 setTimeout("triggerReload()", 10);
23 </script> 23 </script>
24 </body> 24 </body>
25 </html> 25 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/css/cross-fade-reload-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698