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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frameserialization/simple_page.html

Issue 1541463002: Rename [Web]PageSerializer[Test|Client|Impl] to ...FrameSerializer... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mhtml-deduplication-of-resources
Patch Set: Rebasing... Created 4 years, 11 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
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 WebFrameSerializer::retrieveAllResources retr ieves
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 -->
11 <link rel="copyright" type="text/plain" href="http://www.example.com/copyright"/ > 11 <link rel="copyright" type="text/plain" href="http://www.example.com/copyright"/ >
12 <!-- Scripts should be retrieved --> 12 <!-- Scripts should be retrieved -->
13 <script src="awesome.js"></script> 13 <script src="awesome.js"></script>
(...skipping 27 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

Powered by Google App Engine
This is Rietveld 408576698