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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frameserializer/elements/elements.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 <!-- This page is used to test that PageSerializer correctly serializes the 1 <!-- This page is used to test that FrameSerializer correctly serializes the
2 expected resources from various HTML nodes. 2 expected resources from various HTML nodes.
3 --> 3 -->
4 <html> 4 <html>
5 <head> 5 <head>
6 <!-- Style sheet links should be retrieved --> 6 <!-- Style sheet links should be retrieved -->
7 <link rel="stylesheet" type="text/css" href="style.css"/> 7 <link rel="stylesheet" type="text/css" href="style.css"/>
8 <!-- Other link should NOT be retrieved --> 8 <!-- Other link should NOT be retrieved -->
9 <link rel="copyright" type="text/plain" href="copyright.html"/> 9 <link rel="copyright" type="text/plain" href="copyright.html"/>
10 <!-- Scripts should NOT be retrieved --> 10 <!-- Scripts should NOT be retrieved -->
11 <script src="script.js"></script> 11 <script src="script.js"></script>
(...skipping 24 matching lines...) Expand all
36 36
37 <!-- Some more obscure tags, should NOT be serialized --> 37 <!-- Some more obscure tags, should NOT be serialized -->
38 <blockquote cite="blockquoteCite.html"></blockquote> 38 <blockquote cite="blockquoteCite.html"></blockquote>
39 <q cite="qCite.html"></q> 39 <q cite="qCite.html"></q>
40 <p>My favorite color is <del cite="delCite.html">blue</del> <ins>red</ins>!</p> 40 <p>My favorite color is <del cite="delCite.html">blue</del> <ins>red</ins>!</p>
41 <p>My favorite color is <del>blue</del> <ins cite="insCite.html">red</ins>!</p> 41 <p>My favorite color is <del>blue</del> <ins cite="insCite.html">red</ins>!</p>
42 42
43 </body> 43 </body>
44 44
45 </html> 45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698