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

Side by Side Diff: LayoutTests/fast/dom/icon-size-property.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <link id="rel-icon" rel="icon" sizes="23x47 19x42" type="image/x-icon" href="h ttp://test.com/oldfavicon.ico"/> 3 <link id="rel-icon" rel="icon" sizes="23x47 19x42" type="image/x-icon" href="h ttp://test.com/oldfavicon.ico"/>
4 <link id="no-sizes" rel="icon" type="image/x-icon" href="http://test.com/oldfa vicon.ico"/> 4 <link id="no-sizes" rel="icon" type="image/x-icon" href="http://test.com/oldfa vicon.ico"/>
5 <link id="empty-sizes" rel="icon" sizes="" type="image/x-icon" href="http://te st.com/oldfavicon.ico"/> 5 <link id="empty-sizes" rel="icon" sizes="" type="image/x-icon" href="http://te st.com/oldfavicon.ico"/>
6 6
7 <script src="../js/resources/js-test-pre.js"></script> 7 <script src="../js/resources/js-test-pre.js"></script>
8 </head> 8 </head>
9 <body> 9 <body>
10 10
(...skipping 10 matching lines...) Expand all
21 shouldBeEqualToString('icon.sizes.value',"10x10 20x20 30x30"); 21 shouldBeEqualToString('icon.sizes.value',"10x10 20x20 30x30");
22 22
23 var icon=document.getElementById("no-sizes"); 23 var icon=document.getElementById("no-sizes");
24 shouldEvaluateTo('icon.sizes.length',0); 24 shouldEvaluateTo('icon.sizes.length',0);
25 shouldBeEqualToString('icon.sizes.value',""); 25 shouldBeEqualToString('icon.sizes.value',"");
26 26
27 var icon=document.getElementById("empty-sizes"); 27 var icon=document.getElementById("empty-sizes");
28 shouldEvaluateTo('icon.sizes.length',0); 28 shouldEvaluateTo('icon.sizes.length',0);
29 shouldBeEqualToString('icon.sizes.value',""); 29 shouldBeEqualToString('icon.sizes.value',"");
30 </script> 30 </script>
31 <script src="../js/resources/js-test-post.js"></script>
32 </body> 31 </body>
33 </html> 32 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/htmlcollection-reachable.html ('k') | LayoutTests/fast/dom/iframe-inner-size-scaling.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698