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

Side by Side Diff: Source/web/tests/data/pageserialization/simple_page.html

Issue 19906002: Move data/ directory from WebKit/chromium/tests into web/tests/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <!-- 2 <!--
3 This page is used to test that WebPageSerializer::retrieveAllResources retri eves 3 This page is used to test that WebPageSerializer::retrieveAllResources retri eves
4 correctly the expected resources from various HTML nodes. 4 correctly the expected resources from various HTML nodes.
5 --> 5 -->
6 6
7 <head> 7 <head>
8 <!-- Style sheet links should be retrieved --> 8 <!-- Style sheet links should be retrieved -->
9 <link rel="stylesheet" type="text/css" href="http://www.example.com/beautifull.c ss"/> 9 <link rel="stylesheet" type="text/css" href="http://www.example.com/beautifull.c ss"/>
10 <!-- Other link should NOT be retrieved --> 10 <!-- Other link should NOT be retrieved -->
(...skipping 30 matching lines...) Expand all
41 41
42 <!-- Make sure we only retrieve URLs with the right schemes --> 42 <!-- Make sure we only retrieve URLs with the right schemes -->
43 <img src="https://www.secure.com/https.gif"/> <!-- HTTPS is OK --> 43 <img src="https://www.secure.com/https.gif"/> <!-- HTTPS is OK -->
44 <img src="file://c/my_folder/file.gif"/> <!-- file is OK --> 44 <img src="file://c/my_folder/file.gif"/> <!-- file is OK -->
45 <img src="ftp://ftp.com/ftp.gif"/> <!-- FTP is not OK --> 45 <img src="ftp://ftp.com/ftp.gif"/> <!-- FTP is not OK -->
46 <img src="unknown://unkown.com/unknown.gif"/> <!-- Unknown schemes are not OK - -> 46 <img src="unknown://unkown.com/unknown.gif"/> <!-- Unknown schemes are not OK - ->
47 47
48 </body> 48 </body>
49 49
50 </html> 50 </html>
OLDNEW
« no previous file with comments | « Source/web/tests/data/pageserialization/simple_iframe.html ('k') | Source/web/tests/data/pageserialization/top_frame.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698