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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frameserialization/top_frame.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 when dealing with multiple frames. 4 correctly the expected resources when dealing with multiple frames.
5 --> 5 -->
6 6
7 <body> 7 <body>
8 8
9 <!-- Resources used by a frame and a tag should be only reported once --> 9 <!-- Resources used by a frame and a tag should be only reported once -->
10 <iframe src="awesome.png"></iframe> 10 <iframe src="awesome.png"></iframe>
11 <img src="awesome.png"/> 11 <img src="awesome.png"/>
12 12
13 <iframe src="simple_iframe.html"></iframe> 13 <iframe src="simple_iframe.html"></iframe>
14 <iframe src="simple_iframe.html"></iframe> 14 <iframe src="simple_iframe.html"></iframe>
15 15
16 <!-- Object tags can be used to create iframes --> 16 <!-- Object tags can be used to create iframes -->
17 17
18 <object data="object_iframe.html"></object> 18 <object data="object_iframe.html"></object>
19 <object data="flash.swf"></object> 19 <object data="flash.swf"></object>
20 20
21 <!-- Embed tags can be used to create iframes as well --> 21 <!-- Embed tags can be used to create iframes as well -->
22 <embed src="embed_iframe.html"></object> 22 <embed src="embed_iframe.html"></object>
23 <!-- 23 <!--
24 <embed src="music.mid"></embed> 24 <embed src="music.mid"></embed>
25 --> 25 -->
26 </body> 26 </body>
27 27
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698