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

Unified Diff: Source/web/tests/data/pageserialization/simple_page.html

Issue 68613003: Merges the two different page serializers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove newline after XML decl Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: Source/web/tests/data/pageserialization/simple_page.html
diff --git a/Source/web/tests/data/pageserialization/simple_page.html b/Source/web/tests/data/pageserialization/simple_page.html
deleted file mode 100644
index 66d09e1f1e631839b421df3dbc249e8b502f03e1..0000000000000000000000000000000000000000
--- a/Source/web/tests/data/pageserialization/simple_page.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<html>
-<!--
- This page is used to test that WebPageSerializer::retrieveAllResources retrieves
- correctly the expected resources from various HTML nodes.
--->
-
-<head>
-<!-- Style sheet links should be retrieved -->
-<link rel="stylesheet" type="text/css" href="http://www.example.com/beautifull.css"/>
-<!-- Other link should NOT be retrieved -->
-<link rel="copyright" type="text/plain" href="http://www.example.com/copyright"/>
-<!-- Scripts should be retrieved -->
-<script src="awesome.js"></script>
-</head>
-
-<!-- Images are always retrieved -->
-<body background="bodyBackground.jpg">
-
-<!-- Twice to make sure we only report each resource once -->
-<img src="awesome.png"/>
-<img src="awesome.png"/>
-
-<form>
- <input type="image" src="imageButton.png"/>
-</form>
-
-<table background="tableBackground.png">
- <tr background="trBackground.png">
- <td background="tdBackground.png"></td>
- </tr>
- <tr background="trBackground.png">
- <td background="tdBackground.png"></td>
- </tr>
-</table>
-
-<!-- Some more obscure tags -->
-<blockquote cite="http://www.evene.fr/citations/auteur.php?ida=46"></blockquote>
-<q CITE="http://www.brainyquote.com/quotes/authors/c/charles_darwin.html"></q>
-<p>My favorite color is <del cite="why_deleted.html">blue</del> <ins>red</ins>!</p>
-<p>My favorite color is <del>blue</del> <ins cite="why_inserted.html">red</ins>!</p>
-
-<!-- Make sure we only retrieve URLs with the right schemes -->
-<img src="https://www.secure.com/https.gif"/> <!-- HTTPS is OK -->
-<img src="file://c/my_folder/file.gif"/> <!-- file is OK -->
-<img src="ftp://ftp.com/ftp.gif"/> <!-- FTP is not OK -->
-<img src="unknown://unkown.com/unknown.gif"/> <!-- Unknown schemes are not OK -->
-
-</body>
-
-</html>
« 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